.tabs{
    margin-bottom: 20px;
}

.tabs > ul{
    display:block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    z-index: 100;
}

.tabs > ul:after{
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    content: ".";
}

.tabs > ul > li{
    display: inline-block;
    vertical-align: bottom;
    border: solid #ccc;
    border-width: 1px 1px 1px 1px;
    padding: 10px 15px;
    background-color: #e38f00;
    color: #fff;
    /* opacity: 0.6; */
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.tabs > ul > li.active{
    border-width: 1px 1px 0 1px;
    background-color: #fff;
    opacity: 1;
    color: #2d2d2d;
}

.tabs .tab_content{
    display: none;
    border: 1px solid #ccc;
    padding: 15px;
    position: relative;
    top: -1px;
    border-radius: 0 5px 5px 5px;
}

.tabs .tab_content.active{
    display: block;
}