@charset "utf-8";
body {
	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: "Times New Roman", Times, serif;
	background-color: #FFF;
}
.oneColLiqCtrHdr #container {
	width: 902px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #000;
	font-size: 75%;
}
.oneColLiqCtrHdr #header {
	padding-top: 0;
	padding-bottom: 0;
}
.oneColLiqCtrHdr #header h1 {
	margin: 0; /* 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 */
}
.oneColLiqCtrHdr #mainContent {
	background-color: #121212;
	margin-bottom: 5px;
	margin-top: 5px;
	border: 1px solid #FFF;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 25px;
	padding-left: 10px;
}
.oneColLiqCtrHdr #footer {
	padding-top: 0;
	padding-bottom: 0;
	background-color: #000;
	font-size: 80%;
} 

