ul.tabs-panel-head {
    display: table;
    list-style-type: none;
    margin-top: 10px;
    padding: 0;
    z-index: 1000;
    white-space: nowrap;
    overflow-x: scroll;
}

li.tabs-panel-head-item {
    float: left;
    display: inline;
    padding: 10px;
    background-color: lightgray;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-left: 1px solid #000;
    border-right: 1px solid #e4e4e4;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

li.tabs-panel-head-item:last-child {
    border-right: 1px solid #000;
}

li.tabs-panel-head-item:hover {
    color: #a71c20;
    background-color: #e4e4e4;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #e4e4e4;
    cursor: pointer;
}

li.tabs-panel-head-item.selected {
    background-color: #e4e4e4;
    color: #a71c20;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #e4e4e4;
}

div.tabs-panel-body {
    min-height: 200px;
    border: 1px solid black;
    margin-top: -1px;
    z-index: 10;
}

