/* BEGIN main menu */

#menu_main {
	position: absolute;
	left: 13px;
	bottom: 0;
	font: bold 14px/1 'Times New Roman',sans-serif;
}

/* all lists */
#menu_main ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav {
	float: left;
	height: 23px;
}

/* all list items */
#nav li {
	float: left;
	height: 23px;
	position: relative;
	margin: 0;
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
}

#nav li.first {
	background: none;
}

/* all top level links */
#nav li a.top:link,
#nav li a.top:visited {
	display: block;
	float: left;
	height: 23px;
	color: #b6b0ad;
	text-decoration: none;
	padding: 0 5px;
}

#nav li a.top:hover,
#nav li a.top:active {
	color: #fff;
}

#nav li:hover a.top:link,
#nav li:hover a.top:visited,
#nav li.sfhover a.top:link,
#nav li.sfhover a.top:visited {
	color: #fff;
}

/* This triggers the dropdown effect. */
#nav li:hover ul,
#nav li.sfhover ul {
	left: 1px;
}

/* 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: 21px;
	width: 200px;
	margin: 0;
	background: #333;
	padding: 0;
}

#nav li ul li {
	float: none;
	border: 0;
	border-top: 1px solid #666;
	margin: 0;
	height: auto;
	background: none;
}
	
#nav li ul a:link,
#nav li ul a:visited {
	display: block;
	width: 180px;
	color: #ccc;
	text-decoration: none;
	padding: 10px;
}
	
#nav li ul a:hover,
#nav li ul a:active {
	color: #fff;
	border: 0;
	background-color: #c60;
}

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

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

/* Keepts lists nested under hovered list items hidden until their parent item is moused over */
#nav li li:hover ul,
#nav li li.sfhover ul {
	left: 0;
	margin: 0 0 0 190px;
}

/* END main menu */

/* BEGIN section menu */

#menu_section {
	width: 112px;
	padding: 20px 0 0;
	font: normal 10px/1.1 'Trebuchet MS',Arial,sans-serif;
	text-transform: uppercase;
}

#menu_section ul {
	margin: 0;
	list-style: none;
}

#menu_section a:link,
#menu_section a:visited {
	display: block;
	width: 100px;
	padding: 4px 0;
	color: #7c6e68;
	text-decoration: none;
}

#menu_section a:hover,
#menu_section a:active {
	color: #AC7149;
	text-decoration: underline;
}

/* END section menu */