/* Drop Downs */
* {
	padding: 0;
	margin: 0;
}

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

#nav a {
	display: block;
	color: #f5f5f5;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	margin: 0 .8em;
	font-size: 90%;
}

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

#nav a.home {
	color: #ffb6c1;
}

#nav li {
	float: left; /* all list items */
	/* width: 9em; width needed or else Opera goes nuts */
	margin: 0 .2em;
}

#nav li ul {
	background-image: url(../images/style/smilebg2.jpg);
}

#nav li ul {
	position: absolute; /* second-level lists */
	width: 14em;
	border: 2px solid #f5f5f5;
	background-color: #d5edb3;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-size: 90%;
	z-index: 100;
}

#nav li ul li {
	margin: .1em .3em;
	padding: .2em;
	width: 13em;
	border-bottom: 1px dotted #9c494b;
}

#nav li ul li a {
	display: block;
	color: #6f9554;
	text-align: left;
	margin: 0;
}

#nav li ul a:hover {
	display: block;
	color: #49769c;
	background-color: #f5f5f5;
	margin: 0;
}

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