﻿/* ===== GRID TYPE TABLE ===== */
.tbl {
    margin: 0px;
    padding: 0px;
    width: 100%;
    border: 1px solid #6E6E6E;
}

    .tbl table {
        width: 100%;
        height: 100%;
        margin: 0px;
        padding: 0px;
    }

    .tbl tr:last-child td:last-child {
    }

    .tbl table tr:first-child td:first-child {
    }

    .tbl table tr:first-child td:last-child {
    }

    .tbl tr:last-child td:first-child {
    }

    .tbl tr:hover td {
    }

    .tbl th {
        background-color: #D6D6D6;
        border: 1px solid #6E6E6E;
        border-top: none;
        border-left: none;
        color: #034D77;
        padding: 5px 10px 5px 10px;
        text-align: left;
    }

    .tbl td {
        vertical-align: middle;
        border: 1px solid #6E6E6E;
        border-width: 0px 1px 1px 0px;
        text-align: left;
        padding: 10px;
        font-weight: normal;
        color: #000000;
    }

    .tbl tr:last-child td {
        border-width: 0px 1px 0px 0px;
    }

    .tbl tr td:last-child {
        border-width: 0px 0px 1px 0px;
    }

    .tbl tr:last-child td:last-child {
        border-width: 0px 0px 0px 0px;
    }

    .tbl tr:first-child td {
        background: -o-linear-gradient(bottom, #5fbf00 5%, #3f7f00 100%);
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5fbf00), color-stop(1, #3f7f00) );
        background: -moz-linear-gradient( center top, #5fbf00 5%, #3f7f00 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fbf00", endColorstr="#3f7f00");
        background: -o-linear-gradient(top,#5fbf00,3f7f00);
        background-color: #5fbf00;
        border: 0px solid #3f7f00;
        text-align: center;
        border-width: 0px 0px 1px 1px;
        font-size: 1.077em;
        font-family: Arial;
        font-weight: bold;
        color: #ffffff;
    }

    .tbl tr:first-child:hover td {
        background: -o-linear-gradient(bottom, #5fbf00 5%, #3f7f00 100%);
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5fbf00), color-stop(1, #3f7f00) );
        background: -moz-linear-gradient( center top, #5fbf00 5%, #3f7f00 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fbf00", endColorstr="#3f7f00");
        background: -o-linear-gradient(top,#5fbf00,3f7f00);
        background-color: #5fbf00;
    }

    .tbl tr:first-child td:first-child {
        border-width: 0px 0px 1px 0px;
    }

    .tbl tr:first-child td:last-child {
        border-width: 0px 0px 1px 1px;
    }

    .tbl .removeBorder {
        border-right: 0px;
    }

    .tbl .removeBottomBorder {
        border-bottom: 0px;
    }

    .tbl .focusText {
        font-weight: bold;
        color: #034D77;
    }