/* Printer Formatter - This CSS sheet formats Helping Hands web pages for the printer.  It suppresses the header, footer, and left-hand navigation window.
It also suppresses the InterSolver sponsor message at the bottom of each live web page.
Written by Jim Ogle - 06-19-2024 */

/* override styles when printing */
@media print {

/* make the print background white and the printed text black */
  body {
    margin: 0;
    color: #000;
    background-color: #fff;
  }

/* prepare header graphic for displaying only in print outs; the actual code is in each web page at the top of the content section */
img {
     display: block !important; 
  }


/* Suppress header, footer, and navigation */
#header, #footer, #content_left {
  display: none;
}

/* Suppress "sponsor" message */
#sponsor { display: none;
}
}
