@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: #000000;
	background-color: #ecf1fe;
	background-image: url(../images/background.jpg);
	background-repeat: repeat-x;
}
.wrapper #container {
	width: 800px;
	text-align: left;
	background-image: url(../images/footer.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #102c79;
	border-left-color: #102c79;
	background-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #102c79;
} 
.wrapper #header {
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 400px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: -150px;
	padding-left: 20px;
	margin-bottom: -100px;
} 
.wrapper #header h1 {
	padding-top: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	color: #d3d5dd;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: bold;
	text-align: left;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 240px;
	margin-top: -24px;
}

.wrapper #container #header #phonenumber {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #d3d5dd;
	text-align: right;
	font-weight: bold;
}

.wrapper #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 210px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 15px;
	padding-left: 5px;
}
.wrapper #container .border {
	border: 1px solid #102c79;
	padding-right: 3px;
	padding-left: 15px;
	padding-bottom: 10px;
}
.wrapper #container #sidebar1 .border h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #102c79;
	text-align: center;
}
.wrapper #container #sidebar1 .border #form1 .bluebg {
	background-color: #889dd8;
	border: 1px solid #102c79;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.centered {
	text-align: center;
}
.leftaligned {
	text-align: left;
}
.regulartext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #102c79;
}




.wrapper #mainContent {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px;
} 
.wrapper #container #mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #dce4f9;
}

.wrapper #container #mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #dce4f9;
}
.wrapper #container #mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #3333cc;
}
.wrapper #container #mainContent ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	font-weight: normal;
	color: #102c79;
}
.wrapper #container #mainContent ul li a, .wrapper #container #mainContent ul li a:visited, .wrapper #container #mainContent ul li a:active{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #102c79;
	text-decoration: none;
}
.wrapper #container #mainContent ul li a:hover {
	color: #33C;
	text-decoration: none;
}
.wrapper #container #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 15px;
	font-weight: normal;
	color: #102c79;
}
.wrapper #container #mainContent a, .wrapper #container #mainContent a:visited, .wrapper #container #mainContent a:active {
	font-family: Arial, Helvetica, sans-serif;
	color: #791026;
	text-decoration: none;
}
.wrapper #container #mainContent a:hover {
	color: #102c79;
	text-decoration: underline;
}


.wrapper #footer {
	background:#e5e8f0;
	margin-top: 20px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.wrapper #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #102c79;
	text-align: center;
}
.wrapper #container #footer p a, .wrapper #container #footer p a:active, .wrapper #container #footer p a:visited {
	color: #102c79;
	text-decoration: underline;
}
.wrapper #container #footer p a:hover {
	color: #791026;
	text-decoration: none;
}

.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;
}
#logos{
	background:url("../images/logos.gif") no-repeat;
	height:300px;
}

img.img-left { 
	float:left; 
	margin:2px 10px 10px 0px;
	}

img.img-right { 
	float:right; 
	margin:5px 0px 10px 10px; 
	}