#menu ul
{
    padding-left: 0px;
    margin-left: 0px;
    float: left;
    width: 100%;
    white-space: nowrap;
    color: white; background-color: blue;
}

#menu ul li
{
    display: inline;
}

#menu ul li a
{
    border-right: white 1px solid;
    padding-left: 10px; padding-right: 10px;
    padding-top: 3px; padding-bottom: 3px;
    float: left;
    width: auto;
    font-weight: normal;
    text-decoration: none;
    color: white; background-color: blue;
}

#menu ul li a:visited
{
    font-weight: normal;
    text-decoration: none;
    color: white; background-color: blue;
}

#menu ul li a:hover
{
    font-weight: normal;
    text-decoration: none;
    color: black; background-color: yellow;
}

#menu ul li a:active
{
    font-weight: normal;
    text-decoration: none;
    color: black; background-color: yellow;
}




 