.utabs > a {
    display: inline-block;
    box-sizing: border-box;
    margin-right: 7px;
    vertical-align: top;
}

.utabs > a.current {
    border: none;
    border-radius: 6px 6px 0 0;
    background: #005957;
    color: #fff;
    padding: 7px 15px 10px 15px;
}

.utabs > a:not(.current) {
    border-radius: 6px;
    background: #FFF;
    color: #000;
    padding: 5px 10px 3px 10px;
    box-shadow: 3px 3px 2px 0 rgba(0, 0, 0, 0.1);
}

.utabs .tabs,
.utabs .border {
    border-bottom: 2px solid #005957;
}

.utabs .tabs .current {
    padding: 0 !important;
}

.utabs table { 
    width: 100%;
    border-collapse: collapse;
    border: none;
    background-color: #fff;
}

.utabs table th {
    background-color: #005957;
    color: #fff;
    font-weight: bold;
    padding: 7px 10px;
    text-align: left;
}


.utabs table th:not(:first-child) {
    border-left: 2px solid #FFF;
}

.utabs table td {
    padding: 7px 10px;
}

.utabs table td:not(:first-child) {
    border-left: 2px solid #FFF;
}

.utabs table tr td {
    background-color: #fff;
}

.utabs table tr:nth-child(even) td {
    background-color: #0059570f;
}

.utabs table tr:hover td {
    background-color: #00595733;
}

.utabs table a {
    text-decoration: underline;
}

.utabs table a:hover {
    text-decoration: none;
}

.utabs table .total td {
    background-color: #EEE;
    font-weight: bold;
    text-align: right;
    border-top: 1px solid #005957;
}