/* gci navigation.css */

#navigation { /* navigation container */
	clear: both;
	width: 750px;
	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: 125px; /* width needed or else Opera goes nuts */
}

#navigation li ul { /* second-level lists */
	position: absolute;
	width: 125px;
	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: 124px;
	margin-right: 1px;
	padding: 5px 0px 5px 0px;
	display: block;
	background: #A2A2A2;
	background-image:  url("../image/navButBg.gif");
	background-repeat: repeat-x;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	text-align: center;
	text-decoration: none;
}

#navigation li ul a { /* all linked second-level list items */
	width: 124px;
	margin-right: 1px;
	padding: 3px 0px 3px 0px;
	display: block;
	background: #A2A2A2;
	background-image:  url("../image/navButBg.gif");
	background-repeat: repeat-x;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: left;
	text-indent: 5px;
	text-decoration: none;
}

#navigation li a:hover, #navigation li ul a:hover { /* linked list item hover */
	background: #F0F0F0;
	color: #911D00;
}

#navigation li:hover ul, #navigation li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.navSpacer {
	height: 10px;
}
