@media print {

	@media print {
  /* Alle Elemente ausblenden */
  body, body * {
    display: none !important;
  }

  /* Spezifisch Header und Footer ausblenden */
  header, footer, .header, .footer {
    display: none !important;
  }

  /* Leere Seite mit optionaler Nachricht 
  body:after {
    content: "Diese Seite kann nicht ausgedruckt werden";
    display: block !important;
    text-align: center;
    font-size: 14pt;
    padding-top: 50%;
	color:black;
  }*/

  /* Seitenränder entfernen */
  @page {
    margin: 0;
  }

  /* Hintergrund weiß setzen */
  body {
    background-color: white !important;
  }
}

}
