@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: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
}
.oneColLiqCtrHdr #container {
	width: 90%;  /* this will create a container 80% of the browser width */
	background: #000000; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #CC0000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	overflow: hidden;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}
.oneColLiqCtrHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #000000;
}
.oneColLiqCtrHdr #mainContent {
	padding: 0 20px;
	background-color: #000000;
}
.oneColLiqCtrHdr #footer {
	background-color: #000000;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 7px;
	padding-left: 10px;
} 
.oneColLiqCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 1px;
	padding-right: 0;
	padding-bottom: 1px;
	padding-left: 0;
}
