<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
*   Condense report layout for printing.
*/
@media print {

    /* Keep the vertical scroll bar from showing */
    html, body, .main{
        overflow: hidden;
    }

    p, dd, dl{
        line-height: 100%; 
    }

    /* Hide a bunch of stuff */
    header,
    footer,
    .global-mega-footer,
    .et_pb_text_0,
    .breadcrumb-container,
    .page-title{
        display: none;
    }

    /* Scrunch it up! */
    .et_pb_divider,
    hr,
    h2,
    dl,
    .row{
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    p{
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 3px;
    }

    th,td{
        padding: 0;
        padding: 0;
    }

    /* Override the bootstrap grid styling, which doesn't play nice */
    .col-sm-6
    .col-sm-12{
        display: block;
        width: 100%
    }

    /* Make the data list elements flow horizontally to take up less vertical space */
    dt, dd{
        display: inline-block;
    }

    dd{
        padding-right: 15px;
    }

    /* Shrink the font size a little */
    p, dt, dd, th, td{
        font-size: 11pt;
    }

    h2{
        font-size: 11pt;
    }
}</pre></body></html>