/* Nav Section */

#nav,
#nav li,
#nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav li img {
float: left;
}

#nav {
	height: 20px;
	width: 785px;
	background-image: url(../images/header.png);
	padding-top: 55px;
	padding-left: 15px;
}

#nav,
#nav ul { /* all lists */
}

#nav li { /* all list items */
	float: left;
	position: relative;
	margin-right: 15px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	text-align: left;
	text-decoration: none;
	width: 170px;
	padding: 4px 0 6px 5px;
	margin: 2px 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: #000000;
	color: #ffffff;
}

#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;
}