@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #DCDCDC;
	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: #000080;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFF00;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
}
.oneColFixCtrHdr #header {
	background: #FFFF00;
	padding: 0 10px 0 20px;  /* 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. */
	height: 110px;
	background-image: url(IAassessments.gif);
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #header h1 {
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #000080;
	text-align: right;
}
.oneColFixCtrHdr #navcontainer {
	background-color: #FFFF00;
	margin-bottom: 0px;
}
#navcontainer ul {
	display:block;
	list-style: none outside;
	padding: 0 4 0 4;
	margin: 0 0 0 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	float: left;
	position: inherit;
	width: 740px;
	top: 120px;
	height: 0px;
	left: 12px;
}
#navcontainer li
{
	padding: 0;
	margin: 0 4px 0 2;
	border-top: 1 px solid #cecbc6;
	border-right: 1px solid #cecbc6;
	border-left: 1px solid #cecbc6;
	background-color:#ffff00;
	color: #FFFF00;
	font: bold 1em/1.2em;
	display: block;
	margin-right: 4px;
	float: left;
	position: static;
	margin-right: 0.5em;
	bottom: auto;
}
#navcontainer a:link, #navcontainer a:visited
{
	background: #000080;
	color:#FFFFFF;
	text-decoration: none;
	padding-left: 1em;
	padding-right: 1.2 em;
}
#navcontainer a:hover
{ background-color: #FFFF99;
color: #003300;
}
#navcontainerclear { display: none;}
html>body #navcontainerclear{
display: block;
clear: both;
}
#navcontainer li#active a
{
background-color:#FFFFFF;
color: #003300;}


.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFF00;
}
.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: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #000080;
}
