/*
 * Print Style Sheet
 */
@media print {

    body {
        background:white;
        color:black;
        margin:0;
        font-family: times, serif;
        margin-top: 0em;
        padding-top: 0em;
    }

    p {
        text-align: justify;
    }
    a {
        text-decoration: none;
        font-style: italic;
        color: black;
    }

    #header { 
        display: block;
        font-size: 16pt; 
        color:black;
    }

    h1.storydate {
        display: none;
    }

    #content {

        display: block;
        float: none;
        width: auto;
        font-size: 12pt;

        h1, h2, h3, h4, h5, h6 { 
            page-break-after:avoid; 
            page-break-inside:avoid 
        }
        img { 
            page-break-inside:avoid; 
            page-break-after:avoid; 
        }
        blockquote, table, pre { page-break-inside:avoid }
        ul, ol, dl  { page-break-before:avoid }
    }

    #comments { display: none }
    #sidebar { display: none }
    #footer { display: none }
}
