

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++ N A V I G A T I O N   C S S   F I L E +++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* NAVIGATION MENU ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/*General styles*/

.navigation { 
	top:0px; 
	left:30px;
	margin-top:20px; 
	position:relative;
	float:left;
	clear:left; 
	height:100%;
	z-index:2; 
}

.no-click {
	cursor:default;
}
		
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	float:left;
	width:160px;
}

#nav a {
	display: block;
	width: 140px;
	padding:6px;
	padding-top:8px;
	padding-bottom:8px;
	color:#ffffff;
	text-decoration:none;
}

#nav li a {
	text-align:left;
	width:140px;
	w\idth:128px;
	text-transform:uppercase;
}

#nav li a:hover {
	width:140px;
	w\idth:128px;
	cursor:pointer;
	color:#4b4d50;
	background-color:#a99f0d;
}

#nav li { /* all list items */
	position:relative;
	float: left;
	width: 140px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#a99f0d;
	width: 140px;
	margin-left:140px;
	margin-top:-28px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li {
	width:140px;
}

#nav li ul li a {
	display:block;
	width:128px;
	padding:6px;
	padding-bottom:8px;
	padding-top:8px;
	text-align:left;
	font-weight:normal;
	text-transform:none;
}

#nav li ul li a:hover {
	background-color:#a99f0d;
	width:140px;
	w\idth:128px;
	cursor:pointer;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 140px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
