/* table.numeric.css */
table {   /* these apply to the whole table */
    font-family:arial, helvetica, sans-serif;
    font-size:0.75em;            /* 80% of standard font */
    font-weight:normal;
    border-collapse:collapse;
    border:none;
    margin-left:  12px;
    margin-right: 12px;
    margin-bottom: 0.8em;
}
td, th  {  /* cells -- can't have margin settings, any set will be ignored */ 
    border:1px solid black;
    padding-left: 0.4em;
    padding-right: 0.4em;
    padding-top: 0.2em;
    padding-bottom: 0.4em;
    vertical-align: top;     /* changed 16/06/2016 */
}
th  {
    text-align: center;
}
/* In some tables, may be overridden in individual table cells... */
td  {
    text-align: right;
}
