body {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.galeriecontainer {
	display: flex;
	flex-wrap: wrap;
}

.galeriecontainer a {
	flex: 1;
	display: block;
	min-width: 150px;
	margin-left: 10px;
}

.galerieontainer a:first-of-type {
	margin-left: 0;
}

a.fslightbox img {
	border: solid rgba(255,255,255,0) 2px;
	transition: all 0.3s ease-in-out;
}

a.fslightbox img:hover {
	border-color: var(--ocker);
}

.fslightbox img {
	width: 100%;
	height: auto;
}

#abdunkeln {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, 0.8);
	display: none;
	z-index: 3000;
}

.lightboxdiv {
	top: 0;
	left: 0;
	width: 80%;
	height:80%;
	margin-left: auto;
	margin-right: auto;
	padding: 5% 10% 15% 10%;
	position: fixed;
	z-index: 3001;
	display: block;
	text-align: center;
	z-index:3001;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	opacity: 0.0;
	transition: all 2.0s ease-in-out;
}

.lightboxdiv.show {
	z-index: 3002;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
}

.lightboxbild {
	max-width: 60%;
	max-height: 60%;
	margin-top: 0%;
	position: relative;
	border: solid 4px #FFFFFF;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	transition: all 2.0s ease-in-out;
}

.lightboxdiv.show .lightboxbild {
	max-width: 95%;
	max-height: 95%;
}

.lightboxdiv p {
	text-align: center;
	color: #FFFFFF;
}

.lightboxswitch {
	position: absolute;
	left: 50%;
	top: 20px;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	display: none;
	z-index: 4000;
	background-position: center center;
	background-size: 100% 100%;
}

.lightboxswitch:hover {
	cursor: pointer;
}

#lightboxstop {
	background-image: url(stop.png);
	float: left;
	display: block;
}

#lightboxstop:hover {
	background-image: url(stop_hover.png);
}

#lightboxstop.stop {
	background-image: url(play.png);
	float: right;
}

#lightboxstop.stop:hover {
	background-image: url(play_hover.png);
}

#lightboxclose {
	position: fixed;
	width: 30px;
	height: 30px;
	background-image: url("close.png");
	background-size: contain;
	background-position: center center;
	background-repeat: no-reapat;
	right: 20px;
	top: 20px;
	left: auto;
	cursor: pointer;
	display: block;
}

#lightboxswitchleft {
	background-image: url(lightboxswitchleft.png);
	left: 50%;
	margin-left: -140px;
}

#lightboxswitchleft:hover {
	background-image: url(lightboxswitchleft_hover.png);
	cursor: pointer;
}
	
#lightboxswitchright {
	background-image: url(lightboxswitchright.png);
	left: 50%;
	margin-left: 100px;
}

#lightboxswitchright:hover {
	background-image: url(lightboxswitchright_hover.png);
	cursor: pointer;
}
	
.galeriecontainer {
	margin-top: 20px;
}

.lightboxthumb {
	width: 142px;
	height: 142px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	margin: 0 0px 5px 0;
}