@charset "utf-8";
body  {
	font: 100%/1.2em Arial, Verdana, Helvetica, sans-serif;
	background: #384d8d url(../images/page_bg.png) repeat-x;
	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;
}
* {margin:0;padding:0;}
blockquote {margin:6px 0 0 18px;padding:0;}
table {border-collapse:collapse;}
img {border:0;}
/* lists */

ul { padding: 5px 10px 10px 20px; margin: 0px; font-size:85%; }
li { padding-bottom: 5px; margin: 0px; }
ul li ul li{ list-style-type: none; }
a{color:#192c68; text-decoration:none; font-weight:bold; outline: none;}
a:hover{color:#6cadef; font-weight:bold; }
#container { 
	width: 917px;  
	margin: 0 auto; 
	text-align: left;
} 
#header { 
	background: #384d8d url(../images/logo_bg.jpg);
	height:89px; 
	text-align:left;
	text-indent:-10000;  
} 
#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 */
	text-indent:-10000px;
}
#header img {
	padding: 11px 20px; 
}

#nav{
	background:url(../images/nav_bg.png);
	height:29px;
	width:100%;
	}

html>body div#content {
height: auto;
}

#footer { 
	background:#384d8d;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:left;

} 
#footer p {
	color: #F7F7F7;
	margin: 0; 
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
h1, h2, h3, h4, p{margin:0.7em 0;}
h1{
	color:#091d69;
	font-size:150%;
	}
p{
	font-size:85%;
	}
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	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;
}