#navcontainer {
               width: 760px; list-style-type: none; height: 2.8em;
               background: url(../images/blockdefault.gif) center center;
               border-top: 1px white solid;
               }

#nav {
  width: 75%;
  margin: 0 auto;
}

#nav li { /* all list items */
    text-align: center;
    float: left;
    width: 8em; /* width needed or else Opera goes nuts */
    display: block;
    font-size: 1.4em;
    height: 2em;
    line-height: 2em;
    position: relative;
    background: url(../images/blockdefault.gif) center center;
    z-index: 100;
 }

#nav li a {/* Using a float will stop dropdown working in IE6 */
    display: block;
    width: 8em;
    border-left: 1px #1f1f1f solid;
    color: white;
    text-decoration: none;
    background: none;
}

.lastlink {
  border-right: 1px #1f1f1f solid;
}

#nav li ul { /* second-level lists */
    position: absolute;
    width: 10.1em;
    background: black;
    left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
    margin-right: 1px;
}

#nav li ul li { /* Amending these values amends the links it contains */
  line-height: 2em;
  font-size: 1em;
  width: 10em;
  margin-top: 1px;
  background: none;
}

#nav li ul li a {
  text-align: left;
  text-indent: 0.5em;
  width: 10em;
  border: 1px #1f1f1f solid;
  border-width: 1px 1px 0 1px;
  margin-top: -1px;
}

#nav li ul ul { /* third-and-above-level lists */
    margin: -2.1em 0 0 10.1em;
    border: 1px;
}

#nav li ul li ul li {
  border-top: 0;
  border-left: 0;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
    left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
    left: auto;
}

#nav li a:hover, #nav li.sfhover {
x  background: url(../images/blockactive.gif) center center;
color: #f30651;
}