/* CSS Document */
@charset "utf-8";
html, body, ul, ol, li, p, 
h1, h2, h3, h4, h5, h6, 
form, fieldset, a, iframe { 
margin: 0; 
padding: 0; 
border: 0; 
}

body {
	background-color: #eee;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align:center;
}
#container { 
	width: 1020px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #666;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	position: relative;
	float:left;
	width: 1020px;
	height:121px;
}

#mainbody {
	width: 1020px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
}
#mainbody p {
	font-size: 11px;
	color: #000;
}
#mainbody h1 {
	font-size: 20px;
	color: #5363AB;
	line-height: 1.2em;
	padding:8px;
}
#mainbody h2 {
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	line-height: 1.2em;
}
#mainbody a {
	color: #5363AB;
	text-decoration: underline;
	font-weight: normal;
}
#mainbody a:hover {
	text-decoration: none;
}

#breadcrumbs {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666;
	padding:4px;
	}
#breadcrumbs a {
	text-decoration: none;
	color: #666;
}
#breadcrumbs a:hover {
	font-weight: normal;
	color: #5363AB;
	text-decoration: underline;
}

.caps	{
	text-transform:uppercase;
	}
#footer	{
	width:1020px;
	float:left;
	border-top:#ccc solid 1px;
	padding:8px 0;
}
.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;
}
