#skip {
  display: none;
}

/* another son of suckerfish...
http://www.htmldog.com/articles/suckerfish/dropdowns/
http://www.alistapart.com/articles/horizdropdowns
*/
#nav ul.menu { /* top level ul */
  padding: 0 0 0 0px;
  margin: 10px;
  margin-left: 0px;
  margin-right: 0px;
  list-style: none;
  height: 1.6em;
} 

#nav a {
  display: block;
  padding: 0 20px;
  margin: 0;
  line-height: 1.6em;
  /*width: 6em;*/
  color: white;
  text-decoration: none;
}

#nav a:hover {
  color: white;
  background-color: #A5A570;
  text-decoration: underline;
}

#nav a.active {
  text-decoration: none;
}

#nav li {
  display: inline;
  float: left;
  margin: 0;
  padding: 0;
  /*height: 1.6em;*/
  /*width: 10em;/* fixed width works better, but looks ugly */
}

/* second-level lists */

#nav ul.menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#nav li ul {
  position: absolute;
  width: 10.8em; 
  left: -999em; /* to hide menus because display: none isn't read by screen readers */
}

#nav li li {
  /*height: auto;*/
  float: left;
  width: 10.8em;
}

#nav li ul a {
  /*display: block;*/
  padding: 0.1em 0 0.2em 0.8em;
  width: 10em;
  /*height: auto;*/
  /*text-align: left;*/
  line-height: normal;
  color: white;
  background-color: #C5C69C;
  border: 1px solid black;
  border-top: none;
}

#nav li ul a:hover {
  color: white;
  background-color: #;
}

#nav li ul ul {
  margin: -1.3em 0 0 14em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
  left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
  left: auto;
}


