﻿@page {
    size: portrait; /* auto is the initial value */
    margin: 0mm; /* this affects the margin in the printer settings */
}

@media print {
    .noprint {
        display: none !important;
    }

    a:link:after, a:visited:after {
        display: none;
        content: "";
    }
}

body {
    background-color: transparent;
    border: solid 1px transparent;
    margin: 0px; /* this affects the margin on the content before sending to printer */
}
