﻿@media print {

    @page {
        margin: 0.5in;
    }


    /* REMOVE EVERYTHING EXCEPT CONTENT */

    body * {
        visibility: hidden !important;
    }


    #content,
    #content * {
        visibility: visible !important;
    }


    #content {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        background: white !important;
    }


    /* HIDE HEADER ELEMENTS */

    #top,
    #logo,
    #social-media,
    #topnav,
    #subbanner,
    #rightside,
    #bottom-sections,
    #footer,
    .footer {
        display: none !important;
    }


    /* TEXT */

    body {
        background: white !important;
        color: black !important;
        font-family: Verdana, Arial, sans-serif !important;
    }


    h1 {
        font-size: 20pt !important;
        text-align: center !important;
        margin: 0 0 15px 0 !important;
    }


    h2 {
        font-size: 16pt !important;
    }


    p,
    li,
    td,
    th {
        font-size: 11pt !important;
        line-height: 150% !important;
    }


    /* CALCULATOR FIX */

    input,
    select,
    textarea,
    button {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
    }


    /* TABLES */

    table {
        width: 100% !important;
        page-break-inside: avoid !important;
    }


    /* REMOVE LINKS */

    a {
        color: black !important;
        text-decoration: none !important;
    }

}