/* Basic code - don't modify */
 
 #nav { 
 	display: block; 
 	margin: 0; 
	padding: 0; 
	position: relative;
	z-index: 100;  /*must overlay page columns */
	}
	
  #nav li { 
  	display: block; 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	float: left; 
	position: relative; }
	
  #nav a { 
  	display: block;
	outline: none;}
	
  #nav ul { 
  	display: none; 
	position: absolute; 
	left: 0; 
	margin: 0; 
	padding: 0; }

  * html #nav ul { 
  		line-height: normal;
		padding: 5px;} /* IE6 "fix" */
  	
	#nav ul a { 
		zoom: 1; } /* IE6/7 fix */
    
	#nav ul li { 
		float: none;
		}
    
	#nav ul ul { 
		top: 0;
		}
    
/* Essentials - configure this */

	#nav ul { 
		width: 140px; /* was 160px;*/
		background-color: #333;
		}
		
	#nav ul ul { 
		width: 141px; /*was 161px */
		}
	
/* Everything else is theming */
	 
	#nav { 
		background-color: transparent; 
		height: 25px;
		text-align:left;
		font-family:Verdana, Geneva, sans-serif;}
		
	#nav *:hover  { 
		background-color: inherit;   /*for IE6 will take #FFF */
		color: #CC0000;}
		
	#nav a { 
		display:block;
		border-right: 1px solid #999; 
		color: #333; 
		font-size: 12px; 
		font-weight: normal;
		text-decoration:none;
		padding: 3px 12px 3px 12px;
		/* line-height: 1; */ }
		
  #nav li.hover a{ 
  		display: block;
		background-color: #333;
		} 
  
  #nav ul { 
			top: 26px;
		}
		
	 #nav ul li a { 
	 		display:block;
			background-color: #333;
			color: #FFF;
			font-size: .9em;
			letter-spacing:normal;
			} 
	
	 *html #nav ul li a.hover {  /* for IE 6 */
		 	display: block;
		 	background-color: #333;
			color: #FFF
			font-size: .9em;}
	 
	 #nav ul li a.hover { 
	 		display:block;
			background-color: #CC0000;
			color: #FFF;
			font-size: .9em;
			letter-spacing:normal;
		}
		
		#nav ul a  { 
			border-bottom: 1px solid #999;
			border-right: none;
			border-left: none;
			/* opacity: 0.9; 
			filter: alpha(opacity=90); */ }  
			
		#nav ul, #nav ul li a, #nav ul li a.hover {	
			border-right: none;
			/* opacity: 0.9; 
			filter: alpha(opacity=90); */ }  

/* #nav ul a { border-bottom: none; } - I also needed this for IE6/7 */

