/* MENU DROPDOWNS */


#nav, #nav ul {
	float: left;
	/*width: 36em;*/
	list-style: none;
	line-height: 1;
	font-weight: bold;
	padding: 0;
	border-width: 1px 0;
	margin: 0 0 1em 0;
	height: 25px;
}

#nav a {
	display: block;
	/*width: 10em;
	w\idth: 6em;*/
	color: #694557;
	font-weight: bold;
	text-decoration: none;
	/*padding: 0.25em 2em;*/
	padding-right: 12px;
}

#nav a:hover {
	color: #b94745;
}

#nav a.daddy {
	background: url(rightarrow2.gif) center right no-repeat;
}

#nav li {
	float: left;
	padding: 0;
	/*width: 10em;*/
}

/* 2nd level */

#nav li ul { /* second-level lists */
	position: absolute;
	background: #fff;
	font-weight: normal;	
	width: 154px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding-top: 0px;
	margin: 0;
	line-height: 22px;
	height: auto;
	background-color: #ffffff;
	border: 1px solid #ba9182;
	margin-top:1px;
}

#nav li li {
	width: 155px;
	font-size: 12px;
	padding-left: 10px;
}

#nav li ul a {
	/*width: 13em;
	w\idth: 9em;*/
}

#nav li ul ul {
	/* margin: -1.75em 0 0 14em;*/ 
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

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

#nav li:hover, #nav li.sfhover {
	/* background: #66002f; */
	color: #fff;
	position:static;
}

