@import url("/Assets/CSS/Lesson.css");

#Slideshow {
	width: 24vw;
	height: 32vw;
}
div.french {
	position: relative;
	text-align: center;
	width: 67vw;
}
div.french img {
	height: 25vw;
}
div.french div {
	position: absolute;
	right: 0;
	top: 0;
}
div.french div img{
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
	animation: fade 6s infinite;
}
	div.french div img:first-child {
		animation-delay: 0s;
	}
	div.french div img:last-child {
		animation-delay: 3s;
	}
@keyframes fade {
	  0% { opacity: 0; }
	 25% { opacity: 1; }
	 50% { opacity: 1; }
	100% { opacity: 0; }
}

#Thumb-2 a {
	display: inline-block;
	max-height: 50vh;
	overflow: auto;
}
	#Thumb-2 a::after {
		content: "";
	}
	#Thumb-2 a::-webkit-scrollbar {
		display: none;
	}
#Thumb-2 img {
	width: 100%;
}