#navOuterDiv{
width:630px;
top:0px;
left:250px;
position:relative;
z-index:20
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
}
#nav li a,#nav li ul li a {
		color : #fff;
		text-transform:uppercase;
		text-decoration : none;
		padding : 0 0.5em;
		font-size : 1.2em;
		 display: block;
		 text-align:center;
		 
	}
	
#nav li a:hover {
color : #ff0000;
background-color:#49463d;
}
#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#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;
}
