@charset "UTF-8";
/* CSS Document */

<!--
body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #7A99A7;
	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: #000000;
}
.oneColLiqCtrHdr #container {
	width: 90%;  /* this will create a container 80% of the browser width */
	background: #7A99A7;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColLiqCtrHdr #header {
	position: relative;
	background: #FFFFFF; 
	margin: 0;
	padding: 12px 18px;  /* 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. */
}
.oneColLiqCtrHdr #header p {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColLiqCtrHdr #header ul.nav {
	float: right;
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;		
	background: url(images/navbuttonbg.png) repeat-x left top;
}
.oneColLiqCtrHdr #header ul.nav li {
	display: inline;	
	float: left;	
}
.oneColLiqCtrHdr #header ul.nav a:link, .oneColLiqCtrHdr #header ul.nav a:visited {
	display: block;
	text-decoration: none;
	padding: 5px 15px;
	background: url(images/navbuttonbg.png) repeat-x left top;
	background-position: 0 0;
	border-left: 1px solid white;
	font-weight: bold;
	color: #003366;	
}
.oneColLiqCtrHdr #header ul.nav a:hover, .oneColLiqCtrHdr #header ul.nav a:active {
	background-position: 0 -23px;
	color: #FFFFFF;	
}
.oneColLiqCtrHdr #mainContent {
	padding: 0 18px 9px 18px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	border-top: 1px solid #7A99A7;
}
.oneColLiqCtrHdr #mainContent h1 {
	color: #003366;
}
.oneColLiqCtrHdr #mainContent h2 {
	color: #7A99A7;
}
.oneColLiqCtrHdr #mainContent a:link, .oneColLiqCtrHdr #mainContent a:visited {
	color: #003366;
	text-decoration: none;
}
.oneColLiqCtrHdr #mainContent a:hover, .oneColLiqCtrHdr #mainContent a:active {
	color: #7A99A7;
	text-decoration: underline;
}
.oneColLiqCtrHdr #QandA {
	float: left;
	margin: 0px 12px 9px 18px;
	padding: 9px;
	width: 25%;
	background: #C8D5DB;
	border: 1px solid #7A99A7;
}
.oneColLiqCtrHdr #footer { 
	height: 24px;
	padding: 0 18px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(images/navbuttonbg.png) repeat-x left top;
	background-position: 0 -23px;
	color: white;
} 
.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: 4px 0 8px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.left {
	float: left;
	padding: 6px 12px 6px 0;
}
.right {
	float: right;
	padding: 6px 0 6px 12px;
}
.borderleft {
	float: left;
	clear: left;
	margin: 0 12px 0 0;
	border: 1px solid #7A99A7;
}
.borderright {
	float: right;
	clear: right;
	margin: 0 0 0 12px;
	border: 1px solid #7A99A7;
}
.graybold {
	font-weight: bold;
	color: #7A99A7;
}
.white {
	color: white;
}
.red {
	color: red;
}
.rule {
	clear: both;
	padding: 12px 0 0 0;
}
.larger {
	font-size: 120%;
}
.small {
	font-size: 90%;
}
.smaller {
	font-size: 75%;
}
-->
