/*---| b-table-simple |----------------------------------------------------------------*/

.b-table-simple {
    font-size: 13px;
}

.b-table-simple th {
    font-size: 13px;
    font-weight: normal;
    color: #ffffff;
    border-left: 1px solid #e8e8e8;
    padding: 8px 20px;
    text-align: left;
    background: #004b60; /* Old browsers */
    background: -moz-linear-gradient(top,  #004b60 0%, #00283d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#004b60), color-stop(100%,#00283d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #004b60 0%,#00283d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #004b60 0%,#00283d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #004b60 0%,#00283d 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #004b60 0%,#00283d 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004b60', endColorstr='#00283d',GradientType=0 ); /* IE6-9 */


}

.b-table-simple th:first-child {
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}

.b-table-simple th:last-child {
    border-right: none;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}

.b-table-simple td {
    font-size: 11px;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    padding: 20px;
}

.b-table-simple td:first-child {
    border-left: none;
}

/*===| b-table-simple |=================================================================*/