@media print {
    body {
        background: #FFF;
    }
    .pagewrap {
        box-shadow: none;
    }
    img {
        max-width: 10cm !important;
    }
}

@media print and (orientation: portrait) {
    .container {
        width: 21cm !important;
    }
}

@media print and (orientation: landscape) {
    .container {
        width: 27cm !important;
    }
}