/* Generic Table CSS by Rob Allsbrook 2009 */
table {
width: 100%; /* Change this value to make the table different widths. */border: solid 1px #000; /* Controls the outside border. */
border-collapse: collapse; /* Causes the outside boarder to become a thin line. */
text-align: left;}
th { /* Table Headers */font-variant: small-caps;}
tr { /* Unused, At the Moment... */
}td { /* This controls the amount of space around the text in each table cell. */
padding: 5px;
}

td.right { /* In HTML doc, markup as <td class="right">cellcontent</td> */
text-align: right;
}

td.center { /* In HTML doc, markup as <td class="center">cellcontent</td> */
text-align: center;
}

/* Generic Table CSS End of File */