﻿ul.tabs
{
    margin-bottom: 0px;
    padding: 0;
    float: left;
    list-style: none;
    height: 24px; /*--Set height of tabs--*/
    width: 100%;
}
ul.tabs li
{
    float: left;
    margin: 0;
    padding: 0;
    height: 24px; /*--Subtract 1px from the height of the unordered list--*/
    line-height: 24px; /*--Vertically aligns the text within the tab--*/
    border-left: none;
    overflow: hidden;
    position: relative;
    padding: 0px 4px 0px 4px;
}
ul.tabs li a
{
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 10px;
    padding: 0px 4px 0px 4px; /*--Gives the bevel look with a 1px white border inside the list item--*/
    outline: none;
}
ul.tabs li a:hover
{
    font-size: 10px;
    color: #861010;
}

html ul.tabs li.active
{
    /*--Makes sure that the active tab does not listen to the hover properties--*/
    border-top: solid 1px #FF9900;
    border-right: solid 1px #FF9900;
    border-left: solid 1px #FF9900;
    -moz-border-radius-topright: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-box-shadow: 2px 2px 5px #fffcc;
    -webkit-box-shadow: 2px 2px 5px #fffcc;
    -moz-box-shadow: inset 3px 3px 5px #ff6666;
    -webkit-box-show: inset 3px 3px 5px #ff6666;
    color: #fff;
    background: #FF9933;
    font-size: 10px; /*--Makes the active tab look like it's connected with its content--*/
}
.tab_container
{
    border-top: 1px solid #861010;
    overflow: hidden;
    clear: both;
    float: left;
    width: 100%;
    background: #0e0300;
    margin-top: 0px;
}
.tab_content
{
    padding: 5px;
    font-size: 10px;
    margin: 0px 4px 0 4px;
}
.menu_container
{
    border: 1px solid #861010;
      -moz-border-radius-topright: 3px;
    -moz-border-radius-topleft: 3px;
      -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    overflow: hidden;
    clear: both;
    float: left;
    width: 100%;
    background: #0e0300;
    margin-top: 0px;
     -moz-box-shadow: 2px 2px 20px #fff;
    -webkit-box-shadow: 2px 2px 5px #fff;
}

