@charset "UTF-8";

body {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #333;
	text-align: center;
        margin: 0px;
	padding: 0px;
}





/* ------------------Netforum page content styles--------------- */

.netforum_page_title {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 21px;
	color: #00477D;
}
img.light {
	outline: 5px solid #ddd;
	border-top: 1px solid #fff;
	padding: 10px;
	background: #f0f0f0;
}
p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight:normal;
	font-size: 12pt;
	line-height: 14pt;
	color: #000;
	padding: 0px;
}
hr {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12pt;
        line-height: 1pt;
        font-weight: normal;
	color : #FFFFFF;
        text-align: center;
	margin-top: 0pt;
	margin-bottom: 0pt;
	border-top-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #666;
}
h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14pt;
	line-height: 16pt;
	font-weight: normal;
	color: #00477D;
	text-align: center;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}
h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14pt;
	line-height: 16pt;
	font-weight: bold;
	color: #00477D;
	text-align: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}
h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16pt;
	line-height: 16pt;
	font-weight: bold;
	color: #00248E;
	text-align: left;
	text-transform: uppercase;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}
a {
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bold;
	text-decoration: underline;
	color: #00248E;
}
a:hover{
	color: #c36;
}
li {list-style:none;
        font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
	line-height: 14pt;
        font-weight: normal;
	color: #000;
}
li a {
	font-weight:normal;
	color: #00248e;
}
li a:hover{
    color: #000;
}
.board p{
	margin-bottom: 2px;
}

/*----------------------Top Navigation Bar Starts ------------------*/

ul#topnav {
	margin: 0; padding: 0;
	float: left;
	width: 970px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 10pt;
	background: url(topnav_stretch.gif) repeat-x;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #555; /*--Divider for each parent level links--*/
}
ul#topnav li a {
	padding: 10px 10px;
	display: block;
	color: #f0f0f0;
	text-decoration: none;
}
ul#topnav li:hover { background: #810541 url(topnav_active.gif) repeat-x; }
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/

ul#topnav li span {
	float: left;
	padding: 10px 0;
	position: absolute;
	left: 0; top:31px;
	display: none; /*--Hide by default--*/
	width: 970px;
	background: #810541;
	color: #fff;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: underline;}
}
	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#1376c9 url(topnav_active.gif) repeat-x'}); //Add background color and image on hovered list item
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

});

<script type="text/javascript">
$(document).ready(function() {

	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#1376c9 url(topnav_active.gif) repeat-x'}); //Add background color and image on hovered list item
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

});
</script>

/*-----------------------Top Navigation Bar Ends----------------*/


h2.acc_trigger {
	padding: 0;	margin: 0 0 5px 0;
	background: url(h2_trigger_a.gif) no-repeat;
	height: 46px;	line-height: 46px;
	width: 500px;
	font-size: 2em;
	font-weight: normal;
	float: left;
}
h2.acc_trigger a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 0 0 50px;
}
h2.acc_trigger a:hover {
	color: #ccc;
}
h2.active {background-position: left bottom;}
.acc_container {
	margin: 0 0 5px; padding: 0;
	overflow: hidden;
	font-size: 1.2em;
	width: 500px;
	clear: both;
	background: #f0f0f0;
	border: 1px solid #d6d6d6;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.acc_container .block {
	padding: 20px;


<!--------------------------------Accordion Ends Here-------->

.top_menu {
	
}
.top_menu ul{
        style: none;
	height: 50px;
	text-align: center;
	padding-top: 10px;
	margin: 0px;
	
}
.top_menu ul li{
	display: inline;
	padding: 10px;
}
.top_menu ul li a{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
text-decoration:none;
 padding:5px 0;
 width:100px;
 background:#485e49; 
color:#eee; float:left; 
text-align:center; 
border-left:1px solid #fff; }
}
.top_menu ul li a:hover{
        background: #   ;
	color: #23238e;
}
#menuNews {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
	text-align: center;
}
#menuNews li {
	display: inline;
}
#menuNews a {
	color: #C0D8FE;
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;

/*-------------------Menu Bottom------------------*/
}
#menuBottom {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9pt;
	line-height: 16pt;
	font-weight: normal;
	color: #f0f0f0;
	background-color: #;
	text-align: center;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
}
#menuBottom li  {
	display: inline;
        float: left;
        color: #f0f0f0;
}
#menuBottom a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9pt;
	line-height: 16pt;
	font-weight: normal;
	text-decoration: none;
        color: #f0f0f0;
}


