/* CSS Document */

/** =================================================================
    print.css  
    wird in style.css per @import eingebunden  
 ================================================================= */

@media print {
	* {
		box-shadow: none !important;
		text-shadow: none !important;
	}
	html {
		background-color: white;
		color: black;
	}
	.site-nav, .site-footer, .back-to-top {display: none;}
	/*NUR fuer Seite index.html*/
	img.bg.intro__image {display: none;}
	/*NUR fuer Seite slideshow.html*/
	.curtain, .fixiert {display: none;}
}/*ENDE @media print*/
