﻿/* -----------------------------------------------------------------------------*/
/* ----------------------------                  -------------------------------*/
/* ----------------------------  Bildtext-Animation  -------------------------------*/
/* ----------------------------                  -------------------------------*/
/* -----------------------------------------------------------------------------*/
/* Dieser Slider soll lediglich den Info-Text der ersten Seite als BILD durchblenden.
   Es ist NICHT vorgesehen, zusätzlich Bildunterschriften einzusetzen: Aus diesem
   Grunde wird ein Slider mit IMG verwendet und nicht mit FIGURE. Dieser Slider ist
   für maximal 5 Bilder vorgesehen.
   Die Bilder werden bei OPACITY=0 mit POSITION:ABSOLUTE gestapelt und in Version C durchgeblendet. */
    
.textTV {position:relative; overflow:hidden;}
.textTV img {position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;} /*zentrieren des Bildes */

/* ----- 3 Bilder ----- */
.textTV#drei img{-webkit-animation:texttv_fade3 24s ease-in-out infinite; -moz-animation:texttv_fade3 24s ease-in-out infinite;-o-animation:texttv_fade3 24s ease-in-out infinite;
                 animation:texttv_fade3 24s ease-in-out infinite; 
				 opacity:0;}

.textTV#drei img:nth-child(1){-webkit-animation-delay:0s;-moz-animation-delay:0s;-o-animation-delay:0s; animation-delay:0s;}
.textTV#drei img:nth-child(2){-webkit-animation-delay:8s;-moz-animation-delay:8s;-o-animation-delay:8s; animation-delay:8s;}
.textTV#drei img:nth-child(3){-webkit-animation-delay:16s;-moz-animation-delay:16s;-o-animation-delay:16s; animation-delay:16s;}
@-moz-keyframes texttv_fade3 {
	0%{opacity:0;} 
	12.5%{opacity:1;} 
	33.33%{opacity:1;} 
	45.83%{opacity:0;} 
	100%{opacity:0;}
	}
@-o-keyframes texttv_fade3 {
	0%{opacity:0;} 
	12.5%{opacity:1;} 
	33.33%{opacity:1;} 
	45.83%{opacity:0;} 
	100%{opacity:0;}
	}
@-webkit-keyframes texttv_fade3 {
	0%{opacity:0;} 
	12.5%{opacity:1;} 
	33.33%{opacity:1;} 
	45.83%{opacity:0;} 
	100%{opacity:0;}
	}
@keyframes texttv_fade3 {
	0%{opacity:0;} 
	12.5%{opacity:1;} 
	33.33%{opacity:1;} 
	45.83%{opacity:0;} 
	100%{opacity:0;}
	}
	
/* ----- 4 Bilder ----- */
.textTV#vier img{-webkit-animation:texttv_fade4 28s ease-in-out infinite; -moz-animation:texttv_fade4 28s ease-in-out infinite;-o-animation:texttv_fade4 28s ease-in-out infinite;
                  animation:texttv_fade4 28s ease-in-out infinite; 
                  opacity:0;}

.textTV#vier img:nth-child(1){-webkit-animation-delay:0s; -moz-animation-delay:0s; -o-animation-delay:0s; animation-delay:0s;}
.textTV#vier img:nth-child(2){-webkit-animation-delay:7s; -moz-animation-delay:7s; -o-animation-delay:7s; animation-delay:7s;}
.textTV#vier img:nth-child(3){-webkit-animation-delay:14s; -moz-animation-delay:14s; -o-animation-delay:14s; animation-delay:14s;}
.textTV#vier img:nth-child(4){-webkit-animation-delay:21s; -moz-animation-delay:21s; -o-animation-delay:21s; animation-delay:21s;}

@-moz-keyframes texttv_fade4 {
	0%{opacity:0;} 
	10.7%{opacity:1;} 
	25%{opacity:1;} 
	35.7%{opacity:0;} 
	100%{opacity:0;}
	}
@-o-keyframes texttv_fade4 {
	0%{opacity:0;} 
	10.7%{opacity:1;} 
	25%{opacity:1;} 
	35.7%{opacity:0;} 
	100%{opacity:0;}
	}
@-webkit-keyframes texttv_fade4 {
	0%{opacity:0;} 
	10.7%{opacity:1;} 
	25%{opacity:1;} 
	35.7%{opacity:0;} 
	100%{opacity:0;}
	}
@keyframes texttv_fade4 {
	0%{opacity:0;} 
	10.7%{opacity:1;} 
	25%{opacity:1;} 
	35.7%{opacity:0;} 
	100%{opacity:0;}
	}

	
/* ----- 5 Bilder ----- */
	
.textTV#fünf img{-webkit-animation:texttv_fade5 35s ease-in-out infinite;-moz-animation:texttv_fade5 35s ease-in-out infinite;-o-animation:texttv_fade5 35s ease-in-out infinite; 
                 animation:texttv_fade5 35s ease-in-out infinite; 
                 opacity:0;}

.textTV#fünf img:nth-child(1){-webkit-animation-delay:0s; -moz-animation-delay:0s; -o-animation-delay:0s; animation-delay:0s;}
.textTV#fünf img:nth-child(2){-webkit-animation-delay:7s; -moz-animation-delay:7s; -o-animation-delay:7s; animation-delay:7s;}
.textTV#fünf img:nth-child(3){-webkit-animation-delay:14s; -moz-animation-delay:14s; -o-animation-delay:14s; animation-delay:14s;}
.textTV#fünf img:nth-child(4){-webkit-animation-delay:21s; -moz-animation-delay:21s; -o-animation-delay:21s; animation-delay:21s;}
.textTV#fünf img:nth-child(5){-webkit-animation-delay:28s; -moz-animation-delay:28s; -o-animation-delay:28s; animation-delay:28s;}

@-moz-keyframes texttv_fade5 {
	0%{opacity:0;} 
	8.57%{opacity:1;} 
	20%{opacity:1;} 
	28.57%{opacity:0;} 
	100%{opacity:0;}
	}
@-o-keyframes texttv_fade5 {
	0%{opacity:0;} 
	8.57%{opacity:1;} 
	20%{opacity:1;} 
	28.57%{opacity:0;} 
	100%{opacity:0;}
	}
@-webkit-keyframes texttv_fade5 {
	0%{opacity:0;} 
	8.57%{opacity:1;} 
	20%{opacity:1;} 
	28.57%{opacity:0;} 
	100%{opacity:0;}
	}
@keyframes texttv_fade5 {
	0%{opacity:0;} 
	8.57%{opacity:1;} 
	20%{opacity:1;} 
	28.57%{opacity:0;} 
	100%{opacity:0;}
	}

