/*CSS MENU*/
#navcontainer
{
    font-family: "Verdana", verdana, serif;
    font-size: 15px;
    height: 35px;
    background: black;/*#2F4F4F;/*#e16031;*/
    margin-left: 279px;
    width: 692px;
}

/* to stretch the container div to contain floated list */
#navcontainer:after
{
    content: ".";
    display: block;
    line-height: 1px;
    clear: both;
}

ul#navlist
{
    font-weight: bold;
    width: 100%;
    background: white;
    padding: 6px 0 6px 0; /* padding of the 4 sides of the menu */
    margin: 0;
    text-align: left; /* set value to "left", "center", or "right" to align menu accordingly */
}

ul#navlist li
{
    display: inline;
    width: 150px;
}

ul#navlist li a
{
    color:black;
    padding: 6px 8px 4px 8px; /* padding of the 4 sides of each menu link */
    margin-right: 35px; /* spacing between each menu link */
    text-decoration: none;
}

#navcontainer>ul#navlist li a { width: auto; }

ul#navlist li#active a
{
    color: white;
    background: #2F4F4F;
    /*background: -moz-linear-gradient(top, #5d4137 0%, #41251b 12%, #2c0f05 100%); /* moz syntax for CSS3 gradient *
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5d4137), color-stop(12%,#41251b), color-stop(100%,#2c0f05));
    background: -webkit-linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%); /* webkit syntax for CSS3 gradient *
    background: -o-linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%); /* opera syntax for CSS3 gradient *
    background: -ms-linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%);
    background: linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d4137', endColorstr='#2c0f05',GradientType=0 );   */
    -moz-box-shadow: 0 0 5px #595959; /* moz syntax for CSS3 box shadows */
    -webkit-box-shadow: 0 0 5px #595959;
    box-shadow: 0 0 5px #595959;
    padding-top: 17px; /* large padding to get menu item to protrude upwards */
    padding-bottom: 6px;
}

ul#navlist li a:hover, ul#navlist li#active a:hover
{
    color: white;
    background: #2F4F4F;
    /*background: -moz-linear-gradient(top, #5d4137 0%, #41251b 12%, #2c0f05 100%); /* moz syntax for CSS3 gradient *
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5d4137), color-stop(12%,#41251b), color-stop(100%,#2c0f05));
    background: -webkit-linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%); /* webkit syntax for CSS3 gradient *
    background: -o-linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%); /* opera syntax for CSS3 gradient *
    background: -ms-linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%);
    background: linear-gradient(top, #5d4137 0%,#41251b 12%,#2c0f05 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d4137', endColorstr='#2c0f05',GradientType=0 ); */
    -moz-box-shadow: 0 0 5px #595959; /* moz syntax for CSS3 box shadows */
    -webkit-box-shadow: 0 0 5px #595959;
    box-shadow: 0 0 5px #595959;
    padding-top: 17px; /* large padding to get menu item to protrude upwards */
    padding-bottom: 6px;
}
