

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++ 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:0px; 
	position:relative;
	float:left;
	clear:left; 
	height:30px;
	width:730px; 
	z-index:2; 
}
		
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 100px;
	padding:6px;
	color:#ffffff;
	text-decoration:none;
}

#nav li a {
	text-align:center;
	font-weight:bold;
	width:100px;
	w\idth:88px;
}

#nav li a:hover {
	background-color: #00CCFF;
	width:100px;
	w\idth:88px;
	cursor:pointer;
}

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

#nav li ul { /* second-level lists */
	position: absolute;
	background: #00b6de;
	width: 140px;
	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;
	border-top:1px solid #ffffff;
}

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

#nav li ul li a:hover {
	background-color:#8cc63f;
	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;
}
