@charset "UTF-8";
body {
	margin: 0 auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: "ITC Avant Garde Gothic Medium";
	font-size: large;
	background-color: #FFF;
}
.oneColLiqCtrHdr #container {
	width: 98%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000;
	text-align: left;
	padding-left: 5px;
	height: 98%;
	color: #000;
	border-color: #000;
}
.oneColLiqCtrHdr #header {
	background-color: #FFF;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	padding: 0;
}
.oneColLiqCtrHdr #header h1 {
	margin: 0 auto; /* 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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColLiqCtrHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	position: relative;
	height: auto;
	width: auto;
	margin: 0 5px;
	;
}
.oneColLiqCtrHdr #footer {
	height: 40px;
	width: 98%;
	background-color: #000;
	margin-top: 0;
	margin-bottom: 5px;
	padding-top: 0;
	padding-bottom: 5px;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	position: relative;
	margin-left: 5px;
} 
.oneColLiqCtrHdr #footer p {
	padding: 0, 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
