@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}
#container {
	width: 751px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #FFFFFF; 
}
#mainContent {
	background: #FFFFFF;
	padding-top: 15px;
	padding-right: 90px;
	padding-bottom: 0;
	padding-left: 90px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: none;
	color:Black;
	background-color: Transparent;
}
#mainContent p {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: none;
	color:Black;
	background-color: Transparent;
	margin-top: 5px;
	margin-bottom: 5px;
}
#footer {
	padding: 0 10px;
	background-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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#mainContent h1 {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	color: #093B93;
	font-size: 26px;
	font-weight: bold;
}
#mainContent h3 {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0px;
}
#mainContent h4 {
	margin-bottom: 3px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 13px;
}
#mainContent ul {
	margin: 0px;
}
.halfspace {
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 8px;
}
.left1 {
	float: left;
	width: 270px;
}
.right1 {
	float: right;
	width: 280px;
}
.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;
	padding-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clearfloat2 {
	clear: both;
}
.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;
}
.description {
	float: left;
	position: relative;
	left: -5000px;
}
