﻿table.containerPrintTable {
    width: 100%;
    margin: 0;
    padding: 0;
    border-spacing: 0;
}

table.printTable {
    width: 100%;
    margin: 0;
    padding: 0;
    border-spacing: 0;
}

    table.printTable thead tr {
        background-color: #23b7e5;
        color: white;
    }

    table.printTable thead tr th {
        text-align: center;
        border-left: solid 1px white !important;
        border-top: none !important;
        white-space: nowrap;
        padding: 5px;
        height: 2em;
    }

        table.printTable thead tr th:first-child {
            border-left: none !important;
        }


table.printTable tbody tr td {
    border: 0;
    padding: 5px;
    border-left: solid 1px #A0A0A0;
    border-top: solid 1px #A0A0A0;
    height: 2em;
    vertical-align: top;
}
    table.printTable tbody tr td:first-child {
        border-left: none !important;
    }

.noWrap {
    white-space: nowrap;
}

.center {
    text-align: center;
}