
/*******************************************************************************
  TABLE DESIGN 
*******************************************************************************/
#box-table-a {
    font-size: 12px;
    margin: 0px;
    text-align: left;
    border-collapse: separate;
    border: 1px solid #CCC;
}

    #box-table-a th {
        font-size: 13px;
        font-weight: bold;
        padding: 8px;
        background: #CCCCCC;
        border-top: 1px solid #FFF;
        color: #333;
        text-align: left;
    }

    #box-table-a td {
        padding: 8px;
        background: none;
        border-top: 1px solid #CCC;
        color: #666;
        border-bottom: none !important;
        vertical-align:middle;
    }

    #box-table-a tr:hover td {
        background: #EAEAEA;
        color: #333;
    }

    #box-table-a tr.footer {
        background: none !important;
    }

        #box-table-a tr.footer:hover td {
            background: none !important;
        }
