#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	background: none;
	width: 167px;
	z-index:99;
}
	
#nav li { /* all list items */
	position: relative;
	line-height: 1.25em;		
	background: none;
	width:167px;
	padding: 0px;
}
#nav > li{
	margin-bottom:2px;
}
#nav a {
	background-color: transparent;
	background-image: url(../images/leftnav_norm.png);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left center;
	color: #2f462b;
	line-height: 27px;
	height: 27px;
	padding: 0px;
	margin: 0px;
	text-decoration: none;
	display: block;
	font-size: 12px;
}

#nav a:hover{
	background-color: transparent;
	background-image: url(../images/leftnav_over.png);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left center;
	color: #ffffff;
}
#nav a.has-sub {
	background-image: url(../images/leftnav_norm_arrow.png);
}
 #nav a.has-sub:hover {
	background-image: url(../images/leftnav_over_arrow.png);
}

	#nav li ul { /* second-level lists */
		position: absolute;
		left: -999em;
		margin-left: 167px;
		margin-top: -27px;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
		width: 167px;
		display: block;
		text-decoration: none;
		padding: 0 0.5em;
		/*background-color : white;
		border : 1px solid black;*/
		
	}
	
	/*#nav li a:hover {
		color : white;
		background-color : black;
	}*/
	
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
	}
	
	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}

