/******************************************************************************
* $ Print
******************************************************************************/

@media print {

    /**************************************************************************
    * $ Print.Boilerplate
    **************************************************************************/
    * {
        background: transparent !important;
        color: black !important; /* Black prints faster: h5bp.com/s */
        float: none;
        overflow: visible;
        position: static;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important;
    }
    html,
    body {
        overflow: visible;
    }
    a, a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    a[href^="javascript:"]:after, a[href^="#"]:after {
        content: ""; /* Don't show links for images, or javascript/internal links */
    }
    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr, img {
        page-break-inside: avoid;
    }
    img {
        height: auto;
        max-width: 100% !important;
    }
    @page {
        margin: 1.5cm 0.5cm;
    }
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    h2, h3 {
        page-break-after: avoid;
    }

    /**************************************************************************
    * $ Print.Custom
    **************************************************************************/

    /* Ensure the content spans the full width */
    #mainContent,
    .container {
        float: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    /* List items here you do not ever want to print */
    #header,
    #footer {
        display: none !important;
    }

    input[type="submit"],
    .button[type="submit"] {
        display: none;
    }

    input.text,
    input.text:focus,
    textarea,
    .select,
    .file,
    div.radio {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .select .arrow-wrap {
        display: none;
    }

    /* Required to make jquery.formit.js radio buttons printable */
    input.radio.hidden {
        display: inline !important;
        visibility: visible !important;
    }

}