@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;
	background: #FFFFFF;
	color: #000099;
	font-family: "Times New Roman", Times, serif;
	font-size: medium;
	font-weight: bold;
	background-color: #000099;
}
.oneColLiqCtrHdr #container {
	width: 96%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* this overrides the text-align: center on the body element. */
}
.oneColLiqCtrHdr #header {
	padding: 00px;
	background: #FFFFFF;
}
.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: 0px 0;
	background: #FFFFFF;
	background-color: #000099;
	font-family: "Times New Roman", Times, serif;
	font-size: medium;
	color: #000099;
	font-weight: bold;
}
.oneColLiqCtrHdr #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin-right: 10px;
	margin-left: 10px;
}
.oneColLiqCtrHdr #footer {
	padding: 20 0px;
	background-color: #0099FF;
	font-weight: bolder;
} 
.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: 0px 10; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

