﻿@charset "utf-8";
html {
	overflow: scroll;
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #DAE4AC;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */;
	color: #000000;
	text-decoration: italic;
}
.twoColFixLtHdr #logo {
	position: absolute;
	left: 20px;
	top: 7px;
	height: 80px;
	width: 200px;
	border: 0;
}
.twoColFixLtHdr #pagetitle {
	position: absolute;
	left: 20px;
	top: 20px;
	height: 94px;
	width: 200px;
}
.twoColFixLtHdr #container {
	width: 960px;
	background: url(images/header/sidestrip.png) repeat-y white;
	margin: 0 auto;
/* the auto margins (in conjunction with a width) center the page */	border: none;
	border: 1px solid #ADC7E1;
	text-align: left;
}
.twoColFixLtHdr #header {
	position: relative;
	height: 94px;
	background: url(images/header/topstrip3.gif) left top repeat-y;
}
.twoColFixLtHdr #header h1 {
	font-family: "Lucida Grande", Arial, Helvetica;
	font-size: 36px;
	font-weight: bold;
	margin: 0;
/* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */	padding: 10px 180px 0;
/* using padding instead of margin will allow you to keep the element away from the edges of the div */	width: 760px;
	color: white;
	text-align: center;
	vertical-align: middle;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */;
	display: inline;
	width: 170px; /* 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 */;
	margin: 12px 0px 0 10px;
	padding: 15px 0px 15px 5px;
	background: none;
	font-size: 1.2em;
}
.twoColFixLtHdr #sidebar1 a {
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	padding-right: 0;
}
.twoColFixLtHdr #sidebar1 a:link {
	color: #000066;
	padding-right: 0;
}
.twoColFixLtHdr #sidebar1 a:visited {
	color: #000066;
}
.twoColFixLtHdr #sidebar1 a:hover {
	color: #FFFFFF;
	background-color: #000066;
}
.twoColFixLtHdr #sidebar1 a {
	display: block;
	text-decoration: none;
	background-color: #9DBADB;
	font-family: "Lucida Grande", Arial, Helvetica;
	font-size: 11px;
	font-weight: bold;
	padding: 5px 15px;
	color: #6C5635;
	line-height: 1;
	border: 1px solid #ADC7E1;
}
.twoColFixLtHdr #sidebar1 a:hover {
	background-color: #000066;
	text-decoration: none;
	color: #ffffff;
	letter-spacing: .01px;
}
.twoColFixLtHdr #sidebar1 .submenu a {
	display: block;
	text-decoration: none;
	background-color: #ACC8E2;
	font-family: "Lucida Grande", Arial, Helvetica;
	font-size: 11px;
	font-weight: bold;
	padding: 5px 5px 5px 30px;
	line-height: 1;
	border: 1px solid #B6CFE6;
}
.twoColFixLtHdr #sidebar1 .submenu a:hover {
	background-color: #000066;
	text-decoration: none;
	color: #ffffff;
	letter-spacing: .01px;
}
.twoColFixLtHdr #mainContent {
	float: left; /* since this element is floated, a width must be given */;
	width: 420px;
	margin: 20px 0px 0 20px;
/* 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;
/* remember that padding is the space inside the div box and margin is the space outside the div box */	text-align: left;
}
.twoColFixLtHdr #mainContent li {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
.twoColFixLtHdr #rightbar {
	margin: 20px 0px 0px 700px;
	padding: 0px 20px 0px 0px;
	width: 200px;
	font-style: italic;
	font-size: 12px;
	text-align: center;
}
.twoColFixLtHdr #prefooter {
	padding: 0px;
	height: 72px;
	background: url(images/header/footerramp.jpg) no-repeat;
	color: white;
	font-size: 12px;
}
.twoColFixLtHdr #footer {
	border-top: 1px solid #9DBADB;
	margin-top: 20px;
	padding: 0px;
	width: 960px;
	background-color: #B6CFE6;
	color: #000066;
	font-size: 10px;
}
.twoColFixLtHdr #footer p {
	margin: 0 0 0 0;
	padding: 10px 0 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
