@charset "utf-8";

body  {
	font: 100% Helvetica, sans-serif, "Arial Black";
	background: #FFFFFF;
	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;
}
a {
	text-decoration: none;
}
p {
	font-family: Helvetica, sans-serif, "Arial Black";
	font-size: 0.65em;
	line-height: 1.5;
	font-weight: normal;
}
h1 {
	font-family: Helvetica, sans-serif, "Arial Black";
	font-size: 1em;
	color: #666;
}
#container  {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #EBEBEB;
	margin: 1em auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #CDCDC8;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
h2 {
	color: #666;
	font-size: 0.9em;
	font-weight: normal;
}
#header  {
	margin-top: 0px;
	margin-bottom: 0px;
} 

#header  h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.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: 0px;
}
.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;
}
#main_navbar {
	width: 153px;
	height: 196px;
	padding: 0;
	margin: 0;
	background-color: #1D2141;
}
#main_navbar li {
	list-style-type: none;
	height: 28px;
	margin: 0;
	padding: 0;
}
#main_navbar ul {
	padding: 0;
	margin: 0;
}
#main_navbar #home a {
	border: none;
	}
#main_navbar   a  {
	display: block;
	height: 28px;
	padding-left: 15px;
	font: normal .5em/3em Helvetica, sans-serif, "Arial Black";
	color: #9EABE6;
	text-transform: uppercase;
	padding-top: 2px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9EABE6;
	background: url(images/rollover_combo.png) no-repeat;
	background-position: 0 -29px;
	}
	
#main_navbar a:hover {
	color: #fff;
	background: url(images/rollover_combo.png) no-repeat;
	}

#main_navbar   a.first   {
	cursor: default;
	color: #9EABE6;
	}

#main_navbar a.current, #main_navbar a.current:hover, #main_navbar a.current:active {
	background: url(images/rollover_combo.png) no-repeat;
	background-position: 0 -29px;
	color: #9EABE6;
	cursor: default;
	}



#navlinks {
	background-color: #1D2141;
	margin-top: 0px;
	margin-bottom: 0px;
	width: 800px;
	clear: both;
}
#navlinks ol {
	text-align: center;
	font-size: 0.65em;
	font-weight: normal;
	line-height: 1.5;
	padding: 0.75em 0;
	margin: 0;
}
#navlinks li {
	display: inline;
	border-right: 1px solid #F15A25;
	margin-right: 0.5em;
	padding-right: 0.5em;
}
#navlinks li.last {
	border-right: none;
}
#navlinks a {
	color: #F15A25;
}
#navlinks a:hover {
	color: #00CC66;
}
#navlinks a.currentnav, #navlinks a.currentnav:hover, #navlinks a.currentnav:active {
	color: #F15A25;
	cursor: default;
}

#footer  {
} 
#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 */
}
#footerlinks {
	background-color: #F15A25;
	text-align: center;
	font-size: 0.65em;
	padding: 0.5em;
	font-weight: normal;
	margin-bottom: 0px;
}
#footerlinks li {
	display: inline;
	margin-right: 0.5em;
	padding-right: 0.75em;
	line-height: 1.5em;
}
#footerlinks a {
	color: #1D2141;
}
#footerlinks a:hover {
	color: #FFFFFF;
}
#footerlinks a.currentfoot, #footerlinks a.currentfoot:hover, #footerlinks a.currentfoot:active {
	color: #1D2141;
	cursor: default;
}
