@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #CCE1F4;
	text-align:left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #FFFFFF;
	border-bottom:1px solid #CCE1F4;
}
.oneColFixCtrHdr #mainContent {
	font: 90% Arial, Helvetica, sans-serif;
	line-height:150%;
	background: #FFFFFF;
	padding: 0 20px;
}
.oneColFixCtrHdr #footer {
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#CCE1F4;
}
.oneColFixCtrHdr #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: 10x 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: small;
	color: #666;
}
h1 {
	font: Verdana, Arial, Helvetica, sans-serif;
	line-height:100%;
	color: #764FA2;
}
h2 {
	font: Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 5px;
	font-size: 1.2em;
	color: #0984CE;
}

h3 {
	font: Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 3px;
	font-size: 1em;
	color: #004074;
}
p {
	margin-top: 0px;
}

ul {
	margin-top: 0px;
}

.menu ul {
	text-align:right;
	list-style:none;
	font-size:small;
	position:relative;
	top:0px;
}
.menu ul li {
	display: inline;
}
.menu ul li a {
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0px;
	text-decoration: none;
	color:#666;
	background: #CCE1F4;
	border:1px solid;
	border-bottom-color:#A5A5A5;
	border-left-color:#DAE6F2;
	border-right-color:#A5A5A5;
	border-top-color:#CCE1F4;
}
.menu ul li a:hover {
	color:#ffffff;
	background: #7797EF;
}
