<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

#albumabdunkeln {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0, 0.8);
	display: none;
	z-index: 3005;
}

.albumdiv {
	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;
}

.albumdiv.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;
}

.albumbild {
	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;
}

.albumdiv.show .albumbild {
	transform: scale(1);
	opacity: 1;
}

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

#albumswitch {
	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%;
}

.albumswitch:hover {
	cursor: pointer;
}

.albumplay {
	background-image: url(play.png);
	float: left;
}

.albumplay:hover {
	background-image: url(play_hover.png);
}

.albumstop {
	background-image: url(stop.png);
	float: right;
}

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

.albumswitch {
	width: 40px;
	height: 40px;
	z-index: 4000;
	background-position: center center;
	background-size: 100% 100%;
	position: absolute;
	top: 20px;
	display: block;
}

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

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

#albumswitchright:hover {
	background-image: url(lightboxswitchright_hover.png);
	cursor: pointer;
}

#albumclose {
	background-image: url('close.png');
	right: 20px;
	left: auto;
	display: block;
}

.albumthumb {
	width: 200px;
	height: 200px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	margin: 0 0px 5px 0;
}</pre></body></html>