@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-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/body-bg2.jpg);
}
#container  {
	width: 907px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #15161a;
	margin: 20px auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	border-top: 1px solid #6CF;
	border-right: 1px solid #6CF;
	border-bottom: 1px solid #6CF;
	border-left: 1px solid #6CF;
} 
#header    {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 9px 0px 0px 9px;
	background: #15161a;
	margin: 0 9px 0 0;
}
#navigation {
	background-image: url(images/nav_bg.jpg);
	padding: 0px 0 0 10px;
	margin: 0px 9px 9px 9px;
	height: 28px;
	width: 879px;
}
#navLinks {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	width: 682px;
	float: right;
	padding: 7px 0 0 8px;
	color: #0099FF;
}
#navigation #navLinks #MenuBar1 a {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #59BBFF;
	text-decoration: none;
}
#mainContent a {
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
#mainContent a:visited {
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
#mainContent a:hover {
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFF66;
}
#mainContent a:active {
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFF66;
}
#navigation #navLinks #MenuBar1 a:visited {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #59BBFF;
	text-decoration: none;
}
#navigation #navLinks #MenuBar1 a:hover {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFF66;
	text-decoration: none;
}
#navigation #navLinks #MenuBar1 a:active{
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFF66;
	text-decoration: none;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 167px; /* 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: #2F3338; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	height: 305px;
	margin: 0px 9px 9px 0px;
}
#sidebar1 a {
	color: #59BBFF;
	font: normal 11px/24px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
#sidebar1 a:visited {
	color: #59BBFF;
	font: normal 11px/24px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
#sidebar1 a:hover {
	color: #FFFF66;
	font: normal 11px/24px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
#sidebar1 a:active {
	color: #FFFF66;
	font: normal 11px/24px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
#sidebar1  h3    {
	font: normal 14px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
#sidebar1  p    {
	font: normal 11px/24px Verdana, Arial, Helvetica, sans-serif;
	color: #59BBFF;
}
#mainContainer {
	font-family: Arial, Helvetica, sans-serif;
	height: 335px;
	padding: 0 10px 9px 10px;
}
#mainContent  {
	padding: 15px 21px 15px 20px;
	height: 305px;
	width: 648px;
	float: right;
	background: #2F3338;
	margin: 0px 0px 9px 1px;
} 
.mainLinks {
	font-family: Arial, Helvetica, sans-serif;
	float: right;
	width: 691px;
	margin: 0 9px 0 0px;
	height: 102px;
}
#mainContent  p    {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
#mainContent  h3    {
	font: normal 14px Verdana, Arial, Helvetica, sans-serif;
	color: #59BBFF;
}
#footer  {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-image: url(images/footer_bg.jpg);
	height: 28px;
	margin: 0px 9px 9px 9px;
	vertical-align: middle;
} 
#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: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #888;
}
.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;
}
.underline {
	border-bottom: 1px solid #59BBFF;
}
