#lightbox {
	position: fixed; /* keeps the lightbox window in the current viewport */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.95);
	text-align: center;
	z-index: 100000;
	padding-top: 30px;
	text-align: center;
}

#lightbox-container {
	z-index: 100001;
	position: relative;
	display: inline-block;
	padding: 15px 35px 15px 35px;
	box-shadow: 0 0 10px #555555;
	-webkit-box-shadow: 0 0 10px #555555;
	-moz-box-shadow: 0 0 10px #555555;
	border-radius: 10px 10px 10px 10px;
	background-color: #ffffff;
	max-width: 90%; /* Das Bild soll nicht größer angezeigt werden, als das Browserfenster im Moment ist. */
	height: auto;
	min-width: 100px;
	min-height: 100px;
	background-repeat: no-repeat;
	background-position: center;
	box-sizing: border-box;
}

#lightbox-image {
	border-radius: 0 /*10px 10px 10px 10px*/;
	max-width: 100%; /* Das Bild soll nicht größer angezeigt werden, als das Browserfenster im Moment ist. */
	height: auto;
	margin: auto;
}

#lightbox-close
{
	z-index: 100003;
	background-image: url('../images/close.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	border: 0px solid #bbb;
	position: absolute;
	cursor: pointer;
	right: -15px;
	top: -15px;
	width: 32px;
	height: 32px;
}

#lightbox-prev-enabled {
	background-image: url('../images/prev.png');
	background-repeat: no-repeat;
	background-position: left 5px center;
	float: left;
	left: 0;
	top: -0px;
	width: 35%;
	height: 100%;
	position: absolute;
	z-index: 100002;
}

#lightbox-prev-disabled {
	display: none;
	float: left;
	left: 0;
	top: -0px;
	width: 35%;
	height: 100%;
	position: absolute;
	z-index: 100002;
}

#lightbox-next-enabled {
	background-image: url('../images/next.png');
	background-repeat: no-repeat;
	background-position: right 5px center;
	float: right;
	right: 0;
	top: -0px;
	width: 35%;
	height: 100%;
	position: absolute;
	z-index: 100002;
}

#lightbox-next-disabled {
	display: none;
	float: right;
	right: 0;
	top: -0px;
	width: 35%;
	height: 100%;
	position: absolute;
	z-index: 100002;
}

#lightbox-prev-link {
	cursor: pointer;
}

#lightbox-next-link {
	cursor: pointer;
}

#lightbox a:link {
	color: #b40000;
	text-decoration: none;
}

#lightbox a:link:hover {
	color: #000000;
	text-decoration: none;
}

#lightbox-close:hover
{
	/*font-weight: bold;*/
}

#lightbox a:focus { /* Eventuell vom Theme vorhandene Umrandungen entfernen, da diese die Optik stören. */
	outline: 0;
}

a.lightbox
{
	cursor: url('../images/loupe.cur'), pointer;
}

.show-all-preview-images {
	margin-top: -15px;
	margin-bottom: 25px;
}	

.show-all-preview-images span.show-all-preview-images-icon {
	cursor: pointer;
	position: relative;
	top: 5px;
	font-weight: normal;
	color: #555555;
	background: url("../images/show-all-preview-images.png") no-repeat scroll right center transparent;
	padding-right: 20px;
}

/* Bild im Vollbild-Modus anzeigen. */

.fullscreen-link {
	float:left;
	font-size:0.8em;
	color:#999999;
	cursor: pointer;
	position:relative;
	z-index: 100005;
}

.fullscreen-image:-webkit-full-screen {
	/*width: 100%;*/
	width: auto;
	height: auto;
	margin: auto;
} 
 
.fullscreen-image:-moz-full-screen {
	/*width: 100%;*/
	width: auto;
	height: auto;
	margin: auto;
}
  
.fullscreen-image:-ms-full-screen {
	/*width: 100%;*/
	width: auto;
	height: auto;
	margin: auto;
} 
 
.fullscreen-image:-o-full-screen {
	/*width: 100%;*/
	width: auto;
	height: auto;
	margin: auto;
} 
 
.fullscreen-image:fullscreen {
	/*width: 100%;*/
	width: auto;
	height: auto;
	margin: auto;
}