/* CSS Document */

@media print {
DIV.PAGEBREAK {page-break-before: always}
DIV.SCREEN {display: none}    /*  you can "div" out anything that you don't want to be printed <div class="SCREEN"><img .....></div>  */
}



@media screen {
DIV.PRINT {display: none}   /*  If you want something to be printed but not displayed use <div class="PRINT"><p>This will be printed, but won't show up in the                                browser.</p></div>  */
}


@media print {
  * {
  background-color: white !important;
  background-image: none !important;
  color: black !important;
  }
}

