@charset "utf-8";
* {
	margin:0;
	padding:0;
}
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: #000;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFF;
}
img {
	border:0;
	outline:none;
}
p {
	text-align:justify;
	line-height:18px;
	margin:10px 0px;
}
h1 {
	font-family:Tahoma, Geneva, sans-serif;
	font-size:16px;
}
h2 {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12px;
}
a {
	color:#06C;
	text-decoration:none;
}
a:hover {
	color:#036;
}
.oneColLiqCtrHdr #container {
	width: 800px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.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 */
}
.oneColLiqCtrHdr #mainContent {
	background: #FFFFFF;
	float: left;
	clear: both;
	width: 800px;
}
.oneColLiqCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#069;
	color: #FFF;
	margin-bottom: 10px;
	float: left;
	clear: both;
	width: 780px;
	margin-top: 10px;
} 
.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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
}
.sepGray {
	background-color: #CCC;
	clear: both;
	float: left;
	height: 10px;
	width: 100%;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.sepBlue {
	background-color: #069;
	clear: both;
	float: left;
	height: 10px;
	width: 100%;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.tbTitle {
	background:#069;
	color:#FFF;
	text-align:center;
}
table {
	margin:20px 0px;
}
th, td { padding:10px; font-weight:normal; }
td { border-left:1px solid #06C; border-right:1px solid #06C; border-bottom:1px solid #06C; }
