.nav, .nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		width: 190px;
		font-size: 12px;
	font-weight:bold;
	}
	
	.nav li { /* all list items */
		position : relative;
		text-indent: 8px;
		float : left;
		line-height : 20px;
		margin-bottom : -1px;
		width: 185px;
	}
	
	.nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 200px;
		margin-top : -22px;
	}
	
	.nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	.nav li a {
		width: 190px;
		w\idth : 185px;
		display : block;
		color : #2b005f;
		font-weight : bold;
		text-decoration : none;
		border: 1px solid #fff2d7;
		padding : 0 0.5em;
		background: #fff url(/assets/layout/arrow_off.png) no-repeat left center;
	}
	
	.nav li a:hover {
		color : white;
		background: #9a6601 url(/assets/layout/arrow_on.png) no-repeat left center;
	}
	
	.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: 0;
	}
.nav:after {
	content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
    }


