/* Basic code - don't modify */
 
 #nav { display: block; margin: 0; padding: 0; position: relative; }
  #nav li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative; }
  #nav a { display: block; }
  #nav ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
  * html #nav ul { line-height: 0; } /* 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: 120px;  }
#nav ul ul { left: 131px; }

/* Everything else is theming */
 
#nav {
  height: 24px;
  margin-left: 8px;
}

#nav *:hover { 
  background-color: none; 
}

#nav li {
  padding-right: 18px;
}

#nav a {
  color: black;
  padding: 6px;
  line-height: 1;
}

#nav a:hover {
  color: white;
}
 
#nav ul {
  background-color: #ccc;
  top: 25px;
  opacity: 0.9; 
  filter: alpha(opacity=90);
}

#nav ul li:first-child {
  padding-top: 2px;
}

#nav ul li {
  background-color: #5E5A5A;
  padding-right: 0;
  text-align: left;
}

#nav li.hover a { 
  background-color: #5E5A5A;
  color: white;
}

#nav ul li a {
  color: white;
  font-size: 85%;
}

#nav ul li a:hover {
  background-color: black;
  text-decoration: none;
}

#nav ul li a {
  border-bottom: 1px solid white;
}
/* #nav ul a { border-bottom: none; } - I also needed this for IE6/7 */

