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



ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	float: left;
	width: auto;	
	text-decoration: none;
}


ul#nav li { /* all list items */
	float: left;
	position: relative;
	text-decoration: none;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: auto;
	left: 0;
	text-decoration: none;
	z-index:1000;
	float: left;
}

li>ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 30px;
	left: 0;
	text-decoration: none;
	z-index:1000;
	float: left;
}

li:hover ul, li.sfhover ul{ 
display: block;  
width: 150px;
min-width: 150px;
  /*put the subnav below*/
  *left: -10px; 
  /*reposition for IE*/
  float:left;
  z-index: 10000;


}

 ul ul a,  ul ul a:active {height:auto; font-size:10px; line-height:2em; background:#9D9E69; border-bottom:1px dotted #bbb7a3; float: left; text-align: left; text-decoration: none; z-index:1000; text-decoration: none;}
 
 * html  ul ul a, * html  ul ul a:visited  { text-decoration: none; }
 
 

