@charset "UTF-8";
body  {
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
	line-height: 140%;
	margin-top: 2%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
a:link {
	font-weight: bold;
	color: #191C5F;
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}
#container {
	width: 855px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../images/background_home.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 60px;
	height: 534px;
	display: block;
} 
#header {
	text-align: center;
	padding: 0;
} 
#header img {
	display: inline-block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 294px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
#mainContent {
	font-size: 80%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 300px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 40px;
} 
#mainContent .headings {
	font-size: 150%;
	font-weight: bold;
}
#footer {
	text-align: right;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 310px;
	background-image: url(../images/footer_bg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	clear: both;
	width: 450px;
	margin-right: auto;
	margin-left: auto;
} 
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#footer img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#footer a {
	font-size: 80%;
}
.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;
}
