@charset "utf-8";
/* CSS Document */

#nav {
	position: absolute;
	right: 50px;
	bottom: 30px;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

	#nav a {
		display: block;
		width: 120px;
		height: 1.5em;
		line-height: 1.5em;
		text-align: center;
		color: #000;
		text-decoration: none;
	}
	
	#nav a:hover {
		color: #fff;
	}
	
	#nav li { /* all list items */
		float: left;
		width: 120px; /* width needed or else Opera goes nuts */
		border-left: 1px solid #fff;
	}
	
	#nav li.one, #nav li.one a {
		width: 80px;
		border: none;
	}
	
	#nav li.two, #nav li.two a {
		width: 150px;
	}
	
	#nav li.three, #nav li.three a {
		width: 150px;
	}
	
	#nav li.four, #nav li.four a {
		width: 110px;
	}
	
	#nav li ul { /* second-level lists */
		position: absolute;
		width: 250px;
		left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
		margin-left: -1px;
		background: url(../images/nav_dd_bg.gif) bottom no-repeat;
		padding-bottom: 0.5em;
	}
	
		
	
		#nav li.two ul li, #nav li.two ul li a {
			width: 248px;
		}
	
	
		#nav li ul li a {
			font-size: 0.75em;
			height: 1.6em;
			line-height: 1.6em;
			text-align: left;
			text-indent: 0.5em;
			border: none;
			border-bottom: 1px solid #EAC35E;
		}
	
	#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
	
				#nav li:hover , #nav li.sfhover  {
				background: #26769B;
			}