/* styles-print.css */
/*
@media print
{
    body 
    { 
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 14px;
        color: black;
        background: white none;
    }

    body a.printer
    {
        display:none;
    }

    body#thoughts a.printer,
    body#resume a.printer
    {
        display:inline;
    }

    .noprint
    {
        display:none;
    }
}
*/

body 
{ 
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    color: black;
    background: white none;
}

body a.printer
{
    display:none;
}

body#thoughts a.printer,
body#resume a.printer
{
    display:inline;
}

.noprint
{
    display:none;
}
