﻿@page {
    size: auto;      /*auto is the initial value */
    margin: 1.5cm 0 1cm 0;   /*this affects the margin in the printer settings - removing page url on top*/
} 
@media print {
    /*body {
        margin-top: 1cm;
        padding: 1cm 0 2cm 0;
    }*/
    .no-print {
        display: none !important;
    }
    .print-only {
        border-bottom: 1px solid #808080;
        height: 2px;
    }
    a:link {
        text-decoration: none !important;
    }
    /*remove hyperlink location*/
    a:link:after, a:visited:after {
        display: none;
        content: "";    
    }
    .pg-header {
        text-align: center;
    }
    .header {
        border-bottom: 1px solid #808080;
        margin-bottom: 20px;        
    }
    #gvTransactions td, #gvTransactions th {
        font-size: 11px;
    }
    #gvTransactions td {
        white-space: nowrap;
    }
    .search-result-label .pull-left {
        float: none !important;
        text-align: center;
    }

} /*end of @media print*/