/* CSS Drop Down Menu */

#header ul li {
	list-style-type: none;
	}
	
#nav a, #nav a:link, #nav visited {
	font-weight: normal;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 11px;
	text-align: center;
	}
#nav a:hover {
	background-color: #717679;
	}

/* Set widths for first level navigation items (if individual widths are desired, */
/* add these classes to the first level <li> tags in the navigation */
.nav1{width: 122px}	/* Menu Item #1 Width */
.nav2{width: 144px}	/* Menu Item #2 Width */
.nav3{width: 119px}	/* Menu Item #3 Width */
.nav4{width: 97px}	/* Menu Item #4 Width */
.nav5{width: 187px}	/* Menu Item #5 Width */
.nav6{width: 111px}	/* Menu Item #6 Width */

	/* first-level items */

	#nav li {
		position: relative;
		float: left;
		margin: 0;
		padding: 0;
		}

	#nav li:hover, #nav li.sfhover {
		background-position: bottom;
		}

	#nav li.first {
		margin: 0;
		}

	#nav a {
		display: block;
		text-align: center;
		padding: 0;
		margin: 0;
		height: 28px;
		}
	
	/* second-level items */
	#nav li ul {
		position: absolute;
		padding: 0;
		margin-left: 0;
		width: 144px;					/* Set width of first-level drop-down menu */
		left: -999em;
		top: 28px;						/* Set distance from top of primary navigation */
		background-color: #3f464a;
		overflow: hidden;
		height: auto;
		display: none;
		}
	
	#nav li.nav1 ul {
		width: 122px;
		}
	
	/* third-level items */
	#nav li ul li ul {
		position: absolute;
		padding: 5px;
		margin-left: -9999px;
		width: 134px;					/* Set width of second-level drop-down menu */
		left: -9999px;
		top: 25px;
		z-index: 999;
		display: none;
		}

	
	/* second-level items hover */
	#nav li:hover ul, #nav li.sfhover ul {
		display: block;
		left: 0;
		}

	#nav li ul li {
		float: none;
		display: inline;
		height: auto;
		background-image: none;
		line-height: 0;
		}

	#nav li li a {
		padding: 5px;
		text-align: center;
		line-height: 13px;
		margin: 0;
		height: auto;
		white-space: nowrap;
		}
	
	/* third-level items hover */
	#nav li ul li:hover ul, #nav li ul li.sfhover ul {
		z-index: 999;
		left: auto;
		margin-left: 125px;
		margin-top: -20px;
		display: block;
		}