/* print.css */
@media print {
    * {
        background: none !important;
    }

    body {
        color: black;
        background-color: white;
        margin: 1cm;
        font-size: 10pt;
    }

    nav, aside {
        display: none;
    }

    .related, .top-nav, .noprint {
        display: none;
    }

    .container {
        max-width: unset;
        padding: unset;
        width: 100%;
    }

    .content {
        box-shadow: none;
        border: unset;
        width: 100%;
    }

    blockquote {
        border-left: unset;
    }

    div.multiCol {
        columns: 2 auto;
    }

    .page, .page-break {
        break-after: page;
    }

}

/* Add page numbers and URLs for links */
@page {
    margin: 0cm;
    counter-increment: page;



}

