@charset "utf-8";
img, div, a, input { behavior: url(css/iepngfix.htc) }
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(../images/bkgnd_gradient.png) repeat-x #7895a3;
	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: #0a3542;
}
html, body {
	height: 100%;
}
hr {
	border: 0;
	color: #cdd8dd;
	background-color: #cdd8dd;
	height: 5px;
	margin:0;
	padding:0;
}
#container { 
	position:relative;
	width: 1100px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(../images/bkgnd_container.png) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0 0 20px 0;
	min-height: 100%;
} 
#header { 
	background: url(../images/bkgnd_header.jpg) no-repeat #FFFFFF;
	margin: 0 50px;
	height: 148px;
}
#nav {
	margin: 0 50px;
	height: 33px;
	padding: 0;
}
#banner {
	margin: 0 50px;
	height: 380px;
	background: url(../images/bkgnd_banner.jpg) no-repeat;
}
#banner h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 48px;
	color: #0a3542;
	font-weight:normal;
	padding: 20px 0 0 20px;
	margin:0;
}
.secondline {
	font-size: 36px;
}
.thirdline {
	font-size: 57px;
	line-height: 48px;
}
#subbanner {
	margin: 0 50px;
	height: 13px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	margin: 40px 0 0 50px;
	width: 375px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	font-size: 80%;
	line-height: 16px;
}
#subsidebar1 {
	float: left; /* since this element is floated, a width must be given */
	margin: 0 0 0 50px;
	width: 375px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	font-size: 80%;
	line-height: 16px;
}
.homelink {
	font-size: 80%;
	padding: 0 0 0 40px;
}
.homelink a {
	color: #4f7282;
	text-decoration:none;
}
.homelink a:hover {
	color: #0a3542;
	text-decoration:underline;
}
#sidebar1 h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	color: #0a3542;
	font-weight:normal;
}
#subpagelinks {
	padding: 0 20px 180px 40px;
}
#subpagelinks a {
	color: #4f7282;
	text-decoration:none;
}
#subpagelinks a:hover {
	color: #0a3542;
	text-decoration:underline;
}
#subpagelinks .selected {
	color: #4f7282;
	font-weight:bold;
}
#mainContent { 
	margin: 0 50px 0 425px; /* the left margin on this div element creates the column down the left 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 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent a {
	color: #4f7282;
	text-decoration:none;
}
#mainContent a:hover {
	color: #0a3542;
	text-decoration:underline;
}
#mainContent p { 
	font-size: 80%;
	line-height: 16px;
}

#mainContent h1 { 
	font-family: "Times New Roman", Times, serif;
	font-size: 26px;
	color: #0a3542;
	font-weight:normal;
}
#mainContent h2 { 
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	color: #0a3542;
	font-weight:normal;
}
#mainContent ul {
	font-size: 80%; 
	list-style:url(../images/dk_bullet.jpg);
}
#mainContent ul li {
	line-height: 18px;
}
#footer { 
	width: 1100px;
	margin: 0 auto;
	background:url(../images/bkgnd_footer.png) repeat-y; 
	text-align: left;
	padding:10px 0;
}
#address {
	position:absolute;
	bottom:0;
	background: url(../images/bkgnd_address.jpg) no-repeat;
	height: 164px;
	width: 375px;
}
#address h3 {
	padding: 5px 20px 0 120px;
	margin:0;
}
#address p { 
	padding: 0 20px 0 120px;
	line-height: 16px;
	color: #4f7282;
}
#subnav p {
	color:#FFFFFF;
	padding:0 0 0 10px;
	font-size:9px;
	margin:0;
}
#subnav a {
	color:#FFFFFF;
	text-decoration:none;
	margin:0;
}
#subnav a:hover {
	text-decoration:underline;
}
#subnav {
	float:left;
	width: 590px;
	margin: 0 0 0 50px;
}
#copyright {
	margin: 0 0 0 675px;
	width: 375px;
	text-align: right;
}
#copyright p {
	color:#FFFFFF;
	padding:0 10px 0 0;
	font-size:9px;
	margin:0;
}
.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;
    line-height: 1px;
}
