/*
 * Copyright 2018 Paul G. Bell
 * My miscellaneous formatting options
 */


/* Table Formats
*********************************/
.rTable {
    display: table;
    width: 100%;
}
.rTableRow {
    display: table-row;
}
.rTableHeading {
    display: table-header-group;
}
.rTableCell, .rTableHead {
    display: table-cell;
    border: 1px
    padding: 0px 0px;
    font-size: medium;
}
.rTableCellName {
    display: table-cell;
    border: 1px
    height: 100%;
    padding: 0px;
    width: 30%;
    text-align: left
    font-weight: bold;
    font-size: medium;
}
.rTableCellDescription {
    display: table-cell;
    height: 100%;
    padding: 0px;
    width: 55%;
    text-align: left
    font-weight: bold;
    font-size: small;
}
.rTableCellDate {
    display: table-cell;
    height: 100%;
    padding: 0px;
    width: 15%;
    font-weight: bold;
    font-size: small;
}
.rTableHeading {
    display: table-header-group;
    font-weight: bold;
}
.rTableFoot {
    display: table-footer-group;
    font-weight: bold;
}
.rTableBody {
    display: table-row-group;
}