﻿body
{
	font-family: arial, helvetica, serif;
}

div#nav
{

	background-image: url(images/nav_back.gif);
	background-repeat: repeat-y;
	width: 100%;
	display: block;
	float: left;
}
#nav ul
{
	/* all lists */
	padding: 0 0 0 0;
	margin: 0;
	list-style: none;
}

#nav a
{
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	font-family: Arial;
	padding: 2px 0 2px 0;
}

#nav a:hover
{
	color: #CCC;
}

#nav li
{
	/* all list items */
	float: left; /* width needed or else Opera goes nuts */
	padding-left: 30px;
}


#nav li ul
{
	/* second-level lists */
	position: absolute;
	background: #23b572;
	width: 155px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li
{
	/* second-level lists */
	padding: 0px;
	margin: 0px;
}


#nav li ul li a
{
	/* second-level lists */
	font-size: 12px;
	font-weight: normal;
	padding-left: 4px;
	display: block;
	width: 150px;
}

#nav li ul li a:hover
{
	/* second-level lists */
	color: #000;
	background-color: #2ed78a;
}

#nav li ul ul
{
	/* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#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: auto;
}


