@charset "utf-8";
/* CSS Document */


	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		width : 160px;
		font-weight: bold;
		font-size: 12px;
	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 24px;
		background-color:#e1e1e1;
		margin-bottom : 0px;
		width: 85px;
	}
	#nav lid { /* all list items */
		position : relative;
		float : left;
		line-height : 24px;
		background-color:#fff;
		margin-bottom : 0px;
		width: 120px;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		background-color:#fff;
		margin-left : 130px;
		margin-top : -2.35em;
	}
	#nav lid ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 190px;
		margin-top : -2.35em;
		background-color:#ffffff;
		
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
		width: 0em;
		w\idth : 125px;
		display : block;
		font-weight : bold;
		text-decoration : none;
		/*background:url("images/boxup.gif") no-repeat;*/
		border : 0px solid black;
		padding : 0 1em;
	}
	#nav lid a {
		width: 0em;
		w\idth : 125px;
		display : block;
		font-weight : bold;
		text-decoration : none;
		background-color : white;
		/*background:url("images/boxup.gif") no-repeat;*/
		border : 0px solid black;
		padding : 0 1em;
	}
		
	#nav li a:hover {
		/*color : white;
		background-color : black;*/
		background-position:0 -72px;
		background-color:#e1e1e1;
	}
	
	#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;
	}
}