/** 
 * Circle of the Dragon
 * Stylesheet to render printer-friendly print outs.
 *
 * @author K. McCormick
 */
@media print {
    .noprint {
        display: none;
    }
    #access-nav, #access-nav ul {
        display: none;
    }
    #bordertop, #borderright, #borderleft, #borderbottom {
        display: none;
    }
    #navigation {
        display: none;
    }
    #footer {
        display: none;
    }
    @page {
        size: 5.5in 8.5in portrait;
        margin-top: 0.75in;
        margin-bottom: 0.75in;
        margin-left: 1in;
        margin-right: 1in;
    }
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    .barClass {
        page-break-after: avoid;
    }
    body {
        font-family: Georgia, serif;
        font-size: 12pt;
    }
    .quotation {
        margin-left: 1in;
        margin-right: 1in;
    }
    .barClass .separatorImage {
        display: none;
    }
    .barClass {
        border-style: solid;
        border-top-width: 5px;
        border-bottom-width: 0px;
        border-left-width: 0px;
        border-right-width: 0px;
        border-color: #000000;
    }
    .inlinenote a {
        text-decoration: none;
        color: #000000;
    }
    .navtotop {
        display: none;
    }
}
