﻿main {
	background: transparent;
	border-color: transparent;
	margin-bottom: 70%;
}

#gallery {
	position: relative;
	background: none;
	border: none;
	margin-bottom: 0px;
}

#gallery figure {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-animation: wechseln 30s infinite;
	animation: wechseln 30s infinite;
}


@keyframes wechseln {
	0% {
		opacity: 1;
	}
	13% {
		opacity: 1;
	}
	16% {
		opacity: 0;
	}
	97% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes wechseln {
	0% {
		opacity: 1;
	}
	13% {
		opacity: 1;
	}
	16% {
		opacity: 0;
	}
	97% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


#gallery figure:nth-of-type(5) {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}

#gallery figure:nth-of-type(4) {
	-webkit-animation-delay: 10s;
	animation-delay: 10s;
}

#gallery figure:nth-of-type(3) {
	-webkit-animation-delay: 15s;
	animation-delay: 15s;
}

#gallery figure:nth-of-type(2) {
	-webkit-animation-delay: 20s;
	animation-delay: 20s;
}

#gallery figure:nth-of-type(1) {
	-webkit-animation-delay: 25s;
	animation-delay: 25s;
}


#gallerylkw {
	position: relative;
	background: none;
	border: none;
	margin-bottom: 0px;
}

@keyframes wechseln2 {
	0% {
		opacity: 1;
	}
	47% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	97% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes wechseln2 {
	0% {
		opacity: 1;
	}
	47% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	97% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#gallerylkw figure {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-animation: wechseln2 20s infinite;
	animation: wechseln2 20s infinite;
}

#gallerylkw figure:nth-of-type(1) {
	-webkit-animation-delay: 10s;
	animation-delay: 10s;
}

