/*
*  CSS file to format a page for printing
*/

@media print{
    head,header,footer{
        display:none !important;
    }
    /* Force the heading up so the breadcrumbs can be pushed above */
    .content__h1{
        padding-top:25px !important;
    }
    /* Breadcrumb section */
    .section__breadcrumb {
        display:inline !important;
    }
    /* Actual breadcrumb elements */
    .section__breadcrumb li {
        display:inline !important;
        list-style-type:none;
        padding-bottom:75px;
    }
    /* Adds the > back in to breadcrumbs except for last crumb */
    .section__breadcrumb li:not(:last-child):after {
        content: ' > ';
    }
}