﻿/*Css for 'old style' formatted tables (darker blue)*/
.old-formatted-table {
    border-collapse: collapse;
    border: 1px solid grey;
}
    .old-formatted-table td, .old-formatted-table th {
        border: none;
        padding: 4px;
    }
    .old-formatted-table tbody td{
        text-align: left;
    }
    .old-formatted-table thead tr{
        color: white;
        background-color: #002664;
    }
    .old-formatted-table thead tr th{
        font-weight: normal;
        text-align: left;
    }
    .old-formatted-table thead {
        border-bottom: 1px solid #252525;
    }
    .old-formatted-table thead th.main-header-cell{
        font-size: 16pt;
        text-align: center;
    }
    .old-formatted-table:not(.manual-alternating) tbody tr:not(.hidden-row):nth-of-type(2n) {
        background-color: #BEBEBE;
    }
    .old-formatted-table.manual-alternating tbody tr.alternating {
        background-color: #BEBEBE;
    }
    .old-formatted-table .hidden-row{
        display: none;
    }
    .old-formatted-table td a {
        color: rgb(0, 0, 238);
        cursor: pointer;
        text-decoration: underline;
        margin-right: 4px;
    }
    .old-formatted-table tbody tr.selected {
        background-color: #FFFF99 !important;
    }

.old-formatted-details-view {
    border-collapse: collapse;
    border: 1px solid grey;
}

    .old-formatted-details-view td, .old-formatted-details-view th {
        border: none;
        padding: 4px;
    }

    .old-formatted-details-view tbody td {
        text-align: left;
    }

    .old-formatted-details-view thead tr th {
        color: white;
        background-color: #002664;
        font-weight: normal;
    }

    .old-formatted-details-view thead {
        border-bottom: 1px solid #252525;
    }

    .old-formatted-details-view tbody tr:not(.hidden-row):nth-of-type(2n) {
        background-color: #BEBEBE;
    }

        .old-formatted-details-view tbody tr:not(.hidden-row):nth-of-type(2n) td {
            border: 1px solid #838282;
        }

    .old-formatted-details-view .hidden-row {
        display: none;
    }

    .old-formatted-details-view td a {
        color: rgb(0, 0, 238);
        cursor: pointer;
        text-decoration: underline;
        margin-right: 4px;
    }