/*
 ColorBox Core Style:
 The following CSS is consistent between example themes and should not be altered.
 */

#colorbox, #cboxOverlay, #cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: hidden;
}

#colorbox {
	border-radius: 10px;
	box-shadow: 6px 6px 5px 0px rgba(0,0,0,0.5);
}

#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
	clear: left;
}
#cboxContent {
	position: relative;
}
#cboxLoadedContent {
	overflow: auto;
}
#cboxTitle {
	margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#cboxLoadingGraphic{background:url("../images/loading.gif") no-repeat center center;}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
	cursor: pointer;
}
.cboxPhoto {
	float: left;
	margin: auto;
	border: 0;
	display: block;
}
.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
	box-sizing: content-box;
}

/*
 User Style:
 Change the following styles to modify the appearance of ColorBox.  They are
 ordered & tabbed in a way that represents the nesting of the generated HTML.
 */
#colorbox {
background: #fff;
}
#cboxContent .bildunterschrift {
margin-top: 4px;
}
#cboxTitle,
#cboxCurrent,
#cboxSlideshow {
	display:none;
	color:#fff;
}
#cboxOverlay,
.cboxIframe {
	background: #fff;
}
#cboxError {
	padding:100px;
}
#cboxLoadedContent,
#cboxLoadingOverlay {
	background: #fff;
}
#cboxLoadingGraphic {
}
#cboxPrevious,
#cboxNext {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
}
#cboxPrevious {
	left: 2px;
}
#cboxPrevious:hover {
	background-position: bottom left;
}
#cboxNext {
	right: 2px;
}
#cboxNext:hover {
	background-position: bottom right;
}
#cboxClose {
	position: absolute;
	top: 12px;
	right: 30px;
	display: block;
	width: 40px;
	height: 40px;
	text-indent: -9999px;
	background: url(../images/close.png) left top no-repeat transparent;
	border: none;
}