@charset "UTF-8";/* CSS Document */body  {	font: 100%  Arial, Verdana, Helvetica, sans-serif;	background: #011a30;	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: #000000;}#container {	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	background:#1f5079;	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */	border: 0px solid #ffffff;	text-align: left; /* this overrides the text-align: center on the body element. */	color: #FFF;} /* Tips for absolutely positioned sidebars with header and footer:1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.*/#header { 	height: 168px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */	width:341px;	background: #1f5079;	clear:both; 	display:inline;	padding: 0px 0 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */} #header2 { 	height960px;	background: #1f5079;	clear:both; 	display:inline;	padding: 0px 0 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */}#navigation { 	height: 50px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */	width:200px;	margin: 0px 200px 20px 20px;	background: #1f5079;	clear:both; 	display:inline;	padding: 0px 0 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */} #content { 	margin: 0px 250px 0px 292px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	padding: 0 0px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	float:left;	display:inline;			min-height: 420px;  height:auto !important;  height:420px;}#content2 { 	width: 400px;	margin: 0px 50px 0px 55px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	padding: 0 0px 80px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	float:left;	display:inline;			min-height: 600px;  height:auto !important;  height:600px;}#content_gallery { 	width: 880px;	margin: 0px 50px 0px 55px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	padding: 0 0px 80px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	float:left;	display:inline;			min-height: 600px;  height:auto !important;  height:600px;}#left_sidebar { 	width: 377px;	margin: 5px 0px 0px 42px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	padding: 0 0px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	float:left;	min-height: 529px;	display:inline;}#footer { 	height: 20px;	width:960px;	margin: 10px 0px 0px 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	background-color:#011a30;	clear:both;} #footer_content { 	height: 20px;	margin: 10px 0 0 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	font: Arial,verdana,helvetica,sans-serif;	font-size: 12px;	color: #bcbcbc;	float:left;	display:inline;}#footer_content a { 	color: #fff;	text-decoration: none;}#footer_content a:hover { 	color: #1f5079;	text-decoration: none;}.thrColAbsHdr #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: 0px 0; /* 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;}h1{ font: 22px Times,serif;  font-style:italic;; color: #bcbcbc; line-height: 2; margin: 0px 0 10px 0; padding: 0px;}h2{	font: 15px Arial,verdana,helvetica,sans-serif;	color: #bcbcbc;	line-height: 2;	margin: 0px 0 5px 0;	padding: 0px;	font-weight: bold;}p{ font: 12px Arial, verdana,helvetica,sans-serif; color: #ffffff; line-height: 1.4; margin: 10px 0 5px 0; padding: 0px;}p a { font: 12px Arial, verdana,helvetica,sans-serif; color: #bcbcbc; line-height: 1.4; margin: 10px 0 5px 0; padding: 0px; text-decoration:none;}/*p a:visited { font: 12px Arial, verdana,helvetica,sans-serif; color: #666666; line-height: 1.3; margin: 10px 0 5px 0; padding: 0px; text-decoration:none;}*/p a:hover {	font: 12px Arial, verdana,helvetica,sans-serif;	color: #011a30;	line-height: 1.4;	margin: 10px 0 5px 0;	padding: 0px;	text-decoration:none;}#space_large { height:260px; border:2px #ffffff; }#space_medium { height:100px; border:2px #ffffff; clear:both;}#space_small { height:20px; border:0px #ffffff;clear:both;}.links {color: #999999;font: 12px Arial,verdana,helvetica,sans-serif;text-align: left;}.quote {color: #ffffff;font: 14px Arial,verdana,helvetica,sans-serif;text-align: left;}#left_sidebar .nav_left {color: #999999; font: 15px Arial,verdana,helvetica,sans-serif; color: #666666; line-height: 1.3; margin: 25px 0 5px 0; padding: 0px;}#left_sidebar .nav_left a {color: #999999; font: 15px Arial,verdana,helvetica,sans-serif; color: #666666; line-height: 1.3; margin: 25px 0 5px 0; padding: 0px; }#left_sidebar .nav_left a:hover {color: #1b90be;}.leftNavCurrent {	border-bottom:5px solid #1b90be;	width:100%;	width:95px;	}#nav {	margin:0 0 0px 0px;	padding:0;	background:#1f5079;	width:400px;	float:left;	height:15px;	display:inline;}#nav li {	display:inline;	padding:0;	margin:0;}#nav a {	color:#bcbcbc;	background:#1f5079;	padding:0px 10px 0px 10px;	float:left;	width:auto;	border-right:1px solid #fff;	text-decoration:none;	font-size:15px;	height:15px;	font-family:times,serif;	font-style:italic;	font-weight:bold;	margin-top:5px;}/*#nav a:visited {	color:#999999;	background:#fff;	text-decoration:none;}*/#nav a:hover {	color:#011a30;	background:#1f5079;}#nav .firstNav a {}#nav .lastNav a {	border-right:none;}#nav a:active {	background:#1f5079;	color:#1b90be;}#nav li.current a {	background:#1f5079;	color:#1b90be;}/*#nav .current  {	background:#fff;	color:#1b90be;}*//* List */ul.fancyList {margin:0 0 0 -14px;padding:0;color:#666666;font-size:12px;line-height: 1.3;position: relative;}ul.fancyList li {margin:0 0 5px 0;padding:0;list-style:disc;list-style-position: inside; }table table{background-color:transparent;} 