p {
	font-family: arial;
	font-size: 18px;   
}
body {
	background-color: #FFF2BF;
}
#zutaten {
	position: absolute;
	top: 0px;
	left: 10px;
	font-family: arial;
	font-size: 24px; ;	
}

#vorschauPizza {
	width: 520px;
	height: 520px;
	background: transparent url('../bilder/boden.gif') no-repeat left top;
	margin-left: 300px;
	position: relative;
}

/* 
	Alle Bilder in unserer Vorschaupizza sind absolut positioniert
*/
#vorschauPizza img {
	position: absolute;              	
}

/*
	Die Zutatenbilder brauchen eine vernünftige Größe
*/
#kaese img {
	height: 180px;
	width: 180px;	
}
#pilze img {
	height: 150px;
	width: 180px
}
#oliven img {
	height: 60px; 
	width: 49px;
}
#peperoni img {
	height: 120px;
	width: 120px;	
}
#salami img {
	height: 100px;
	width: 100px;	
}
#schinken img {
	height: 150px;
	width: 150px;	
}
#ananas img {
	height: 100px;
	width: 100px;
}

/* 
	Vorschau-Box für die Zutaten in der linken oberen
	Ecke des Bildschirms. Soll dem Benutzer ein Bild als 
	Appetitmacher zeigen.
*/
#zutatenVorschau {
	font-family: Arial;
	font-size: 18px;
	padding: 5px;
	border: 1px solid #ccc;	
	background-color: white;
	text-align: center;
	position: absolute;
	top: 20px; 
	right: 20px;
	width: 115px;
	z-index: 100;
}

/*
	Damit die <label> - Elemente für den Benutzer klickbar
	erscheinen.
*/            
label { cursor: pointer; }

/*
	MouseOver-Effekt für die <label> - Elemente
*/
label:hover { color: blue; }

