﻿/*
Purpose:    removes most masterpage objects, colors, images, and layout so that
            users get reasonably clean text when printing help or HTML screens.
            
Note:       MUST be last CSS file alphabetically to override other values.
            MUST use @media Print "rule" to only be valid during printing.
            Displaying anchor URLs is commented out because it causes problems
            with incorrect wrapping of table text columns.
            
2010-07-13  Walt Edwards created.
*/
@media Print
{
    #divBanner, #divBreadcrumb, #tblHeading, #tblMenu
    {
        display: none;
    }

    body, 
    #divMain, 
    #divMain a,
    #divMain a:active,
    #divMain a:hover, 
    #divMain a:link, 
    #divMain a:visited
    #divMain div, 
    #divMain h1, 
    #divMain h2, 
    #divMain h3, 
    #divMain p, 
    #divMain span, 
    #divMain table, 
    #divMain td, 
    #divMain tr,
    #divPage,
    #divTitle
    {
        font-family: Helvetica, Arial;
        font-size: 12pt;
        color: black; /* color: Red; */
        background: White;
        height: auto;
     /* margin: 0 0 0 0; */
        overflow: auto;
        padding: 0 0 0 0;
     /* text-align: left; */
     /* vertical-align: top; */
        white-space: normal;
        width: auto;
    }

    #divContent
    {
        margin: 0 0 0 -15px;
        padding: 0 0 0 0;
    }

    #divMain h1, 
    #divMain h2, 
    #divMain h3
    {
        font-size: 16pt;
        font-weight: bold;
  
    }

    #divMain a,
    #divMain a:active,
    #divMain a:hover, 
    #divMain a:link, 
    #divMain a:visited
    {
/*        color: Red;
        width: 200px; */
        text-decoration: underline;
    }

/*
    #divMain p a:after
    {
        content: " (" attr(href) ") ";
        font-size: 12pt;
        text-decoration: italic;
    }
*/

    #divTitle 
    {
        background: none;
        font-size:24px;
        font-weight: bold;
        height: 24px;
    }
}

