/* CSS Document */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #004280;
	background-color: #fff;
	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 */
}

.oneColFixCtrHdr #container {
	width: 950px;
	background: #FFFFFF;
	margin: 3em auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {

	padding: 0px;  /* 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. */
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	line-height: 1.4em;
	padding-top: 40px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}

.oneColFixCtrHdr #mainContent img {
	padding: 8px;
}

.oneColFixCtrHdr #footer {
	background-image: url(images/2010-footer.jpg);
	background-repeat: no-repeat;
	height: 88px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.oneColFixCtrHdr #footer p {
	margin: 0;
	color: #9FCF69;
	font-size: 0.75em;
	text-align: center;
	padding-top: 45px;
	padding-right: 0;
	padding-left: 0;
}

.oneColFixCtrHdr #footer a {
	color: #9FCF69;
}

a:link {
	color: #004280;
	text-decoration: none;
}
a:visited {
	text-decoration: none;

}
a:hover {
	text-decoration: underline;
	color:#0085C5;
}
a:active {
	text-decoration: none;

}
a {
	text-align: left;
}

h1 {
	font-size: 1.2em;
	text-align: left;
}

h2 {
	font-size: 0.9em;
	color: #930;
	text-align: center; 
	font-style: normal;
}



table, td {
	padding: 0px;
	border-collapse: collapse;
	text-align: left;
	border: none;
}

#navcontainer ul
{
	margin:0;
padding-left: 0;
margin-left: 0;
background-color: #036;
color: White;
float: left;
width: 100%;
font-family: arial, helvetica, sans-serif;
}

#navcontainer ul li { display: inline; }

#navcontainer ul li a
{
padding: 0.2em 1em;
background-color: #036;
color: White;
text-decoration: none;
float: left;
border-right: 1px solid #fff;
}

#navcontainer ul li a:hover
{
background-color: #369;
color: #fff;
}

