/* CSS - Consolidated Style Sheet for all Outdoor Check Lists
   By:  Dennis Struck 
        CheckListPrint.css
        1 Apr 2006 (for real!)
        Copyright(c) 2006, by Dennis & Terry Struck, All Rights Reserved.
   Rev: 
   Rem: #ID, .Class */


body                {color: black; background: white;}
a, p                {color: black; background: white;}
pre                   {page-break-inside: avoid; page-break-inside: avoid; 
             font-family: "New Courier", Courier, monospace;
             line-height: .9em;}
img                  {position: relative; visibility: hidden; align: right;}
img.printme  {position: relative; visibility: visible;}
form                 {position: relative; visibility: hidden;}

/* Spent hours trying to get the div check list text to print over the hidden image.  Image hidden for printer .css only to save print time.  Long story short, can't, so image moved to right side display and when it is printer hidden it does not take up any line space as it did on align left or bottom.  */


/* have yet to make any @page stuff work! */
@page 
{
 @top-left 
 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 8pt;
  content: "www.struck.us,&copy;2005";
 }
 counter-increment: pages;

 @bottom-center 
 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 8pt;
  content: "Page " counter(pages);
 }
}

