@charset "utf-8";
body {
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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-image: url(../images/background.gif);
	background-repeat: repeat;
}
.oneColFixCtrHdr #container {
	width: 800px;
	text-align: left;
	background-color: #fff799;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.oneColFixCtrHdr #header {
	padding: 0px;  /* 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. */
	height: 147px;
	width: 800px;
	background-image: url(../images/banner.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #navbar {
	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. */
	height: 28px;
	width: 800px;
	background-image: url(../images/nav-bkgrd.gif);
	background-position: top;
	background-repeat: repeat-x;
	margin-top: 1px;
	text-align: center;
	line-height: 28px;
}
#navbar a:link, #navbar a:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
	padding-right: 30px;
	padding-left: 30px;
	font-weight: bold;
}
#navbar a:hover {
	color: #FFFF00;
	text-decoration: underline;
}
.oneColFixCtrHdr #mainContent {
	background-color: #fff799;
	height: auto;
	width: 730px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 50px;
}
.oneColFixCtrHdr #footer {
	background-image: url(../images/footer.jpg);
	height: 45px;
	width: 800px;
	background-repeat: no-repeat;
	background-position: top;
	padding: 0px;
	text-align: center;
}
#footer p {
	font-size: 12px;
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	line-height: 43px;
}
.oneColFixCtrHdr #topFooter {
	background-image: url(../images/top-footer.gif);
	height: 8px;
	background-repeat: repeat-x;
	background-position: top;
	padding: 0px;
}
.oneColFixCtrHdr #BottomFooter {
	background-image: url(../images/bottom-footer.gif);
	height: 23px;
	background-repeat: repeat-x;
	background-position: top;
	padding: 0px;
	text-align: center;
}
#BottomFooter p {
	font-size: 10px;
	margin: 0px;
	padding: 0px;
	line-height: 21px;
}
#BottomFooter a:link, #BottomFooter a:visited {
	text-decoration: none;
	color: #FFFF00;
}
#BottomFooter a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}
#clearall {
clear: both;
}
