/* CSS Document */

	#nav-top, #nav-top ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	float: left;
	z-index: 5;
	}
	
	#nav-top a {
		display: block;
		text-decoration: none;
		color: white;
		width: 115px;
		font-weight: bold;
		font-size: 12px;
		margin: 5px;
		text-align: left;
	}
	
	#nav-top li { /* all list items */
		float: left;
		width: 125px; /* width needed or else Opera goes nuts */
		background: #333333;
	}
	
	#nav-top li ul { /* second-level lists */
		position: absolute;
		width: 125px;
		left: -999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	}
	
	#nav-top li:hover ul, #nav-top li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}


	#nav-top li a:hover {
		color : #C1363B;
	}
	
	#nav-top li.nav-top-tab
	{
		background: none;
		background-image: url(images/top-nav-folder.gif);
	}