@charset "utf-8";
#nav {
  height: 32px;
  clear: both;
  font-size: 11px;
}
#nav ul { list-style-type: none; }
#nav li { float: left;				/* IE z-index bug */ }
#nav a {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  border-left: 1px solid;
  padding: 11px 14px 10px 14px;
  font-weight: bold;
}
#nav a:hover {
  text-decoration: none;
  background-color: #d78518;
}
#nav li:first-child a { border: none; }
#nav a.active { background-color: #d78518; }

#nav ul ul { 
  display: none; 
  position: absolute;
  width: 250px;
  z-index: 100;
  background-color: #d3e0e5;
  border: 1px solid #ffffff;
}
#nav ul li:hover ul { display: block; }
#nav li li { float: none; }
#nav li li a {
  border: none;
  border-top: 1px solid #ffffff;
  padding: 6px 0 6px 20px;
  color: #595959;
  text-transform: none;
  height: 14px;
  display: block; /* NEED THIS ??? */
  font-weight: normal;
}
#nav li li a.active { background-color: transparent; }
#nav li li a:hover {
  color: #ffffff;
  background-color: #004e69;
}

