/* Basic code - don't modify */
 
#nav ul { display: block; margin: 0; padding: 0; position: relative; }
 #nav ul li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative; }
 #nav ul a { display: block; }
 #nav ul ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
 * html #nav ul ul { line-height: 0; } /* IE6 "fix" */
	#nav ul ul a { zoom: 1; } /* IE6/7 fix */
	#nav ul ul li { float: none; }
	#nav ul ul ul { top: 0; }
    
/* Essentials - configure this */

#nav ul ul { width: auto; min-width:150px; }
#nav ul ul ul { left: 145px; }

/* Everything else is theming */
 
#nav ul {
	background-color:white;
	white-space:nowrap;
	color:#333;
}
#nav ul *:hover { background-color: none; }
#nav ul a { 
	background: white;
	padding:20px 25px;
	color:#777;
	font-size:9px;
	text-transform:uppercase;
	text-decoration:none;
	line-height: 1;
	}
  #nav ul li {
	border-right:1px dotted #DDD;
	border-bottom:3px solid #CCC;
  }
  #nav ul li.hover a { color:#FFF; background: url(../menu-glow.png) no-repeat top center #c3d1d4;}
  #nav ul li.hover ul a { background: none; }
  #nav ul ul { top: 52px; background: url(subcorner.png) no-repeat right bottom #252a2e; }
    #nav ul ul li { border:none;}
    #nav ul ul li a { color:#FFF; padding:6px 15px; text-transform:lowercase; font-size:11px; background:none;}
      #nav ul ul a.hover{ color:#FC0; background:none;}
   #nav ul ul a { border-top: 1px solid #555555; border-right: none; opacity: 0.9; filter: alpha(opacity=90); }
/* #nav ul ul a { border-bottom: none; } - I also needed this for IE6/7 */


