﻿/* Hide non printing items */

@media print {
    body header {
        display: none;
    }

    body footer {
        display: none;
    }

    .no-print, .no-print * {
        display: none !important;
    }
}

/* Set the printed page size to be A4 */
@media print {
    html, body {
        width: 210mm;
        height: 297mm;
    }
}
/* Print Specific Styles */
@media print {
    html, body {

    }
}

/* TODO: */
