@charset "utf-8";
body  {
	font: .9em "Times New Roman", Times, serif;
	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/BG.jpg);
	background-repeat: repeat-x;
}

a:link {
	color: #0d3745;
	text-decoration: none;
	font-weight: bold;
}

a:hover
{
	color: #3f5f6e;
	text-decoration: underline;
	font-weight: bold;
}

a:visited {
	color: #a7a9ac;
	text-decoration: none;
	font-weight: bold;
}

a:visited:hover {
	color: #3f5f6e;
	text-decoration: underline;
	font-weight: bold;
}

a:active {
	color: #3f5f6e;
	font-weight: bold;	
}

.twoColFixRtHdr #container { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #FFFFFF;
} 


.twoColFixRtHdr #top {
	height: 26px;
	width: 760px;
	margin: 0;
	background-color: #0d3745;
}

.twoColFixRtHdr #topLeft {
	width: 143px;
	float: left;
}

.twoColFixRtHdr #topnav
{
	height: 26px;
	margin-left: 143px;
	text-align: right;
}

.twoColFixRtHdr #topnav ul
{
	list-style: none;
	margin-top: 0px;
	padding-top: 2px;
}

.twoColFixRtHdr #topnav ul li
{
	display: inline;
	margin: 0px;
	padding-left: 10px;
	padding-right: 10px;
}

.twoColFixRtHdr #topnav ul li a:link
{
	color: #ffffff;
	text-decoration: none;
}

.twoColFixRtHdr #topnav ul li a:hover
{
	color: #3f5f6e;
	text-decoration: none;
}

.twoColFixRtHdr #topnav ul li a:visited
{
	color: #a7a9ac;
	text-decoration: none;
}

.twoColFixRtHdr #topnav ul li a:visited:hover
{
	color: #3f5f6e;
	text-decoration: none;
}

.twoColFixRtHdr #topnav ul li a:active
{
	color: #3f5f6e;
	text-decoration: none;
}

.twoColFixRtHdr #header { 
	padding: 0;/*padding: 0 10px 0 20px;  /* 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. */
} 

.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
 /* the background color will be displayed for the length of the content in the column, but no further */
 margin-right: 10px;
 margin-top: 10px;
 /*padding: 10px;*/
 /*border: solid 1px #0d3745;
 background: #c4cdd2;*/
}

#whatsNew {
	border: solid 1px #0d3745;
    background: #c4cdd2;
	/*margin-right: 10px;*/
/* margin-top: 10px;*/
margin-bottom: 10px;
 padding-left: 10px;
padding-right: 10px;
}

.whatsNew {
	color: #0d3745;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.2em;
}

.twoColFixRtHdr #mainContent { 
	margin-right: 230px;
	margin-bottom: 20px;
	margin-top: 10px;
	/*margin: 5px 250px 20px 0; /* the right margin on this div element creates the column down the right 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-left: 10px;
	padding-right: 10px;
}

.twoColFixRtHdr #mainContent2 { 
	padding: 10px;
}
 
.twoColFixRtHdr #footer { 
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #0d3745;
	height: 26px;
	text-align: right;
} 

.twoColFixRtHdr #footer ul
{
	/*margin-left: 430px;*/
	list-style: none;
	padding-top: 5px;
}

.twoColFixRtHdr #footer ul li
{
	display: inline;
	padding-left: 10px;
	padding-right: 10px;
}

.twoColFixRtHdr #footer ul li a:link
{
	font-size: .75em;
	color: #ffffff;
	text-decoration: none;
}

.twoColFixRtHdr #footer ul li a:hover
{
	font-size: .75em;
	color: #3f5f6e;
	text-decoration: none;
}

.twoColFixRtHdr #footer ul li a:visited
{
	font-size: .75em;
	color: #a7a9ac;
	text-decoration: none;
}

.twoColFixRtHdr #footer ul li a:visited:hover
{
	font-size: .75em;
	color: #3f5f6e;
	text-decoration: none;
}

.twoColFixRtHdr #footer ul li a:active
{
	font-size: .75em;
	color: #3f5f6e;
	text-decoration: none;
}


.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;
}
