@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #5977b1;
	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;
}

p, li {
	font-size:85%;
	line-height:1.5em;
}

li {
	padding: .2em;
}

h1, h2, h3 {
	font-family:Arial, Helvetica, sans-serif
}

h1 {
	color: #333333;
}

h2 {
	color: #25408f;
}

h3 {
	font-size:110%;
}

.textimg {
	margin-right:1em;
	border:1px solid #999999;
}

#container {
	width: 900px; 
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #333333;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
 #header { 
	background: #FFFFFF; 
	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. */
} 

 #header p {
 	color: #25408f;
	font-size:80%;
	font-weight:bold;
	
 }
 
 #nav {
 	height:30px;
 	background-image:url(images/bg_nav.jpg);
	background-repeat:repeat-x;
 }
 
 #nav span {
 	padding:8px 20px;
	font-size:80%;
	float:left;
 }
 
 #nav span a {
 	display:block;
 }

 a:link, a:visited { /* including #nav span a */
 	color:#000066;
 }
 
 #nav span a:hover, #nav span a:active {
 	color:#6666cc;
 }
 
 a.current {
 	color:#FFFFCC;
	text-decoration:none;
 }
 
 #headerImage {	
 	height:169px;
	padding: 0;
	background-image:url(images/bg_header.jpg);
	background-repeat:no-repeat;
}

 #headerImage h1 {
 	font-size: 24px;
	padding:115px 0 0 10px;
	margin:0;
 }
 
 #headerImage h2 {
 	font-size: 18px;
	padding:0 0 0 10px;
	margin:0;
 }
 
 #mainContent {
	padding: 2em 2em 1em 3em;
	background: #acc2e2 url(images/bg_main.gif) 0 0 no-repeat; 
	border-bottom:1px solid #999999;
	border-top:1px solid #999999;
}

#leftcol {
	width:44%;
}

#rightcol {
	width:52%;
}

#contactform {
	background-color:#FFFFFF;
	border:1px solid #999999;
	font-size:85%;
	}

#contactform th {
	background-color:#25408f;
	color:#FFFFFF;
	text-align:center;
}

#contactform td {
	vertical-align:top;
	padding:.3em;
	}

#footer { 
	background:#ffffff;
	padding:.5em;
	font-size:70%;
} 

#footer span {
	margin-right:1em;
}

#footer a {
	
}

.fltlft {
	float: left;
	margin-left: 8px;
}

.fltrt {
	float: right;
	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;
}