@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #999999;
	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;
}
.threeColumn #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* topheader */

.threeColumn #topheader {
	background: #3366CC;
	padding: 15px 0 0 0;  /* 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. */
	color: #FFFFFF;
} 
.threeColumn #topheader 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 */
}

.threeColumn #topheader a:link {
	text-decoration: none;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	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 */
    }
	
.threeColumn #topheader a:visited {
	text-decoration: none;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	margin: 0;
    }
	
.threeColumn #topheader a:hover {
	text-decoration: underline;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	margin: 0;
    }
	
.threeColumn #topheader a:active {
	text-decoration: none;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	margin: 0;
    }

/* mainheader */

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


/* sidebar1 */

.threeColumn #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}

.threeColumn #sidebar1 img.button {
	float: left;
	padding: 0px 0px 7px 0px;
	border: 0px;
	margin: 0px;
}

.threeColumn #sidebar1 img.icon {
	float: left;
	padding: 0px 5px 0px 0px;
	border: 0px;
	margin: 0px;
}

.threeColumn #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	color:#333333;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	text-align:left;
	text-decoration:none;
	margin-bottom: 3px;
	margin-left: 0px;
	margin-top: 8px;
	margin-right: 0px;
}

#sidebar1 a:link {
	text-decoration: none;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
    }
	
#sidebar1 a:visited {
	text-decoration: none;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
    }
	
#sidebar1 a:hover {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
    }
	
#sidebar1 a:active {
	text-decoration: none;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
    }

#sidebar1 a.more:link {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#sidebar1 a.more:visited {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#sidebar1 a.more:hover {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#sidebar1 a.more:active {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }

/* sidebar2 */

.threeColumn #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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-color: #EEEEEE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px 5px 0px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
	border-left: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	font-family: Arial, Helvetica, sans-serif;
	color: #0033CC;
	font-weight: bold;
}

.threeColumn #sidebar2 img.rightbutton {
	float: none;
	padding: 10px 0px 0px 20px;
	border: 0px;
	margin: 0px;
}

.threeColumn #sidebar2 h3 {
	font-family: Arial, Helvetica, sans-serif;
	color:#333333;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	text-align:left;
	text-decoration:none;
	margin-bottom: 5px;
	margin-left: 10px;
	margin-top: 5px;
	margin-right: 10px;
}


/*********** #sidebar2 link styles ***********/

#sidebar2 ul a:link, #sidebar2 ul a:visited {
	display: block;
	color:#0033CC;
	text-decoration: none;
	padding-right:7px;
}

#sidebar2 ul {
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0;
}
#sidebar2 li {
	height: 1em;
	
}


/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#sidebar2 li {border-bottom: 1px solid #EEEEEE;}

/* fix for browsers that don't need the hack */
html>body #sidebar2 li {border-bottom: none;}


/*********** #sectionLinks styles ***********/

#sectionLinks{
	position: relative;
	margin: 0px;
	padding: 0px;
	border-bottom: 1px solid #CCCCCC;
	font-size: 85%;
}


#sectionLinks a {
	display: block;
	border-top: 1px solid #CCCCCC;
	padding: 3px 0px 2px 10px;
	text-decoration: none;
	font-style:normal;
	font-weight:normal;
	font-size:12px;
}

#sectionLinks a:hover{
	background-color: #DDDDDD;
}



/* mainContent */

