@charset "UTF-8";
/* CSS Document */


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 32px;
	font-size: 14px;
}

#nav a {
	display: block;
	text-decoration: none;
	color: #fff;
}

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

#nav li { /* all list items */
	float: left;
	width: 9.5em; /* width needed or else Opera goes nuts */
	height: 32px;
	background: #3a989b;
}

#nav li a { padding-left: 1em; }

#nav li.about { width: 6em; }
#nav li.purchase { width: 11em; }
#nav li.location { width: 11em; }

#nav ul { text-align: center; }

#nav li ul { /* second-level lists */
	position: absolute;
	width: 13.5em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li a {
	text-align: left;
	padding-left: .5em;
	color: #185f6e;
	width: 13em;
}

#nav li ul li { width: 13.5em;
	background: #aee5eb; }

#nav li ul li:hover { background: #333; }

#nav li.purchase ul li a { width: 14em; }

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 13.25em;
	background: #d1f9fd;
	width: 16em;
}

#nav li ul li ul li, #nav li ul li ul li a { 
	width: 16em;
}

#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 { /* lists nested under hovered list items */
	left: auto;
}

#nav li ul li:hover, #nav li ul li.sfhover {
	background: #eee;
}
