@charset "utf-8";
/* my printstyle.css */

/* Print. */
@media print {
  /* cssclsNoPrint class. */
  .cssclsNoPrint {display:none}
}

/* Screen. */
@media screen {
  /* cssclsNoScreen class. */
  .cssclsNoScreen {display:none}
}

/*code to omit sections that you don't want printed, copied from "https://sites.google.com/a/icbconsulting.com/kbase/html-javascript/print-only-a-portion-of-a-web-page" and applied 11-Nov-11*/