/**
 * Print stylesheet
*/

@media print {
    #content,#page {
        width: 100%;
        margin: 0;
        float: none;
    }

    /** Setting margins */
    @page { margin: 2cm }

    body {
        font: 12pt Arial, Helvetica, sans-serif;
        line-height: 1.3;
        background: #fff !important;
        color: #000;
    }

    h1 {
        font-size: 20pt;
    }

    h2, h3, h4 {
        font-size: 14pt;
        margin-top: 25px;
    }

    a:link, a:visited, a {
        background: transparent;
        color: blue;
        font-weight: bold;
        text-decoration: underline;
    }

    a[href]:after {
        content: none !important;
    }

    a, table {page-break-inside:avoid}
    h1, h2, h3, h4, h5, h6, .panel, .panel-heading, .panel-title
    { page-break-after:avoid;page-break-inside:avoid }

    /* DO NOT PRINT */
    .breadcrumb, .btn-default, span .ui-grid-ico-sort
    { display: none; margin: 0; padding: 0; height: 0;}
}