﻿@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    html *, body * {
        visibility: hidden;
        height: 0px !important;
        min-height: 10px !important;
        width: 100% !important;
        page-break-after: avoid !important;
        page-break-before: avoid !important;
    }

    #printSection, #printSection * {
        visibility: visible;
        height: auto !important;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
        padding: 5px !important;
    }

        #printSection h1 {
            padding-left: 15px;
        }

        #printSection hr {
            margin-bottom: 0;
        }
}
