@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #6666ff;
	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;
}
.oneColElsCtrHdr #container {
	width: 90%;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background: #6666ff; 
	padding: 0;  /* 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. */
} 
.oneColElsCtrHdr #header h1 {
	color:#fff;
	font-size:18px;
	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;
}
.oneColElsCtrHdr #mainContent {
	padding: 0 20px; 
	background: #FFFFFF;
}
.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ccf;
} 
.oneColElsCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#navcontainer
{
margin-left: auto;
margin-right: auto;
margin-bottom: 5px;
border-top: 0;
z-index: 1;
}

#navcontainer ul
{
list-style-type: none;
text-align: center;
margin-top: 10px;
padding: 0;
position: relative;
z-index: 2;
}

#navcontainer li
{
display: inline;
text-align: center;
margin: 0 5px;
}

#navcontainer li a
{
padding: 1px 7px;
color: #666;
background-color: #fff;
border: 1px solid #ccc;
text-decoration: none;
}

#navcontainer li a:hover
{
color: #000;
border: 1px solid #666;
border-top: 2px solid #666;
border-bottom: 2px solid #666;
}

#navcontainer li a#current
{
color: #000;
border: 1px solid #666;
border-top: 2px solid #666;
border-bottom: 2px solid #666;
}

#footer a {
color:#666;
text-decoration:underline;
}

#footer a:hover{
	color:#00F;
	text-decoration:none;
}

/* Table */

table{
	border:0;
	padding:0;
	margin:0;
	text-align: center;
	width: 100%;
	font-size:small;
}

table a{
	color:#666;
	text-decoration:underline;
}

table a:hover{
	color:#00F;
	text-decoration:none;
}

tr#headrow {
	font-weight: bold;
}

tr#oddrow {
	background: #ccf;
}

tr#evenrow {
    background: #fff;
}

td{
	padding: 5px 1px;	
}

h1 a {
    color:#000;
	text-decoration: none;;
}

h1 a:hover {
	text-decoration: underline;
}

h2 {
	color:#444;
}