.threeColumn #mainContent {
	margin: 0px 175px 20px 190px; /* 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. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #000000;
	
} 

#homenews h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 2px;
	margin-top: 12px;
	}

#homenews h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	text-decoration:underline;
	margin-bottom: 8px;
	margin-top: 12px;
	}
	
#homenews h3 {
	font-family: Arial, Helvetica, sans-serif;
	color:#333333;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	text-align:left;
	text-decoration:none;
	margin-bottom: 2px;
	margin-top: 2px;
	}
	
#homenews p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 130%;
	margin-top: 0px;
	margin-bottom: 8px;
	text-align: left;
}

#homenews p.date {
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
	font-size: 11px;
	font-weight: normal;
	line-height: 125%;
	margin-top: 0px;
	margin-bottom: 2px;
    }


#homenews a:link {
	text-decoration: none;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 2px;
	margin-top: 14px;
    }
	
#homenews a:visited {
	text-decoration: none;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 2px;
	margin-top: 14px;
    }
	
#homenews a:hover {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 2px;
	margin-top: 14px;
    }
	
#homenews a:active {
	text-decoration: none;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 2px;
	margin-top: 12px;
    }
	
	
#homenews a.more:link {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#homenews a.more:visited {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#homenews a.more:hover {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#homenews a.more:active {
	text-decoration: underline;
	color: #0033CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
    }
	
#homenews img.nopad {
	padding: 0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	border:none;
	float:none;
	margin-left:auto;
	margin-right:auto;
}

	
.threeColumn #mainContent img {
	float: left;
	padding: 0px 0px 0px 0px;
	border: 0px;
	margin: 0px 10px 0px 0px;
}

.threeColumn #footer {
	padding: 8px 20px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #3366CC;
	color:#FFFFFF;
} 

.threeColumn #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: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	line-height: 125%;
	text-align: center;
}
.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;
}
.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;
}

/*********************TABLES*********************/

p.tabletext {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 110%;
	margin-top: 6px;
	margin-bottom: 6px;
	text-align: center;
}

p.tablehead {
	font-family:Arial, Helvetica, sans-serif;
	line-height: 110%;
	font-weight: bold;
	font-size:12px;
	margin: 8px;
	text-align: center;
}



/*********************RULEDTABLES*********************/
	
table.ruled-table {
	border-collapse:collapse;
	border-width: 2px;
	border-style: solid;
	border-color: #3366CC;
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 10px;
	margin-bottom:10px;
}

table.ruled-table th {
	border-width: 1px;
	padding: 4px;
	border-style: solid;
	border-color: #FFFFFF;
	background-color: #3366CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	vertical-align: middle;
	height: auto;
}

table.ruled-table tr.d0 {
	background-color:#FFF;
}

table.ruled-table tr.d1 {
	background-color:#CCC;
}

table.ruled-table td {
	border-width: 1px;
	border-collapse:collapse;
	padding-top:6px;
	padding-bottom:6px;
	padding-left:10px;
	padding-right:10px;
	border-style: solid;
	border-color: #666666;
	margin-bottom: 8px;
	margin-top: 14px;
	height: auto;
}
/***********************Unruled TABLE**********************/

table.unruled-table {
	border-collapse:collapse;
	border-width: 2px;
	border-style: solid;
	border-color: #3366CC;
	background-color: white;
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	margin-top: 10px;
	margin-bottom:10px;
}

table.unruled-table th {
	border-width: 1px;
	padding: 0px;
	border-style: solid;
	border-color: #FFFFFF;
	background-color: #3366CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	vertical-align: middle;
	height: auto;
}

table.unruled-table tr.d0 {
	background-color:#FFF;
}

table.unruled-table tr.d1 {
	background-color:#CCC;
}

table.unruled-table td {
	padding-top:6px;
	padding-bottom:6px;
	padding-left:10px;
	padding-right:10px;
	margin-bottom: 8px;
	margin-top: 14px;
	vertical-align: middle;
	height: auto;
}


/***********************NO BORDERS NO RULES TABLE**********************/

table.noborder {
	border-collapse: collapse;
	border: none;
	border-width: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 10px;
	margin-bottom:10px;
	
}

table.noborder tr.d0 {
	background-color:#FFF;
}

table.noborder tr.d1 {
	background-color:#CCC;
}

table.noborder th {
	border:none;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	vertical-align: middle;
	height: auto;
}


table.noborder td {
	border-width: 0px;
	border:none;
	padding-top:6px;
	padding-bottom:6px;
	margin-bottom: 8px;
	margin-top: 14px;
}

td.search-bar{
background: #000000;
color: #CFCFCF;
text-align: center;
vertical-align: middle;
padding:0px;
margin-bottom:0px;
}

form.search-form{
text-align: center;
vertical-align: middle;
padding:0px;
margin-bottom:0px;
}








