#navcontainer
{
    /* Set font-size so theres no default */
    line-height: 18px;
    /* Set line-height because I think it looks better like this ;^) */
    
    /* Set letter-spacing so text don't jump as much when it turns bold on hover */

    font-size: 14px;
    border: 0px solid green;
    margin: 10px 0 0 2px;
    padding: 0 0 0 0;

}

#navcontainer a, #navcontainer a:hover, #navcontainer a:active, #navcontainer a:visited
{
    color: #372E1B;
    font-style: normal;
    font-weight: normal;
    /* Set text-decoration and color so there is no default */
    text-decoration: none;
    white-space: pre-wrap;
}

#navcontainer span
{
    white-space: pre-wrap;
}

#navcontainer ul
{
    list-style-type: none;
    padding-left: 0px;
    margin: 0px;
}

#navcontainer ul ul
{
    display: none;
    padding-left: 15px;
    /* offset sub menu */
}

#navcontainer ul li
{
    cursor: pointer;
    padding-left: 5px;
    margin-left: 2px;
    /* Set margin-left to set-up the left border */
}

#navcontainer ul li.active
{
    margin-left: 0px;
    /* Set margin back half of left-border width (5px) */
}

#navcontainer ul ul li.subactive
{
    margin-left: 0px;
    /* Set margin back half the 30px padding above */
    border-left: 5px solid #6A6457;
}

#navcontainer li { border-left: 1px solid #6A6457; }
#navcontainer li#active { border-left: 5px solid #6A6457; }

#current, #current a
{
    font-weight: bold;
    letter-spacing: 0;
    border-bottom: 1px #6A6457;
}

#subcurrent
{
    font-weight: bold;
    letter-spacing: 0;
    border-bottom: 1px #6A6457;
}