﻿
@page {
    size: auto; /* auto is the initial value */
    margin: 1;
    padding: 0; /* this affects the margin in the printer settings */
}

@media print {
    a[href]:after {
        content: none !important;
    }
    @media print {
        body {
            -webkit-print-color-adjust: exact;
        }
    }
}
