﻿.table {
    border-top: 1px solid #DADEDF;
}

    .table thead tr th {
        color: #8C979A;
        font-weight: normal;
        font-size: 12px;
        border-bottom: 3px solid #DADEDF;
        position: relative;
    }

        .table thead tr th:before {
            content: '';
            background-image: url("/images/line.png");
            width: 1px;
            height: 23px;
            position: absolute;
            left: -3px;
            color: #ccc;
            font-size: 20px;
            top: 4px;
            font-weight: lighter;
        }

        .table thead tr th:first-of-type:before {
            content: '';
            background-image: none;
        }

    .table tbody tr td {
        border-top: none;
    }
