/*
 * Contrasting Table stylesheet
 * Intended to stand-out against styling inherited from the common primary.css
 * (c) Brian Perry 2008-2009
 *
 * Color Scheme:
 *   Border: thin, lightcoral border
 *   Header Rows: white text on firebrick background
 *   Data Cells: white text on maroon background
 *
 */

table.contrast,
table.contrast th,
table.contrast td {
    border: 1px solid lightcoral;
    border-collapse: collapse;
    color: white;
    text-align: center;
}

table.contrast tbody th {
    font-weight: bold;
}

table.contrast tbody tr {
    background: maroon;
}

table.contrast tbody tr.light {
    background: firebrick;
}

table.contrast thead th {
    text-align: center;
    background: firebrick;
    color: white;
    font-size: 100%;
}

table.contrast th,
table.contrast td {
    padding: 4px;
}

table.contrast tfoot th,
table.contrast tfoot td {
    font-size: 85%;
}




