﻿table.Table1 {
    width: 100%;
    font-size: 13px;
    color: #666;
    border: 1px solid #dedede;
    border-radius: 4px;
    box-shadow: #eee 2px 1px;
    border-collapse: separate;
    border-spacing: 1px;
}

    table.Table1 thead tr {
        background-color: #D2EAF1;
    }

        table.Table1 thead tr th, table.Table1 thead tr td {
            border: 0px solid #4BACC6;
            border-bottom-width: 1px;
            color: #256676;
            font-size: 13px;
            font-weight: normal;
            letter-spacing: 2px;
        }

    table.Table1 tbody tr:nth-child(even) {
        background: #EBEBEB;
    }

    table.Table1 tbody tr:nth-child(odd) {
        background-color: #FAFAFA;
    }

    table.Table1 tbody tr:hover {
        background-color: #FFFFC1;
    }

    table.Table1 th, table.Table1 td {
        padding: 5px;
    }

        table.Table1 th.Important {
            background-color: #ca3030;
        }

    table.Table1 td {
        border: 0px solid #ddd;
        border-bottom-width: 1px;
    }

        table.Table1 td .CellButton {
            display: block;
            width: 100%;
            height: 100%;
        }


    table.Table1.Orange thead tr {
        background-color: #FED2AF;
    }

    table.Table1.Pink thead tr {
        background-color: pink;
    }
