.stingray_table {         
    border: 2px solid black;         
    margin-top: 5px;         
    width: 100%;     
}          

.stingray_table thead {             
    background-color: #589ACC;             
    font-weight: bold;             
    font-size: 20px !important;             
    color: #F9F7F0;         
}              

.stingray_table thead tr td {                 
    font-size: 16px;                 
    padding: 5px;             
}                    

.stingray_table tbody tr td {                 
    font-size: 14px !important;                 
    padding-bottom: 10px;                 
    padding-left: 5px;                 
    vertical-align: top;             
}              

.stingray_table tbody > tr:nth-child(even) {                 
    background-color: #DDEBF4;           
}              

.stingray_table tbody > tr > td:nth-child(1) {                 
    font-weight:bold;             
}                           

.stingray_table tbody > tr > td:nth-child(4) {                 
    font-weight: normal;             
}      

.base_table {         
    border: 0px;         
    margin-top: 15px;     
}          

.base_table tbody tr td {             
    font-size: 14px;             
    padding-bottom: 0px;             
    padding-left: 5px;             
    vertical-align: top;         
}          

.base_table tbody > tr > td:nth-child(1) {             
    font-weight: normal;             
    width: 130px;         
}          

.base_table tbody > tr > td:nth-child(2) {             
    font-weight: bold;         
}      

ul {         
    list-style: none;         
    padding-left: 0;     
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    /*background-color: #f1f1f1;*/
    background-color: #DDEBF4;
}

/* Style the buttons that are used to open the tab content */
.tab a {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: black;
}

/* Change background color of buttons on hover */
.tab a:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab a.active {
    /*background-color: #ccc;*/
    float: left;
    background-color: #589ACC;
    color: #F9F7F0;
    font-weight: bold;
    padding: 14px 16px;
    cursor: default;
    text-decoration: none;
}