/* 17 Feb 05
   File: column_tables.css */
/* Styles for tables whose primary function is to maintain columns of data
   Last W3C CSS validation: 26-Feb-05  */

table {
    border-collapse:collapse;}

/* .column, column_gold, column_blue, column_linen, column_green are classes of table */
.column th, .column_gold th, .column_blue th, .column_linen th, .column_green th {
    text-align:center;
    border-width:1px;
    border-style: solid;
    font-weight:normal;
    padding-left:2px;
    padding-bottom:6px;
    padding-top:6px;}

.column td, .column_gold td, .column_blue td, .column_linen td, .column_green td {
    border-width:1px;
    border-style: solid;
    padding-left:10px;
    padding-right:10px;
    padding-top:3px;
    padding-bottom:3px;}

.column td {
    border-color: #ffffff;
    background-color:#ffffff;}

.column_gold td {
    border-color: #ffcc00;
    background-color:#ffffe0;}

.column_blue td {
    border-color: #add8e6;
    background-color:#f0f8ff;}

.column_linen td {
    border-color: #cc0000;
    background-color:#faf0e6;}

.column_green td {
    border-color: #228b22;
    background-color:#f5fffa;}

.column_gold th {
    border-color: #ffcc00;}

.column_blue th {
    border-color:#add8e6;}

.column_linen th {
    border-color: #cc0000;}

.column_green th {
    border-color: #228b22;}