/* cmsms stylesheet: Michelet-odeon Slider-1 modified: 11/14/15 16:03:55 */
/*slider chambres*/
.slide {
	width: 100%;
	height: 580px; /* Height of images */
	position: relative;
	overflow: hidden;
}
.slide .slide-img {
	max-width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-animation: slide-fade 15s linear infinite;
	-moz-animation: slide-fade 15s linear infinite;
	-ms-animation: slide-fade 15s linear infinite;
	animation: slide-fade 15s linear infinite;
}
.slide .slide-img:nth-child(2) {
	-webkit-animation-delay: 5s;
	-moz-animation-delay: 5s;
	-ms-animation-delay: 5s;
	animation-delay: 5s;
}
.slide .slide-img:nth-child(3) {
	-webkit-animation-delay: 10s;
	-moz-animation-delay: 10s;
	-ms-animation-delay: 10s;
	animation-delay: 10s;
}
@-webkit-keyframes slide-fade {
    0%, 40%, 100% { opacity: 0; }
    5%, 35% { opacity: 1;}
}
@-moz-keyframes slide-fade {
    0%, 40%, 100% { opacity: 0; }
    5%, 35% { opacity: 1;}
}
@-ms-keyframes slide-fade {
    0%, 40%, 100% { opacity: 0; }
    5%, 35% { opacity: 1;}
}
@keyframes slide-fade {
	 0%, 40%, 100% { opacity: 0; }
    5%, 35% { opacity: 1;}
}
