	#nav, #nav ul { /* all lists */
		padding: 0px 0px;
		margin: 0px;
		list-style: none;
		width : 155px;
		z-index: 9;
	}
	
	#nav li { /* all list items */
		position : relative;
/*		float : left; */
		line-height : 36px;
		margin-bottom : 1px;
		margin-right: 1px;	
		width: 155px;
		height: 40px;
		background: #cccccc;
		text-align: right;
	}
	
	#nav li ul { /* second-level lists */
		text-align: left;
		padding: 0px;
		padding-top: 2px;
		padding-right: 0px;
		position : absolute; 
		left: -999em;
		margin-left : 150px;
		margin-top : -30px;
 		background-color: #ffffff; 
		width: 155px;
		line-height: 36px;
		height: 36px;
	}

* html #nav li ul { /* second-level lists IE6 Hack*/
		text-align: left;
		padding: 0px;
		padding-top: 2px;
		padding-right: 0px;
		position : absolute; 
		left: -999em;
		margin-left : 0px;
		margin-top : -30px;
 		background-color: #ffffff; 
		width: 155px;
		line-height: 36px;
		height: 36px;
	}

*:first-child+html #nav li ul { /* second-level lists IE7 hack*/
		text-align: left;
		margin-left : 0px;
}

	#nav li ul li {
		line-height: 36px;
		height: 36px;
		text-align: left;
	}

	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
		margin-left: 150px;
	}
	
* html #nav li ul ul { /* third-and-above-level lists IE6 hack */
		left: -999em;
		margin-left: 150px;
	}
	
*:first-child+html #nav li ul ul { /* third-and-above-level lists */
		margin-left: 150px;
		z-index: 101;
	}
	
	#nav li a {
		width: 150px;
		display : block;
		color : #000000;
		font-size: 12px;
		font-weight : bold;
		text-decoration : none;
		background-color : #cccccc;
		padding : 0px 0px;
		padding-left: 0px;
		z-index: 99;
	}

	#nav ul li a {
		width: 150px;
		display : block;
		color : #000000;
		font-size: 12px;
		font-weight : bold;
		text-decoration : none;
		background-color : #ffffff;
		border: solid black 1px;
		padding : 0px 0px;
		padding-left: 5px;
	}
	
	#nav li a:hover {
		color : #83b6d7;
		background-color : #333333;
	}
	
	#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;
	}
