
@media print 
{
    body 
    {
        font-size: 12pt;
        font-family: Cambria, Times, "Times New Roman", serif;
        color: #000;
        background-color: #fff;
        margin: 0 10%;
        width: auto;
    }
    /* set widths of column structure floated elements to 100% */
    #content 
    {
        width: 100%;
    }
    #sidebar, #navbar 
    {
        display: none;
    }
    /* reset specified text color to black */
    h1, h2, p 
    {
        color: #000;
    }
    h1 
    {
        font-size: 18pt;
    }
    h2 
    {
        font-size: 16pt;
    }
    /* reset specified background color to white */
    header, footer 
    {
        background-color: #fff;
        margin-top: 0;
    }
    a:link, a:visited 
    {
        color: #000;
        text-decoration: none;
    }
    /* prints the URL in parentheses after external links - ignore parse error in CSS validator */
    a[href^="http"]:after 
    {
        content: ' (' attr(href) ') ';
    }
    picture
    {
        visibility: hidden;
        display: none;
    }
    
    .crumbs
    {
        display: none;
    }
}






