@charset "utf-8";
body  {
	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: #383838;
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 80%;
	line-height: normal;
	background-color: #FFFFFF;
	background-image: url(images/bg_main.gif);
	background-repeat: repeat-x;
	font-weight: normal;
}
h1 {
	color: #0059a2;
	font-size: 21px;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
	margin-bottom: 12px;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}
h2 {
	margin: 0;
	color: #0059a2;
	font-size: 18px;
	font-weight: normal;
	padding-top: 14px;
	padding-right: 0;
	padding-bottom: 6px;
	padding-left: 0;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
	margin-bottom: 12px;
}
h3 {
	color: #0059a2;
	font-size: 14px;
	font-weight: bold;
	padding-top: 18px;
	padding-bottom: 8px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #88AFD0;
	margin-bottom: 4px;
}
#container {
	width: 775px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #E6EAED;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
} 
#header {
	background-color: #FFFFFF;
	background-image: url(images/bg_subpage.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	height: 102px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 40px;
} 
#toplinks { /* 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;
	text-align: right;
	font-size: 11px;
	padding-bottom: 7px;
	padding-right: 24px;
	height: 16px;
}
#toplinks a{
	font-weight: bold;
	color: #006393;
	text-decoration: none;
}
#introphoto { /* 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;
	height: 203px;
	width: 343px;
}
#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; 
}
#navbar {
	background: #0059a2;
	padding: 0px;
	margin: 0px;
}
ul#navbar{
	margin:0px;
	padding:0px;
	list-style-type:none;
	width:auto;
	position:relative;
	display:block;
	font-size:13px;
	line-height: normal;
	text-align: center;
	height: 37px;
}
ul#navbar li{
	display:block;
	float:left;
	margin:0px;
	padding:0px;
	border-right-width: 2px;
	border-right-style: groove;
	border-right-color: #88CAFF;
	height: 37px;
	}
ul#navbar li a{
	display:block;
	float:left;
	color:#ffffff;
	text-decoration:none;
	padding-right: 24px;
	padding-left: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	}
ul#navbar li a:hover{
	text-decoration:none;
	color: #004A86;
	background-color: #E6EAED;
	padding-right: 24px;
	padding-left: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 228px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 18px 18px;
	background-color: #e6eaed;
}
#sidebar p {
	margin: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	padding-bottom: 0px;
	line-height: 135%;
	font-size: 90%;
}
#mainContent {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 16px;
	padding-right: 50px;
	padding-bottom: 24px;
	padding-left: 50px;
} 
#footer {
	background-color: #e6eaed;
	background-image: url(images/footer_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-right: 18px;
	padding-left: 24px;
	height: 107px;
	padding-top: 24px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
} 
#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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
}
.divider {
	background-image: url(images/bg_intros.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
	height: 32px;
}
.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;
	margin-top: 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;
	margin: 0;
}
.image_left {
	float: left;
	margin-right: 9px;
	margin-bottom: 6px;
}
.image_right {
	float: right;
	margin-left: 9px;
	margin-bottom: 6px;
}
a {
	color: #0066B9;
}
a:hover {
	color: #7999C0;
}

