@charset "utf-8";
body {
	background: #666666;
	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;
	font-family: Garamond, "Times New Roman", "CG Times", Times;
	font-size: 100%;
}
.oneColLiqCtrHdr #container {
	width: 80%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #E9E4C9;
	background-image: none;
}
.oneColLiqCtrHdr #header {
	background-color: #FFF;
	font-size: 18px;
	color: #FFF;
	background-image: url(../images/BgGradientGreen2.gif);
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-family: Garamond, "Times New Roman", "CG Times", Times;
	height: 130px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.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 */
	color: #FFF;
}
.oneColLiqCtrHdr #mainContent {
	font-family: Garamond, "Times New Roman", "CG Times", Times;
	background-color: #E9E4C9;
	background-image: none;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	text-align: left;
}
.oneColLiqCtrHdr #footer {
	padding: 0 10px;
	color: #FFF;
	background-color: #E9E4C9;
} 
.oneColLiqCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Garamond, "Times New Roman", "CG Times", Times;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	background-color: #E9E4C9;
}
