﻿@media print {
    body {
        -webkit-print-color-adjust: exact; /* This settings is used to print background color, but only works in Chrome browser*/
    }

    .featured .content-wrapper {
        background-color: greenyellow !important;
        color: #3e5667;
        padding: 20px 40px 30px 40px;
        background-image: -ms-linear-gradient(left, greenyellow 0%, greenyellow 100%);
        background-image: -o-linear-gradient(left, greenyellow 0%, #greenyellow 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, greenyellow), color-stop(1, greenyellow));
        background-image: -webkit-linear-gradient(left, greenyellow 0%, greenyellow 100%);
        background-image: linear-gradient(left, greenyellow 0%, greenyellow 100%);
    }
    .headercontain {
        display: none !important;
    }
    .navcontain {
        display: none !important;
    }
    .footercontain {
        display: none !important;
    }
    .removefromprint {
        display: none !important;
    }

    .includeinprint {
        display: block !important;
    }
    #divCustomLogoOnPrint {
        display: block !important;
    }
    @page {
        /*remove below lines to show url in bottom and page title in header*/
        size: auto;
        margin: 0mm;
    }
}
