/* ANGABEN FÜR GALERIE & SLIDER */

/* Hintergrund */

body,
#supersized li,
#supersized li.image-loading {
	background: #f3f3eb;
}

/* große Pfeile links rechts */

a#prevslide,
a#nextslide {
	background: none;
	position: absolute;
	height: 100%;
	width: 25%;
	top: 0;
}

a#prevslide {
	background-clip: border-box;
	background-origin: padding-box;
	background-size: auto auto;
	margin-left: 60px;
}

a#nextslide {
	background-clip: border-box;
	background-origin: padding-box;
	background-size: auto auto;
	margin-right: 50px;
}

a#prevslide:hover,
a#nextslide:hover {
	cursor: pointer;
}

a#prevslide:hover {
	background: url('/fileadmin/template/images/icons/prev-gallery.png') no-repeat left center;
}

a#nextslide:hover {
	background: url('/fileadmin/template/images/icons/next-gallery.png') no-repeat right center;
}


/* FULLSCREEN GALERIE */

/* Container mit Button "zurück" & "Play / Pause" */

.headerbilder .actions {
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
	width: 250px;
	text-align: left;
	background: none;
	font: 16px 'DINOTMedium', Arial, Helvetica, Geneva, Verdana, sans-serif;
	text-transform: uppercase;
	margin-right: auto;
	margin-left: auto;
}

a.back,
a#pausebutton,
a#playbutton {
	padding: 10px 15px 10px 30px;
	color: white;
	text-decoration: none;
}

a.back {
	background: rgba(81, 65, 48, 0.7) url('/fileadmin/template/images/icons/prev.png') no-repeat 5px center;
}

#pausebutton {
	background: rgba(81, 65, 48, 0.7) url('/fileadmin/template/images/icons/pause.png') no-repeat 10px center;
}

#playbutton {
	background: rgba(81, 65, 48, 0.7) url('/fileadmin/template/images/icons/next.png') no-repeat 10px center;
}

a.back:hover,
a#pausebutton:hover,
a#playbutton:hover {
	background-color: rgba(81, 65, 48, 0.9);
	cursor: pointer;
}

/* Container mit den Thumbnails */

#thumb-tray {
	position: fixed;
	z-index: 3;
	bottom: 0;
	left: 0;
	height: 85px;
	width: 100%;
	overflow: hidden;
	text-align: center;
	background-color: rgba(81, 65, 48, 0.7);
}

/* Pfeile links / rechts bei den Thumbnails */

#thumb-back, 
#thumb-forward {
	position: absolute;
	z-index: 5;
	bottom: 0;
	height: 85px;
	width: 55px;
	background-color: #514130;
}

#thumb-back,
#thumb-back:hover {
	left: 0;
	background: #514130 url('/fileadmin/template/images/icons/prev-thumbs.png') no-repeat center center;
	cursor: pointer;
}

#thumb-forward,
#thumb-forward:hover {
	right: 0;
	background: #514130 url('/fileadmin/template/images/icons/next-thumbs.png') no-repeat center center;
	cursor: pointer;
}

/* Liste mit den Thumbs */

ul#thumb-list {
	display: inline-block;
	list-style: none;
	position: relative;
	left: 0;
	padding: 0;
}

ul#thumb-list li {
	padding: 10px 0 0 20px;
	list-style: none;
	display: inline;
	overflow: hidden;
	float: left;
	margin: 0;
}

ul#thumb-list li img {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}

/* aktuell angezeigter Thumb + hover */

ul#thumb-list li.current-thumb img, 
ul#thumb-list li:hover img {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
}

ul#thumb-list li:hover {
	cursor: pointer;
}

/* Größe der Thumbs */

ul#thumb-list li img {
	width: 89px;
	height: 64px;
}

#thumb-list li.thumb0 {
	margin-left: 55px;
}