@charset "UTF-8";

/*!
 * print.css -https://3e96115d-7ffe-4b4d-a55c-cca0531a735a.p.bardy.io
 */


@media print {

    body {
        background-image: none;
        background-color: #fff;
    }
    
    header.main .mainnav nav.main-nav {
        background-color: transparent;
    }
    
    nav {
        display: none !important;
    }
    
    footer {
        display: none !important;
    }
    
    /*Print header cricket logo.*/
    
    /*Show the logo*/
    .logoPrint {
        display: block !important;
        float: left !important;
        clear: both !important;
    }
    
    /*Link URLs.*/
    
    /*to show URLs*/
    /*a:after{
        content:"("attr(href)")" !important;
    }*/
    
    /*to hide URLs*/
    a:after{
        content:"" !important;
    }
    
    /*Formatting*/
    
    h2, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
    }
    
    /*Can cause unexpected breaks if articles right after h-tags, etc.*/
    article {
        /*page-break-before: always;*/
    }
    
    ul, img {
        page-break-inside: avoid;
    } 
 
    /*Margins of printed page. Can still depend on page/printer setup settings.*/
    @page {
        margin: 2cm;
     }

}

/*END of Print styles*/


