@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background-color: #660000;
	background-image: url(../images/background.jpg);
	background-repeat: repeat-x;
	background-attachment: fixed;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #header {
	padding: 5px 0 0 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. */
	margin: 0;
}

#topnav {
	height: 25px;
	border: 1px solid #660000;
	font-size: 14px;
	background-image: url(../images/navbutton1.jpg);
}
#topnav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#topnav ul li {
	display: inline;
}
#topnav ul li a {
	float: right;
	padding-right: 22px;
	padding-left: 22px;
	padding-top: 3px;
	padding-bottom: 5px;
}
#topnav ul li a:hover {
	background-image: url(../images/navbutton2.jpg);
	background-repeat: no-repeat;
	color: #FFCC33;
}


.oneColFixCtrHdr #mainContent {
	border: 1px solid #660000;
	margin: 0;
	background-color: #FFFFFF;
}

.oneColFixCtrHdr #footer {
	padding: 0 10px;
	font-size: 10px;
	color: #FFCC00;
}
.oneColFixCtrHdr #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 */
}
body,td,th {
	color: #006666;
}
a:link {
	color: #FFCC33;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFCC33;
}
a:hover {
	text-decoration: none;
	color: #FFFF99;
}
a:active {
	text-decoration: none;
	color: #FFCC33;
}
*{
margin: 0;
padding: 0;
}
