
/* Autor J.Pecher 10.2019 */

.print { display: none; } /* Obsah print bude viditelny pouze pri tisku */

@media print {
  *, *:before, *:after {
    background-color: #fff !important;
    color: #000 !important;
    font-family: "Courier New", Courier, monospace;
    font-size: 10pt;
    font-weight: normal; 
  }
  .noprint { display: none; }
  .print { display: block; }

  #leftcol { display: none; width: 0; }
  #maincol { display: block; width: 100%; }
  #leftcol h2, #maincol h2, .box-ramecek { border: 0 none; }

}