/* GFX navigation.css */

#navigation { /* navigation container */
	clear: both;
	width: 780px;
	margin: 0px 0px 0px 0px;
}

#navigation, #navigation ul { /* all lists */
	margin: 0;
	padding: 0;
	list-style: none;
}

#navigation li { /* all list items */
	float: left;
	width: 130px; /* width needed or else Opera goes nuts */
}

#navigation li ul { /* second-level lists */
	position: absolute;
	width: 130px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#navigation li a { /* all linked list items */
	width: 129px;
	margin-right: 0px;
	display: block;
	background: #316796 repeat-x;
	color:#FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:11px; text-align:center ; text-decoration:none; padding-left:0px; padding-right:0px; padding-top:2px; padding-bottom:2px; background-repeat:repeat-x
}

#navigation li ul a { /* all linked second-level list items */
	width: 129px;
	margin-right: 1px;
	display: block;
	background: #316796 repeat-x;
	color:#FFFFFF; font-family: Helvetica, Arial, Helvetica, sans-serif; font-size:11px; text-align:left; text-indent:5px; text-decoration:none; padding-left:0px; padding-right:0px; padding-top:1px; padding-bottom:1px; background-repeat:repeat-x
}

#navigation li a:hover, #navigation li ul a:hover { /* linked list item hover */
	background: #C0C0C0;
	color: black;
}

#navigation li:hover ul, #navigation li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.navSpacer {
	height: 1px;
}