﻿@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    body * {
        display: none;
    }

    #printSection, #printSection * {
        display: inline;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
    }
}
