#menu {
	height: 50px;
	top: 151px;
	position: absolute;
	left: 0;
}

/* all lists */
#menu ul {
	padding: 10px 7px 0 7px;
	list-style: none;
	border-top: 1px solid #f0ede6;
	background: #fdfaf2;
}

#nav {
	width: 946px;
	height: 50px;
	margin: 0;
}

/* all list items */
#nav li {
	float: left;
	position: relative;
	margin: 0 0 0 1px;
	border-right: 1px solid #f1e9d2;
}

#nav li.about {
	margin: 0;
}

/* all top level links */
#nav li a.top:link,
#nav li a.top:visited {
	display: block;
	float: left;
	height: 50px;
	background: #faf1d6;
	padding: 0 19px;
	font-weight: normal;
	font-size: 15px;
	font-style: italic;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	color: #6732c1;
}

#nav li.right {
	margin-left: 217px;
}

#nav li a.left:link ,
#nav li a.left:visited{
	padding: 0 19px;
}

/* This hover effect is placed on the list item rather than the link so as to the keep effect intact
as the user mouses over the submenus */
#nav li:hover a.top:link,
#nav li:hover a.top:visited,
#nav li.sfhover a.top:link,
#nav li.sfhover a.top:visited {
	background: #faf1d6;
}

/* second-level lists */
#nav li ul {
	left: -9999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	position: absolute;
	z-index: 100;
	top: 48px;
	width: 200px;
	margin: 0;
	background-color: #faf1d6;
	padding: 0;
	font-size: 11px;
	line-height: 14px;
	font-style: italic;
}

#nav li ul li {
	float: none;
	border-bottom: 1px solid #fff;
	margin: 0;
	padding: 10px;
}

#nav li ul li:hover,
#nav li ul li.sfhover {
	background-color: #e2d6b3;
}
	
#nav li ul a:link,
#nav li ul a:visited {
	display: block;
	width: 200px;
	color: #6732c1;
	text-decoration: none;
	padding: 5px 10px;
}
	
#nav li ul a:hover,
#nav li ul a:active {
	color: #6732c1;
	border: 0;
}

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

#nav li:hover ul,
#nav li.sfhover ul {
	left: 0;
}

#nav li:hover ul ul,
#nav li.sfhover ul ul {
	top: 0;
	left: -999em;
	padding: 0;
	background-color: #e2d6b3;
}

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