@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	background-image: url(images/backgroundSept20092.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	background-color: #990000;
}
#container {
	width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 400px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	float: left;
	background-repeat: no-repeat;
	background-position: 352px 60px;
} 
#header {
	height: 150px;
	width: 700px;
	position: absolute;
	left: 300px;
	background-repeat: no-repeat;
	background-position: 95px 3px;
	top: 40px;
} 
#nav {
	width: 782px; /* padding keeps the content of the div away from the edges */
	position: absolute;
	height: 75px;
	font-size: 14px;
	left: 224px;
	top: -10px;
	text-align: left;
	z-index: 500;
}
#content {
	position: absolute;
	width: 750px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	line-height: 1.4em;
	text-align: left;
	top: 205px;
	height: auto;
	left: 250px;
} 
#contentSubpagesWHITE {
	position: absolute;
	width: 750px;
	left: 247px;
	background-color: #FFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	line-height: 1.4em;
	color: #353428;
	height: auto;
	text-align: left;
	top: 205px;
	padding: 1em;
	border: thin solid #990000;
	z-index: 3;
}
#imgfloat {
	float: right;
	margin: 1em 0 1em 1em;
	border-right-width: medium;
	border-bottom-width: medium;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #990000;
	border-bottom-color: #990000;
}

#logo {
	position: relative;
	left: 575px;
	width: 350px;
}
#footer {
	padding: 1em;
	width: 800px;
	position: absolute;
	height: auto;
	left: 200px;
	top: 550px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 80%;
	font-family: Verdana, Geneva, sans-serif;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a:link {
	color: #990000;
	}
a:visited {
	color: #663;
}
a:hover {
	color: #663;
}
a:active {
	color: #663;
}
