@charset "utf-8";
body {
	Smargin: 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: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #FFF;
}
.oneColFixCtrHdr #container {
	width: 100%; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 900px;
}
.oneColFixCtrHdr #header {
	background-color: #FFF;
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-image: url(Images/header.gif);
	width: 100%;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 10;
	padding-left: 0px;
	height: 160px;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-color: #FFF;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	float: none;
	height: 50px;
	width: 100%;
}
.oneColFixCtrHdr #mainContent {
	background-color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	padding-top: 0px;
	width: 100%;
	float: none;
	font-size: 11px;
	height: 750px;
}
.oneColFixCtrHdr #footer {
	color: #666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	width: 100%;
	font-size: 10px;
	background-image: none;
	height: 150px;
}
.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 */
