@charset "UTF-8";
body {
	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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
}
.oneColLiqCtrHdr #container {
	width: 800px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: justify;
	margin-left: auto;
	margin-right: auto;
}
.oneColLiqCtrHdr #header {
	top: 0px;
	position: static;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	height: 35px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColLiqCtrHdr #navbar {
	margin-left: auto;
	margin-right: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	width: 800px;
	height: 20px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	word-spacing: 10px;
	text-align: right;
	
    
}
.oneColLiqCtrHdr #mainContent {
	background: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	position: static;
	overflow: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: left;
	width: 800px;
	
}
.oneColLiqCtrHdr #footer {
	margin-left: auto;
	margin-right: auto;
	position: fixed;
	bottom: 0px;
	width: 800px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #FFFFFF;
} 
.oneColLiqCtrHdr #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 */
}