*/------------------------
.title1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12pt;
	line-height: 18pt;
	font-weight: bold;
	color: #c36;
	text-align: center;
	margin-bottom: 9px;
}
.title1LeftAlign {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #c36;
	text-align: left;
	font-size: 12px;
	line-height: 18px;
}
.title1MainHomePage {
	font-family: "Arial Black", Gadget, sans-serif;
	font-weight: bold;
	color: #C36;
	text-align: left;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 1px;
}
.title2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #004B84;
	line-height: 14px;
	text-align: left;
}
.title2 ul {
	line-height: 16px;
	margin-left: -30px;
}
.title2 ul li{
	line-height: 20px;
	list-style-type: disc;
	color: #004B84;
}
.title2 ul li a {
	line-height: 16px;
	list-style-type: circle;
	color: #004B84;
}
.title3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height: 12px;
	font-weight: bold;
	color: #004B84;
	text-align: left;
	text-transform: uppercase;
}
.text1 {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12pt;
	line-height: 16px;
	color: #333;
	text-align: left;
}
.text1bold {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #333;
	text-align: left;
	font-weight:bold;
}
.text2 {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height: 13px;
	color: #333;
	text-align: left;
}

/* SD page styles */

#center_textbox {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height: 13px;
	color: #333;
	background-color: #FFF;
	text-align: left;
	padding: 10px;
	border: 1px solid #C36;
	margin: 10px;
}

#center_textbox a{
	color:#004B84;
}
#center_textbox a:hover {
	color: #c36;
}



/*-------------------Left Side Navigation---------------------*/

#left {
	margin-bottom: 10px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	width: auto;
	margin-left: 0px;
	padding-bottom: 10px;
	}

#left ul {
	list-style: none;
	border: none;
	margin: 0;
	padding: 0;
		}

#left li {
	border-bottom: 1px solid #90bade;
	margin: 0px 0px 3px 0px;
		}

#left li a {
	display: block;
	padding: 5px 5px 5px 5px;
	background-color: #2175bc;
	color: #fff;
	text-decoration: none;
		}
#left li a:hover {
	background-color: #2586d7;
	color: #c36;
		}

.left table td{
	height:50px;
	background:#CF8DA2;
	font:12px/14px;
	text-align:center;
}

.left table td a{
}

.left table td a:hover{
	color: #069;
}
#head_news_advisor{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 28px;
	font-weight:bolder;
	color: #004B84;
	margin-top: 2px;
	margin-bottom: 3px;
}
.heading2_calendar {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #004B84;
	line-height: 14px;
	text-align: center;
}
.heading3_calendar {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
	color: #666;
	text-align: center;
}
#calendar{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 18pt;
	font-weight: normal;
	color: #E9F1F
	text-align: left;
	margin-left: 0px;
	padding-left: 10px;
	width: 135px;
	padding-right: 5px;
}
#calendar ul{
	margin-left: 0px;
	padding-left: 0px;
}
#calendar ul li{
	padding: 5px;
}
#calendar ul li a{
	color: #004B84;
	padding: 5px;
}
.date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
}
#calendar ul li a:hover{
	color: #C93167;
}
.calendar_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 18pt;
	font-weight: normal;
	color: #232385;
	text-align: center;
}
#leftBox {
	background-color: #FFF;
	text-align: center;
	padding: 3px;
	margin-top: 10px;
	margin-right: 3px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: 1px solid c36;
}
#menuNews li a:hover {
	color: #FFF;
}

<!------------------------PhotoBoxes---------------------->
.photoBox {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	border: 0px none #C36;
	padding: 5px;
	float: right;
	text-align: left;
	margin: 5px;
	background-color: #;
}
.photoBox p a {
	font-size: 9px;
	color: #004B84;
	text-align: left;
}
.photoBoxLeft {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	border: 0px none #C36;
	padding: 5px;
	text-align: left;
	background-color: #;			margin-top: 0px;
	margin-right: 35px;
	margin-bottom: 0px;
	margin-left: 25px;
	height: 150px;
	width: 200px;
	float: left;
}
