@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #333333;
	background-color: #B3C1C6;
}
#container {
	width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(../images/background.jpg);
	background-repeat: no-repeat;
	background-position: left top;
} 

#header {
	margin-top: 20px;
	height: 123px;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	position: relative;
} 
#tagline {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF9900;
	font-size: 30px;
	position: absolute;
	left: 578px;
	top: 45px;
	text-align: right;
}
#navigation {
	height: 40px;
	clear: both;
	position: relative;
	padding-top: 20px;
}
#mainContent {
	float: left;
	padding-left: 15px;
	padding-right: 15px;
	width: 590px;

} 
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: #003B7D;
}
#mainContent h4 {
	font-style: italic;
	color: #003B7D;
}
#mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	line-height: 1.5em;
}
#mainContent ul {
	list-style-position: outside;
}

#mainContent ul li {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
}
#figure  {
	margin: 0px;
	padding: 0px;
}
#figure p  {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: bold;
}

#mainContent .fltright {
	float: right;
	padding-right: 10px;
	padding-bottom: 10px;
	border-style: none;
}


#mainContent .fltleft {
	float: left;
	padding-right: 10px;
	padding-bottom: 10px;
	border-style: none;
}
.imageLeft  {
	float: left;
	margin-right: 10px;
}
.imageRight  {
	float: right;
	margin-left: 10px;
	margin-right: 10px;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 275px;
	text-align: center;
}
#footer {
	background-color: #D5E0DF;
	position: relative;
	height: 135px;
	border: 1px solid #B3C1C6;
	margin: 10px;

} 
#footer p {
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#footerGraphic {
	position: absolute;
	left: 393px;
	top: 6px;
	width: 460px;
	height: 125px;
}


.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;
}
.figure {
	text-align: center;
}
#header a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

