@charset "utf-8";
body  {
	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-color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-repeat: no-repeat;
}
.twoColFixRtHdr #container {
	width: 900px;  /* 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 none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	padding-top: 0;
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
	background-color: #FFFFFF;
} 
.menu {
	margin-bottom: 10px;

}

.twoColFixRtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	background-color: #FFFFFF;
	font-size: 24px;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bolder;
	color: #000000;
	margin-top: 10px;
	padding-top: 10px;
	margin-bottom: 3px;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 3px;
	margin-top: 0px;
}
h3 {
	font-size: 16px;
	font-weight: bold;
	color: #ED1C24;
	margin-bottom: 3px;
}
h4 {
	font-size: 14px;
	font-style: italic;
	color: #060606;
}

h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 0px;
	margin-top: 3px;
}




.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	margin-top: 10px;
}
.twoColFixRtHdr #mainContent {
	margin-top: 20;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 

.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #29ABE2;
} 
.twoColFixRtHdr #container #footer a {
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.twoColFixRtHdr #container #footer a:hover {
	color: #FFF200;
}

.twoColFixRtHdr #container #footer p {
	font-size: 9px;
	color: #000000;
}
.twoColFixRtHdr #container #mainContent a {
	color: #000000;
	text-decoration: none;
}

.twoColFixRtHdr #container #mainContent a:hover {
	color: #29ABE2;
}
.twoColFixRtHdr #container #sidebar1 a {
	color: #009900;
	text-decoration: none;
}
.twoColFixRtHdr #container #sidebar1 a:hover {
	color: #00CC00;
}

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

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type:none;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	border-right-style: none;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	float:left;
	position:relative;
	z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
	position:absolute;
	border-collapse:collapse;
	z-index:80;
	top:25px;
	left: -1px;
}

/* style all the links */
.menu a, .menu :visited {
	display:block;
	font-size:12px;
	width:148px;
	color:#000000;
	text-decoration:none;
	text-align:center;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	background-color: #29ABE2;
	font-family: Arial, Helvetica, sans-serif;
	margin-right: 1px;
	margin-left: 1px;
}
/* style the links hover */
.menu :hover{
	color:#000000;
	background-color: #FFF200;
}

/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:148px;
	height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
