@charset "utf-8";
body  {
	background: #666;
	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: #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 90%;
}
.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #666;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #666;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	list-style: disc;
} 
.twoColFixLtHdr #header {
	background: #FFF url(../none);
	margin: 10px 0px 2px;
	height: 159px;
	padding: 0px;
	border-bottom: 10px solid #666;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
} 
.twoColFixLtHdr #header h1 {
	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 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #mainContent {
	margin: 0px 0px 10px 0px; /* 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: 20px 20px 10px 20px;
	background: #FFF;
	color: #333;
}
.twoColFixLtHdr #container #mainContent p a {
	color: #057A5F;
	text-decoration: none;
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent table {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #333;
	background: #FFF;
	font-size: 90%;
	list-style: disc;
}
.twoColFixLtHdr #container #mainContent table a {
	color: 057A5F;
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent table a:link {
	color: 057A5F;
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent table a:visited {
	color: 057A5F;
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent table a:hover {
	color: 057A5F;
	text-decoration: underline;
}
.twoColFixLtHdr #container #mainContent table a:active {
	color: 057A5F;
	text-decoration: none;
}

.twoColFixLtHdr #container #mainContent table tr td a img {
	font-variant: normal;
	border: none;
}
.twoColFixLtHdr #container #mainContent #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* 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 */
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px 5px 5px;
	margin: 0px 2px 5px 0px;
	border-right: 10px none #666;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	height: 400px;
}
.twoColFixLtHdr #container #mainContent #sidebar1 h2 {
	color: #057A5F;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #container #mainContent #sidebar1 #date {
	padding: 2px 2px 10px 10px;
}
.twoColFixLtHdr #container #mainContent #sideContent table tr td {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
}
.twoColFixLtHdr #container #mainContent #sideContent table tr td a {
	color: #900;
	font-size: 10px;
}
.twoColFixLtHdr #container #mainContent #sidebar1 #center_menu table {
	background-color: #062541;
	margin: 0px;
	padding: 0px;	
}
.twoColFixLtHdr #container #mainContent #sidebar1 #center_menu table tr td a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-variant: small-caps;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent #sidebar1 #center_menu table tr td a:link {
	color: #FFF;
}
.twoColFixLtHdr #container #mainContent #sidebar1 #center_menu table tr td a:visited {
	color: #FFF;
}
.twoColFixLtHdr #container #mainContent #sidebar1 #center_menu table tr td a:hover {
	color: #999;
}
.twoColFixLtHdr #container #mainContent #sidebar1 #center_menu table tr td a:active {
	color: #FFF;
}
.twoColFixLtHdr #container #mainContent #address table {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFF;
	text-align: center;
	background-color: #062541;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#666;
} 
.twoColFixLtHdr #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 */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: center;
}
h1,h2,h3,h4 {
	font-weight: bold;
	color: #0A2972;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
h1 {font-size: 140%;
margin-bottom: 1em;
}
h2 {font-size: 110%;
}
h3 {font-size: 90%;
}
h4 {font-size: 70%;
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.blue {
	color: #062541;
	font-size: 10px;
}
.grey {
	color: #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.green {
	color: #057A5F;
}
.bluelg {
	color: #062541;
	font-size: 12px;
	font-weight: bold;
}
a.green {
	color: #057A5F;
	text-decoration: underline;
}
.red {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #900;
}
.crumbs {
	font-size: 9px;
	color: #999;
}
.twoColFixLtHdr .fltrt {
	color: #030133;
	background: #FFF;
	font-size: 10px;
	font-weight: bold;
	font-variant: normal;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
#center_menu {
	padding: 10px 5px;
}
.twoColFixLtHdr #container #mainContent .crumbs a {
	color: #057A5F;
	font-size: 9px;
}
.twoColFixLtHdr #container #mainContent a:link {
	color: #057A5F;
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent a:visited {
	color: #057A5F;
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent a:hover {
	color: #057A5F;
	text-decoration: underline;
}
.twoColFixLtHdr #container #mainContent a:active {
	color: #057A5F;
	text-decoration: none;
}
.norm text size {
	font-size: 90%;
}
.twoColFixLtHdr #container #footer p a {
	color: #CCC;
	text-decoration: none;
}
.twoColFixLtHdr #container #footer p a:link {
	color: #CCC;
	text-decoration: none;
}
.twoColFixLtHdr #container #footer p a:visited {
	color: #CCC;
	text-decoration: none;
}
.twoColFixLtHdr #container #footer p a:hover {
	color: #CCC;
	text-decoration: underline;
}
.twoColFixLtHdr #container #footer p a:active {
	color: #CCC;
	text-decoration: none;
}

