/* print.css */
@media print {
    /* Hide everything except the section with the ID 'print-section' */
    #bodysection * {
        display: none;
    }

    #divPDF, #divPDF * {
        display: block;
    }
}
