/* 
	fade time in www.w3schools.com/w3css/4/w3.css too slow 
	redefined to be faster.
	timing of carousel must be coordinated with this duration.
*/


/* Duration must coordinate with slideshow.js */
/* WAS 4s */

.w3-animate-fading { animation:fading 6s infinite }

/* faster fade-in, then hold, then fade-out slowly */
@keyframes fading { 
		0%{opacity:0}
		20%{opacity:1}
		70%{opacity:1}
		100%{opacity:0}
} 
