body {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

#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-height: 95%;
	max-width: 95%;
	transform: scale(0.6);
	opacity: 0;
	margin-top: 0%;
	position: relative;
	border: solid 4px #FFFFFF;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	transition: all 0.5s ease-in-out;
}

.lightboxdiv.show .lightboxbild {
	transform: scale(1);
	opacity: 1;
}

.lightboxdiv p {
	text-align: center;
	color: #FFFFFF;
}

#lightboxswitch {
	position: fixed;
	left: 50%;
	top: 20px;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	display: block;
	z-index: 4000;
	background-position: center center;
	background-size: 100% 100%;
}

.lightboxswitch:hover {
	cursor: pointer;
}

.lightboxplay {
	background-image: url(play.png);
	float: left;
}

.lightboxplay:hover {
	background-image: url(play_hover.png);
}

.lightboxstop {
	background-image: url(stop.png);
	float: right;
}

.lightboxstop:hover {
	background-image: url(stop_hover.png);
}

.lightboxswitch {
	width: 40px;
	height: 40px;
	z-index: 4000;
	background-position: center center;
	background-size: 100% 100%;
	position: absolute;
	top: 20px;
	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;
}

#lightboxclose {
	background-image: url('close.png');
	right: 20px;
	left: auto;
	display: block;
}

.galeriecontainer {
	margin-top: 20px;
}

.lightboxthumb,
.galeriethumb,
.galeriecontainer .fslightbox {
	width: 142px;
	height: 142px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	margin: 0 0px 5px 0;
}