﻿@media all {
    .page-break {
        display: none;
    }
}

@media print {
    * {
        -webkit-transition: none !important;
        transition: none !important;
    }

    html,
    body,
    form {
        background: inherit !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a[href] {
        text-decoration: underline !important;
    }

        a[href]:after {
            /*content: " (" attr(href) ")";*/
            content: "" !important;
        }

    #left-panel,
    #ribbon,
    #top-right,
    #footer-bottom,
    #footer-translate,
    #footer-fontsize {
        display: none !important;
    }

    #footer .starball {
        bottom: 0 !important;
    }

    #main,
    #header aside {
        width: auto !important;
        margin: 0px !important;
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        min-width: unset !important;
        max-width: unset !important;
    }

    .page-break {
        display: block;
        page-break-before: always;
    }

    .hidden-print {
        display: none !important;
    }
}