﻿
.table a:active,
.table a:hover {
    color: #bd5a35;
    text-decoration: underline;
}

.table {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #666;
    font-size: 12px;
    border: none !important;
    border-collapse: separate;
    border-spacing: 0;
    -moz-min-width: 350px;
    -ms-min-width: 350px;
    -o-min-width: 350px;
    -webkit-min-width: 350px;
    min-width: 350px;
}

    .table th {
        padding: 21px 25px 22px 25px;
        background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
        background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
        -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
        -moz-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
        -o-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
        background-repeat: repeat-x;
        font-size: 12px;
        font-weight: 500;
        color: rgb(51, 51, 51);
    }

    .table tr th,
    .table tr td {
        padding: 5px;
    }

    .table tr:nth-child(10n) td {
        border-bottom: 1px solid #E0E0E0;
    }

        .table tr th:last-child,
        .table tr td:last-child {
            border-right: 1px solid #E0E0E0;
        }

        .table tr th:first-child,
        .table tr td:first-child {
            border-left: 1px solid #E0E0E0;
        }

    /* top-left border-radius */
    .table tr:first-child th:first-child {
        -ms-border-top-left-radius: 6px;
        border-top-left-radius: 6px;
    }

    /* top-right border-radius */
    .table tr:first-child th:last-child {
        -ms-border-top-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    /* bottom-left border-radius */
    .table tr:last-child td:first-child {
        -ms-border-bottom-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }

    /* bottom-right border-radius */
    .table tr:last-child td:last-child {
        -ms-border-bottom-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .table th:not(:first-child) {
        border-left: 1px solid #E0E0E0;
    }

    .table > thead > tr > th {
        border-bottom: none !important;
        border-top: 1px solid #E0E0E0 !important;
    }

    .table th:first-child {
        text-align: left;
        padding-left: 20px;
    }

    .table tr {
        text-align: center;
        padding-left: 20px;
    }

    .table td:first-child {
        text-align: left;
        padding-left: 20px;
        border-left: 0;
    }

    .table td {
        padding: 18px;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #e0e0e0;
        background: #fafafa;
        background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
        background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
    }

    .table tr:last-child td {
        border-bottom: 1px solid #e0e0e0;
    }

    .table tr.even td {
        background: #f6f6f6;
        background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
        background: -moz-linear-gradient(top, #f8f8f8, #f6f6f6);
    }

    .table tr:hover td {
        background: #f2f2f2;
        background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
        background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
    }

    .table > thead > tr > td.warning,
    .table > tbody > tr > td.warning,
    .table > tfoot > tr > td.warning,
    .table > thead > tr > th.warning,
    .table > tbody > tr > th.warning,
    .table > tfoot > tr > th.warning,
    .table > thead > tr.warning > td,
    .table > tbody > tr.warning > td,
    .table > tfoot > tr.warning > td,
    .table > thead > tr.warning > th,
    .table > tbody > tr.warning > th,
    .table > tfoot > tr.warning > th {
        background: #fcf8e3;
        -ms-text-shadow: none;
        text-shadow: none;
    }
