/* CSS for printing */
/* note probably will not overcome inline styles */
 @page {margin: .8in .7in .8in .7in;}

/* Start CSS that applies only when printing */

 @media print {

/* Standard adjustments for nice printing*/
    img {max-width: 500px;}
    body {font-family: "times new roman", times, serif; font-size:12pt; 
      background: #FFF; color: #000;
      margin: 0;
    }
    
    a:link, a:visited  { color: black; text-decoration: none;  }
    h1 {page-break-before:avoid;}
    img {page-break-inside: avoid;}
    
  /* Note standard IDs & Classes forced to print or not to print*/
    #header, #menu, #sidebar, #footer, .noprint {display: none;}
     .onlyprint {display: block;}
     .toc, .online {display:none;}
     
  /* Special rmj syllabi Classes adjusted for nice printing*/
     .task {
     background-color:transparent;
     max-width:6.5in;
     margin-left:0em;
     margin-right:auto;
     }
     .altreading   a:link, a:visited {color: black;}
     .altreading {color: black;}
     
     .studyqs {
     max-width:90%;
     }
     
  /* Remove background from Titles blocks */
   div#titles {
   background: transparent; 
   }
   div#secondtitles {
   background: white; 
   }



  /* Tooltips forced not to print ,.ttRec,.ttAdd,.ttSQs */
    .ttTask:hover:after {display: none;width:0px; content:""; border:none;}
    
    .ttTask:hover:before {display: none;width:0px; content:""; border:none;}
               
     





}

/* End CSS that applies only when printing */
