@charset "UTF-8";
body  {
	font: 76% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	background-color: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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:#333333;
}

a:link {
	color: #000080;
	text-decoration: none;
	font-weight: bold;
	font-size:0.9em;
}
a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #990033;
}
a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #336600;
}
a:active {
	text-decoration: none;
	color: #D4BF00;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
}
h1 {
	font-size: 1.2em;
}
h2 {
	font-size: 1.1em;
}
h3 {
	font-size: 1em;
}
.contact {
	font-size: 0.8em
}
.bluefont {color: #006699}

#container {
	width: 66em;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	padding:10px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	border-color:#999966;
	border:medium;
}

#header { 
	background: #FFFFFF; 
}

#header h1 {
	margin: 0; 
}

#navbar {
     margin-top:20px;
	 border: solid thin #999966;
	 font-size:0.9em;
}
#table_title {
     padding-left:2px;
}

#mainContent {
	margin:0px;
	padding:10px;
	margin-top:30px;
	border: solid thin #999966;	
}
#logos {
	margin:0px;
	padding:10px;
	margin-top:30px;
}

#mainContent_noborder {
	margin:0px;
	padding:0px;
	margin-top:30px;
}
 
#footer { 
    padding:0px;
	background-color:#FFFFFF;
	
} 


/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
0
