fader {
	display:block;
	text-align:center;
	background: transparent;
	border-color: transparent;
}

#gallery {
	position: relative;
	margin: 0;
	background: none;
	border: none;
}

#gallery figure {
	position: absolute;
	display: inline-block;
	 top: 0em;
	left: 0em;
	z-index: -99;
	animation: wechseln 25s infinite;
}

#gallery figure:last-of-type {
	position: relative;
}

#gallery > figure figcaption {
	position: absolute;
  left: 8em;
	font-size: 1em;
	font-weight: bold;
	bottom: 2em;
	z-index: 2;
	color: white;
}

@keyframes wechseln {
	0% {
		opacity: 0;
	}
	12% {
		opacity: 1;
	}
	24% {
		opacity: 1;
	}
	36% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

#gallery figure:nth-of-type(2) {
	animation-delay: 5s;
	opacity: 0;
}

#gallery figure:nth-of-type(3) {
	animation-delay: 10s;
	opacity: 0;
}
#gallery figure:nth-of-type(4) {
	animation-delay: 15s;
	opacity: 0;
}
#gallery figure:nth-of-type(5) {
	animation-delay: 20s;
	opacity: 0;
}
