@charset "utf-8";

/*Hintergrundbild*/
body {
	background-image: url("../images/IMG_2309.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*Farbe Layout*/
header {
	background-color: #b6babd;
}

.sidebar1 {
	background-color: #b6babd;
	
	
}

.container {
	background: rgba(255,255,255,0.8);
}

ul.nav a, ul.nav a:visited { /* Durch Gruppieren dieser Selektoren wird sichergestellt, dass die Hyperlinks auch nach dem Aufrufen das Erscheinungsbild einer Schaltfläche beibehalten. */
	background-color: #b6babd;
	font-weight:bold;
	/*text-shadow: 0 -1px 1px #bad030, 0 1px 1px #007000;
	color:#008000;*/	
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* Hiermit wird der Hintergrund und die Textfarbe bei der Navigation mit der Maus und der Tastatur geändert. */
	background-color: #83888c;
	
}

footer {
	background-color: #b6babd;
}

/*Slide Content*/
#wss_erwachsen{
	opacity:0;
	-webkit-transition:opacity 2.0s linear 0s;	
	-moz-transition:opacity 2.0s linear 0s;
	-o-transition:opacity 2.0s linear 0s;
	transition:opacity 2.0 linear 0s;	
}

#wss_kinder{
	opacity:0;
	-webkit-transition:opacity 2.0s linear 0s;	
	-moz-transition:opacity 2.0s linear 0s;
	-o-transition:opacity 2.0s linear 0s;
	transition:opacity 2.0 linear 0s;	
}

#wss_arbeit{
	opacity:0;
	-webkit-transition:opacity 2.0s linear 0s;	
	-moz-transition:opacity 2.0s linear 0s;
	-o-transition:opacity 2.0s linear 0s;
	transition:opacity 2.0 linear 0s;	
}

.erwachsen{
	float:left;
	margin-left:35px;
	width:200px;
	height:200px;
	background-color:#06F;	
	padding-top:5px;	
	
	box-shadow: -10px 10px 8px #333;
	-webkit-box-shadow: -10px 10px 8px #333;
	-khtml-box-shadow: -10px 10px 8px #333;
	-moz-box-shadow: -10px 10px 8px #333;
}

.kinder{	
	float:left;
	margin-left:35px;
	width:200px;
	height:200px;
	background-color:#3F3;
	padding-top:5px;	
	
	box-shadow: -10px 10px 8px #333;
	-webkit-box-shadow: -10px 10px 8px #333;
	-khtml-box-shadow: -10px 10px 8px #333;
	-moz-box-shadow: -10px 10px 8px #333;
}

.arbeit{	
	float:left;
	margin-left:35px;
	width:200px;
	height:200px;
	background-color:#CC3;
	padding-top:5px;
	margin-bottom:20px;	
	
	box-shadow: -10px 10px 8px #333;
	-webkit-box-shadow: -10px 10px 8px #333;
	-khtml-box-shadow: -10px 10px 8px #333;
	-moz-box-shadow: -10px 10px 8px #333;
}


