@media print {
    .noprintable {
        visibility: hidden;
        display: none!important; 
    }
    div.divFooter {
        position: fixed;
        bottom: 0;
    }
    html, body {
        height: auto;
        font-size: 80%!important; /* changing to 10pt has no impact */
        zoom: 0.8!important;
        background:white;
    }
}

@media screen {
    div.divFooter {
      display: none;
    }
    .printable-only {
        display: none!important; 
    }
}

.highcharts-credits {
    display: none;
}