/* 	p Element selector
	#p ID selector
	.p Class Selector 
*/
#nav  { 
	background-color: #ddd4b9;
	font-size: .9em;
	padding: 6px 8px 10px 8px;
	margin: 0;
	list-style: none;
	line-height: 1.5em;
	height: 16px;
	border-bottom: 1px solid #ccc;
	
	display: block;
	color: #1e4646;
	font-weight: bold;
}

#nav ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	margin: 0;
	display: block;
	text-decoration: none;
	list-style: none;
	color: #1e4646;
	font-weight: bold;
}

#nav li {
	margin: 0;
	float: left;
	list-style: none;
	padding: 0px 15px;
	/*width: 80px; */
}
			/*#nav li.right {border: none;}*/

#nav li a:hover  {
	color: #6e6050;
	font-size: 120%;
	list-style: none;
	}

#nav li ul { /* second-level lists */
	margin: 0;
	position: absolute;
	background: #ddd4b9;
	list-style: none;
	width: 120px;
	padding: 0px 5px;
	line-height: 1.4em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li  {
	padding: 5px 0px;
	margin: 0;
	list-style: none;
	border-bottom: 1px solid #ccc;
	border-right: none;
	width: 120px;
}

#nav li ul li a:hover {
	font-size: 110%;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
