ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
    background: #03989e;
}

ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    padding: 20px;
    /* height: 31px; */
    line-height: 31px;
    border-top: 1px solid #2C3852;
    border-left: 1px solid #606778;
    color: #fff;
    overflow: hidden;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}

.tab_last {  }

ul.tabs li:hover {
    color: #ff0;
}

ul.tabs li.active {
    color: #000000;
    display: block;
}

.tab_container { 
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
}

.tab_content {
    padding: 20px 0;
    display: none;
}

.tab_drawer_heading { display: none; }

@media screen and (max-width: 480px) {
    .tabs {
        display: none;
    }
    .tab_drawer_heading {
        background-color: #1D5296;
        color: #fff;
        border-top: 1px solid #0e3c77;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        overflow: hidden;
    }
    .d_active {
        background-color: #666;
        color: #fff;
    }
}