/* -------------------PAGE ELEMENTS------------------------------- */

body  {
	font-family: Arial, Helvetica, sans-serif;
	background: #162d56;
	margin: 3px 0 3px 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: #333333;
	font-size: 9pt;
}

.twoColFixRtHdr #container {
	width: 950px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #A9A9A9;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	display: block;
	
}

.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: 0.1em;
    line-height: 0px;
}

a:link {

	color: #2f79b1;
	text-decoration: none;

}

a:visited {

	color: #2f79b1;
	text-decoration: none;

}

a:hover {

	color: #6050b4;
	text-decoration: none;

}

a:active {
	color: #6050b4;
	text-decoration: none;
}

a img {
	border: 0;
}

li {
margin-left: 13px;

}

h3 {
	font-size: 12px;
	text-decoration: none;
	color: #162D56;
	padding-bottom: 5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;


}

h6 {

font-size: 10px;
margin: 0px;
padding: 0px;
text-decoration: none;

}

h5 {

font-size: 11px;
margin: 0px;
padding: 0px;
text-decoration: none;

}

h4 {

font-size: 12px;
margin: 0px;
padding: 0px;
text-decoration: none;

}

p {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 9pt;
	text-align: left;
	color: #000;

}



.rss_date {

font-size: 10px;

}

.rss_author {

font-size: 11px;

}


/* -------------------HEADER ELEMENTS--------------------- */

.twoColFixRtHdr #header {
	width: 950px;
	border-bottom: #162d56 solid 2px;
	background-color: #2f79b1;
margin-bottom: 8px;
height: 163px;
color:#FFFFFF;
}

.twoColFixRtHdr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}



/* -------------------RIGHT SIDEBAR ELEMENTS--------------------- */

.twoColFixRtHdr #sidebarContainer {
	width: 276px;
	float: right;
	display: inline;
	margin: 0;
	background-color: #FFFFFF;
}

.twoColFixRtHdr #search {
font-size: 12px;
padding-bottom: 5px;
}

.promobox {
	width: 267px;
	display: block;
	border: #FFFFFF solid 0px;
	margin: 0 7px 0 2px;
	text-align: center;
}
ul.side_body_list{
	list-style-type: none;
	margin: 20px 0 0 0;
	padding: 0;
	
}
ul.side_body_list li{
	float: left;
	margin: 0 10px 10px 0;
}
.cleared{
	clear: both;
}


/* -------------------MAIN CONTENT ELEMENTS--------------------- */

.twoColFixRtHdr #mainContainer {
	width: 656px;
	margin: 0;
	display: inline;
	float: left;
	background-color: #FFFFFF;
}

.twoColFixRtHdr #breadcrumbs {
	width: 100%;
	margin: 0;
	padding-left: 10px;
	padding-bottom: 5px;
	font-size: 10px;
	padding-top: 3px;
}

div#iframe_container { 
width:100%; 
overflow-x:hidden; 
overflow-y:auto; 
}

.floatright{
	float: right;
	margin-left: 20px;
}

.floatleft{
	float: left;
	margin-right: 20px;
}
.img_caption_left  {
	float: left;
	width: 260px;
	margin: 5px 20px 10px 10px;
}

.img_caption_left p {
	font-weight: normal;
	color:#333;
	text-align:center;
	padding: 5px;
	font-size: 0.8em;
	font-family: Verdana, Geneva, sans-serif;
	background-color:#CCC;
}
	
.border {
	padding: 5px;
	border: 1px solid #CCC;
}
/* -------------------FOOTER ELEMENTS--------------------- */

.twoColFixRtHdr #footer, .twoColFixRtHdr #footer a:link, .twoColFixRtHdr #footer a:visited, .twoColFixRtHdr #footer a:hover, .twoColFixRtHdr #footer a:active {
	padding: 0;
	font-size: 12px;
	width: 100%;
	background-color: #2f79b1;
	color: #FFFFFF;
	margin-top: 25px;

}




.twoColFixRtHdr #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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


.news_item {
	border-top: 2px solid #09C;
	padding-top: 20px;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}



/* -------------------IE FIXES ELEMENTS--------------------- */


[if IE 5]>

/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixRtHdr #sidebarContainer { width: 276px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixRtHdr #sidebarContainer { padding-top: 3em; }
.twoColFixRtHdr #mainContainer { zoom: 1; }
.clearfix {
    zoom: 1;     /* triggers hasLayout */
    }  /* Only IE can see inside the conditional comment
    and read this CSS rule. Don't ever use a normal HTML
    comment inside the CC or it will close prematurely. */
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */


<![endif]
