/* Original Design By Jeff Hawkins, Hawkins Multimedia, LLC */
/* www.hawkinsmultimedia.com */
/* Stock photography from istockphoto.com */


/* First a bit of basic structure */

body {
	margin: 0px 0px 0px 0px;
	background-image: url(images/paper.jpg);
	background-repeat: repeat-y;
	background-color: #f7eaea;
	font-family:"Courier New", Courier, mono;
	font-size: 1em;
	line-height: 1em;
	font-weight: normal;
	text-align: left;
}

/* This is the section that creates the white rollover effect for links */

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #fff;
	text-decoration: none;
}

/* This adds a 1em indent to every new paragraph */

p {
	text-indent: 1em;
}

/* The 3 levels of heading */

h1 {
	font-size: 120%;
	font-weight: bold;	
}

h2 {
	font-size: 100%;
	text-decoration: underline;
	text-align:center
}

h3 {
	font-size: 100%;
	text-decoration: underline;
}

/* This is the top header which goes down to just above the nav menu */

#branding {
	background-image:url(images/header.jpg);
	background-repeat:no-repeat;
	height: 220px;
}

/* The navigation menu */

#navigation {
	width: 630px;
	border-top: 1px dashed #000;
	border-bottom: 1px dashed #000;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 170px;
	font-size: 90%;
	font-weight: bold;
	line-height: 1.5em;
}

#nav {
	margin: 0;
	padding: 0 0 0 0;
}

#nav li {
	margin: 0px;
	padding: 0px;
	display: inline;
	list-style: none;	
}

/* This is the container for the main text on each page */

#container {
	width: 630px;
	margin-left: 170px;
	margin-bottom: 20px;
	text-align: left;
	font-size: 80%;
	padding: 0 0 0 0;
}

/* My corporate propaganda and standards compliant goodness! */

#footer {
	border-top: 1px dashed #000;
	margin-top: 10px;
	margin-left: 170px;
	width: 630px;
	font-size: 70%;
	padding: 0 0 0 0;
	text-align: center;
}

/* The third part of the background image */

#subfooter {
	background-image:url(images/bottom.jpg);
	background-repeat:no-repeat;
	height: 446px;
}


