@charset "UTF-8";
/* CSS Document */


ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 39px; /*--Set height of tabs--*/
    width: 100%;
}
ul.tabs li {
    float: left;
    margin: 0;
    padding: 0;
    height: 37px; /*--Subtract 2px from the height of the unordered list--*/
    border-left: none;
    overflow: hidden;
    position: relative;
    background: #fff;
}
ul.tabs li a {
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 1.2em;
    padding: 0;
    outline: none;
}
ul.tabs li a:hover {
    background: #fff;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
    background: #fff;
}

.tab_container {
    border-top: none;
    overflow: hidden;
    clear: both;
    float: left; width: 100%;
    background: #fff;
}
/* .tab_content {
    padding: 20px;
    font-size: 1.2em;
}
*/