/* Basic positioning */
#nav {
    position: relative;
    background: url('../images/nav/menuBG.gif');
    background-repeat : repeat-x;
    height: 34px;
    text-align: center;
    z-index: 30;
}

#nav ul {
    margin: auto;
    list-style: none;
    width: 728px;
}

#nav ul li {
    position: relative;
    float: left;
    height: 34px;
}

/* Hover/display stuff */
#nav li ul {
    display: none;
    width: 160px;
}

#nav li li {
    position: relative;
    clear: left;
    left: -36px;
    top: 5px;
}

#nav li li a {
    color: white;
    font: 12px Tahoma,Verdana,Arial,Sans Serif;
    text-decoration: none;
    line-height: 8px;
    padding: 0.3em 12px;
}

#nav li li a:hover {
    text-decoration: underline;
    background-color: #9d4349;
}

#nav ul li:hover ul, #nav ul li.over ul {
    display: block;
}

#nav ul li ul {
    background: url('../images/nav/dropbg.gif') no-repeat bottom left;
    position: absolute;
    top: 34px;
    left: 5px;
    z-index: 35;
}
