body {
	height: 100%;
	width: 100%;
	overflow: hidden;    /* damit unten der scroll balken verschwindet*/
}

#map-box {
	position: absolute;
	top: 100px;
	left: 455px;
	width: 100%;
	height: 265px;
	background-color: #808080;
}
#adres-box {
	position: absolute;
	top: 120px;
	left: 30px;
}

#adres-box h1 {
font-family:'Helvetica Neue', helvetica;
font-size: 20px;
padding: 10px 0px 0px 0px;
color: #808080;
text-align: left;
}
#adres-box h2 {
font-family:'Helvetica Neue', helvetica;
font-size: 16px;
color: #808080;
padding: 0px 0px 0px 0px;
text-align: left;
}
#adres-box p {
font-family:'Helvetica Neue', helvetica;
font-size: 16px;
color: #000000;
line-height: 1.5;
padding: 20px 0px 0px 0px;	
text-align: left;
}

#bilder-reihe {
	position: absolute;
	top: 375px;
	left: 30px;
	width: 100%;
	height: 200px;

}
#bilder-reihe ul{
	width: 100%;
	list-style: none;

}
#bilder-reihe ul li {
	float: left;
	width: 25%;
}
#bilder-reihe ul li img {
	width: 100%;
	height: 100%;
    -webkit-transition: all 1.0s ease-in-out;
    transition: all 1.0s ease-in-out;
}
#bilder-reihe ul li:hover img {
 -webkit-filter: blur(5px);

}