﻿@media print {

    /*Do not show buttons or links in the printed output*/
    #btnPrint {
        display: none;
    }

    a {
        display: none;
    }

    /*style for print*/
    body {
        padding: 0px;
        font-family: Arial;
        font-size: 8px;
        line-height: 1.25;
    }
}
