@charset "utf-8";
body {
	background: #FFF8DC;
	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;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 100%;
	line-height: 150%;
}
.oneColFixCtrHdr #container {
	width: 950px; /* the auto margins (in conjunction with a width) center the page */
	text-align: justify; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFF8DC;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #header {
	background: #FFF8DC;
	padding: 0;
	font-size: 95%;
	font-weight: bold;
	line-height: 125%;
}
.oneColFixCtrHdr #mainContent {
	background-repeat: no-repeat;
	text-align: justify;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	background-color: #FFF8DC;
}
.oneColFixCtrHdr #mainContent h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #9999CC;
	font-size: 100%;
	padding-top: 20px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	text-align: right;
	background-color: #FFF8DC;
	font-weight:bold;
	font-size: 90%;
}
.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 */
}
a:link {
	color: #9999CC;
}
a:visited {
	color: #CCCC99;
}
a:hover {
	color: #9999CC;
}
