@charset "utf-8";
/* CSS Document */
/* NAVIGATION STYLES */

ul#topnav {
	margin:0; 
	padding: 0 0 0 50px;
	float: left;
	width: 800px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 12px;
	/*background: url(topnav_stretch.gif) repeat-x;*/
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
}
ul#topnav li a {
	padding: 4px 30px;
	display: block;
	color: #f0f0f0;
	text-decoration: none;
	font-weight: bold;
}
ul#topnav li:hover { 
	/*background: #1376c9; 
	color: #CCC;*/
}
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/

ul#topnav li span {
	float: left;
	padding: 6px 0px;
	position: absolute;
	left: 0; top:23px;
	display: none; /*--Hide by default--*/
	width: 800px;
	/*background:#3A536B;*/
	font-size: .8em;
	text-align:left;
}
ul#topnav li span a
{
	color: #666;
	padding: 0 15px;
}
ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: underline;}

#toplinks
{
	font-size: 11px;
	font-weight: bold;
	text-align: right;
	padding: 5px;
}
#toplinks a
{
	text-decoration: none;
	color: #666;
}

