/* minimum menu requirements for functionality of drop down menus*/
/* New Menu CSS */ 
/*http://www.htmldog.com/articles/suckerfish/dropdowns/example/vertical.html*/
/******************************************************************/
#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		/*width : 11em;*/
		width:182px;
		margin-top:0px;
		border:0px;
		
		}

	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;
		/*width: 11em;*/
		width:182px;
		height:20px;
		margin-bottom:1px;
		
		/*border-bottom:1px solid white;*/
		
		
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		/*margin-left : 14.4em;*/
		margin-left:180px;
		/*margin-top : -1.75em;*/
		margin-top:-20px;
		border:0px;
		
		
	}
	#nav li ul li{
		border:0px;
		
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
		
	}
	
	#nav li a {
		height:20px;
		/*width: 11em;*/
		width:182px;
		w\idth:142px;
		/*w\idth : 10em;*/
		/*w\idth:149px;*/
		display : block;
		color : white;
		font-weight : bold;
		text-decoration : none;
		background-color : white;
		border : 1px solid black;
		/*padding : 0 0.5em;*/
		padding-right:40px;
		
		background-repeat:no-repeat;
		background-position:150px 4px;
		font-size:11px;
		text-align:right;
	}
	
	#nav li a:hover {
		color : white;
		background-color : black;
		background-repeat:no-repeat;		
	}
	
	#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;
		
	}
	
	#content {
		margin-left : 12em;
	}
	
	#nav ul li a{
		background-image:none;
	}
/******************************************************************/

