@charset "utf-8";
* {
     margin:0px;
     padding:0px;
}
body  {
	background: #000000;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #3B253A;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
li {
	margin-left: 15px;
}
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 25px;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
}
.footnotes {
	font-size: 12px;
}



.printonly {
	display: none;
}
.twoColFixLtHdr #container {
	width: 955px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../image-files/body-graphic.jpg);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #DDDDDD;
	background-image: url(../image-files/banner.jpg);
	background-repeat: no-repeat;
	height: 220px;
	width: 955px;
} 

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	background-color: #FFFFFF;
	background-image: url(../image-files/leftnav-repeating.jpg);
	background-repeat: repeat-y;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColFixLtHdr #sidebar img {
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #container #sidebar1 a {
	padding-bottom: 5px;
	padding-left: 50px;
}
a:link {
	color: #006633;
	text-decoration: underline;
}
a:hover {
	color: #009933;
}
a:active {
	color: #FF0000;
}
a:visited {
	color: #666666;
}




.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 70px;
	padding-bottom: 0;
	padding-left: 20px;
	background-image: url(../image-files/pinwheelpretty.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #DDDDDD;
	background-image: url(../image-files/footer.jpg);
} 
.twoColFixLtHdr #container #footer p {
	font-size: x-small;
}

.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;
}
