
	#nav, #nav ul { /* all lists */
		padding: 0px 0px;
		
		margin: 0px;
		list-style: none;
		float : left;
/*		line-height:1; */
      z-index: 9;
      background-color : #aaa9ab;
	}
	
	#nav li { /* all list items */
		position: relative;
		float : left;
		line-height : 20px;
		margin-bottom : 1px;
		margin-right: 1px;	
		width: 120px;
		height: 20px;
		text-align: center;
	}
	
	#nav li ul { /* second-level lists */
		padding: 0px;
		padding-top: 5px;
		padding-right: 2px;
		position : absolute;
		background-color : white; 
		left: -999em;
		margin-left : 0px;
		margin-top : 0px;
		border: 1px solid black;
		width: 120px;
		text-align: left;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
		width: 120px;
		display : block;
		color : #000000;
		font-family: arial;
		font-weight : normal;
		font-size: 10px;
		text-decoration : none;
		border : 0px solid black;
		padding : 0px 0px;
		padding-left: 5px;
	}

	#nav ul li a {
		width: 120px;
		display : block;
		color : #5b69a6;
		font-weight : normal;
		font-size: 10px;
		text-decoration : none;
/*		background-color : white; */
		border : 0px solid black;
		padding : 0px 0px;
		padding-left: 5px;
		font-family: tahoma, verdana, arial, helvetica, sans-serif;
  	}
	
	#nav li a:hover {
		color : #ffffff;
		background-color : #000000;
	}
	
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
		background-position: 0 0;
	}
	
	#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;
		background-position: 0 0;
	}
	

