﻿
@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;
        }
    }

    @media print {
        #wow {
            max-width: 100% !important;
            /*margin-top: 65px !important;*/
            margin-bottom: 100px !important;
        }

        #wow2 {
            max-width: 100% !important;
            margin-bottom: 500px !important;
        }

        #hot {
            max-width: 50% !important;
        }

        #button {
            display: none !important;
        }
    }
}
