/* Nav Section */

#nav,
#nav li,
#nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav li img {
float: left;
}

#nav {
	height: 32px;
	width: 800px;
	padding: 0 0 0 85px;
	background-color:#B5D6D8;
	border-bottom: solid 1px #000000;
	text-align: center;
	line-height: 16px;
}

#nav,
#nav ul { /* all lists */
}

#nav li { /* all list items */
	float: left;
	position: relative;
	margin-right: 40px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	text-align: left;
	text-decoration: none;
	width: 170px;
	padding: 4px 0 6px 5px;
	margin: 16px 0 0 0;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	top:16px; /*height of img */
	background-color: #B5D6D8;
	border: solid 1px #000000;
	color: #008984;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -24px 0 0 170px;
}

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

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

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

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

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