@media screen, projection {
	
	body {
    	background: #ff0000;
    	color: #ffff00;
	}
	
	/* Hier alle weiteren Styles für screen, projection */
	
}

@media print {
	
	body {
    	background: #fff;
    	color: #000;
	}
	
	/* Hier alle weiteren Styles für print */
	
}
