/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-image: url(/images/bkg.jpg);
	background-color: #055270;
	background-repeat: repeat-x;
}
.twoColFixLtHdr #container {
	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #d1e1ed url(/images/blue-Header.jpg) no-repeat center top;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
} 
.twoColFixLtHdr #header {
	padding: 0px 0px 20px 5px;  /* 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. */
	width: 610px;
	height: 220px;
	float: right;
} 
.twoColFixLtHdr #header h1 {
	margin: 0px; /* 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: 39px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "Times New Roman", Times, serif;
	font-size: 28px;
	color: #FFFFFF;
	font-weight: bold;
}
.twoColFixLtHdr #sidebar1 {
	width: 192px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 28px 0px 0px 0px;
	color: #3B5D80;
	float: left;
	background-color: #E3EEF2;
	background-image: url(/images/blue-sideBKG.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}
.twoColFixLtHdr #container #subAd1 {
	width: 325px;
	float: left;
	margin-bottom: 20px;
}
.twoColFixLtHdr #container #subAd2 {
	float: right;
	width: 325px;
}
.twoColFixLtHdr  #sidebar1  p  {
	padding-right: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding-left: 15px;
}
.twoColFixLtHdr #sidebar1 img {
	padding: 5px;
	border: 1px solid #709BBB;
}
.twoColFixLtHdr #sidebar1 h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #395B7E;
	padding-left: 15px;
}
.HeadlineText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #395B7E;
	padding-left: 15px;}
.HeadlineTagline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #395B7E;
	padding-left: 15px;
	font-style:italic;}

.twoColFixLtHdr #mainContent {
	margin: 0px 0px 0px 200px; /* 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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #3B5D80;
} 
#mainContent h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #3B5D80;
	margin: 1px;
	padding: 1px;
}


.twoColFixLtHdr #footer {
	padding: 0 10px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD url(/images/blue-footerBKG.jpg) center top;
	color: #E3EEF2;
} 

.twoColFixLtHdr #footer a {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	color: #FFFFFF;
} 

.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-size: 12px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
}
.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;
}

#top_nav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	float: right;
	padding-right: 10px;
	height: 240px;
}
#top_nav a:link, #top_nav a:visited{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration:none;
}
#top_nav a:hover, #top_nav a:active{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration:underline;
}

.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;
}

/* #mainContent table {
	border: thin solid #000066;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
}
*/

#mainContent table a:link, #mainContent table a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#333399;
	
	
}
 
#mainContent table a:hover, #mainContent table a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color: #3399CC;
	text-decoration:underline;
}
.mls {
display:none;
 }
 
 /* Calculators */

.cTimeValue P{
color:#314d64; 
font-family:arial,san-serif;
font-size:9pt;}

.cTimeValue TD{
color:#314d64; 
font-family:arial,san-serif;
font-size:9pt;}

.cTimeValue OL{
color:#314d64;
font-family:arial,san-serif;
font-size:9pt;}

.cTimeValue UL{
color:#314d64; 
font-family:arial,san-serif;
font-size:9pt;}

.cTimeValue Legend{
color:#314d64; 
font-family:arial,san-serif;
font-size:9pt;}

big{color:#314d64; 
font-family:arial,san-serif;
font-size:9pt;} 

.cTimeValue a:link { text-decoration: none; font-weight:bolder; font-size:11px; font-family:Verdana, Arial, Helvetica, sans-serif;color: #003366;}
.cTimeValue a:active { text-decoration: none;font-weight:bold; font-size:11px; font-family:Verdana, Arial, Helvetica, sans-serif;color: #003366;}
.cTimeValue a:visited {
	text-decoration: none;
	font-weight:bold;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #0099FF;
} 
.cTimeValue a:hover { text-decoration: underline;font-weight:bold; font-size:11px; font-family:Verdana, Arial, Helvetica, sans-serif;color: #336699;}

h1 {color:#03335b; font-family:verdana,arial,san-serif;font-size:18pt;}
h2 {color:#03335b; font-family:verdana,arial,san-serif;font-size:16pt;}
h3 {color:#03335b; font-family:verdana,arial,san-serif;font-size:14pt;}
h4 {color:#03335b; font-family:verdana,arial,san-serif;font-size:12pt;}
h5 {color:#03335b; font-family:verdana,arial,san-serif;font-size:10pt;}

/* End Calculators */
 
 
 
</style>
[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 230px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 28px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]

