﻿@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    body * {
        visibility: hidden;
    }

    #printSection, #printSection * {
        visibility: visible;
    }

    #printSection {
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }

    .pagebreak {
        page-break-before: always;
    }
}

