/*
	CSS-Datei für die Website www.beller-wohnungsanpassung.de
	(c) Roman Blöth
	
	Letzte Änderung........... :  31.10.2008
	Letzte W3C-CSS-Validierung :  31.10.2008

*/



/********************
* Grundeinstellungen:
********************/

body {
	background-color:	#FFF;
	color:				#000;
}

a {
	color:				#C8431C;
}

ul li {
	list-style-image:	url('../img/roter_punkt.png');
}

.hellblau {
	background-color:	#B0DFF5;
}

.orange {
	background-color:	#F37021;
	color:				#FFF;
}

.gelb {
	background-color:	#FECC00;
}

h1.rot,
h2.rot,
h3.rot {
	color:				#C8431C;
}



/*****************
 * Druck-Format: *
 *****************/
@media print {
	#container {
		margin:				0;
		padding:			0;
	}

	.hellblau,
	.orange,
	.gelb {
		background-color:	#FFF;
		color:				#000;
	}

	h1.rot,
	h2.rot,
	h3.rot {
		color:				#000;
	}

	ul li {
		list-style-image:	none;
		list-style-type:	disc;
	}

	.noprint {
		display:			none;
	}

}