/* CSS Document */

#navigation {
  font: .8em/1.5em verdana, arial, sans-serif;
  position: absolute;
  top: 104px;
  left: 125px;  /* Emily chagned 165->125  20080815*/
  z-index:99999;
}

#navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigation #dropdown {
  height: 1.4em;
  padding: 0;
}

#navigation li {
  position: relative;
  float: left;
  line-height: 1em;
  padding: 0;
  margin: 0;
  text-align: center;
  border-left: solid white 1px;z
  width: 85px; /* IE only, for some strange reason */
}

#navigation li.first,
#navigation li.firstover {
  border-left: none;
  width: 80px;
}

#navigation li a {
  display: block;
  padding: 2px 5px 2px 5px; /* Emily chagned  padding: 5px 10px 2px 10px;   20080815 */
  line-height: 1em;
  color: 000;
  background: #ffffff;
  font-family: "Lucida Grande", verdana, arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

#navigation li a:hover {
  background: #DFD8E7;
  color: black;
}

#navigation li ul {
  position: absolute;
  display: none;
  width: 110px;
/*  background: #999; */
  left: -1px;
  border: solid #755397 1px;
  border-top: none;
}

#navigation li:hover ul, 
#navigation li.over ul,
#navigation li.firstover ul {
  display: block;
}

#navigation li ul li {
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: solid #755397 1px;
  border-right: none;
  border-left: none;
  text-align: left;
}

#navigation li ul li a {
  padding: 5px 10px 2px 10px;
  margin: 0;
  text-decoration: none;
  text-transform: none;
  font-weight: bold;  
  border: none;
  background: #F3F1F6;
  
  /* IE is being dumb again */
  width: 110px;
}

#navigation li ul li > a {
  width: auto;
  
}

#navigation li ul li a:hover {
  background: #DFD8E7;
  color: black;
}
