@charset "iso-8859-1";

:root {
	--slideshow_width:960px;
	--slideshow_height:380px;
}

.mySlideshow_conteneur {
	display:inline-block;
    position: relative;
    width: var(--slideshow_width);
    height: var(--slideshow_height);
    margin:0px;
	padding:0px;
	margin:0 auto; /*center-aligned*/
	#box-shadow: 0px 0px 10px #000000;	
    overflow: hidden;
}

.mySlideshow_scroller {
    position: absolute;
    margin:0px;
	padding:0px;
	left:0px;
	top:0px;
    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease;
}

.mySlideshow_slide {
	display:inline-block;
    position: relative;
    width: var(--slideshow_width);
    height: var(--slideshow_height);
    margin:0px;
	padding:0px;
	background-size: var(--slideshow_width) var(--slideshow_height);
	
}

.mySlideshow_fondtitre {
	position:absolute;
	width:960px;
	height:40px;
	padding:0px;
	margin:0px;
	top:0%;
	left:0%;
	background:#FFFFFF;
	opacity:0.75;
}

.mySlideshow_textetitre {
	position:absolute;
	width:960px;
	height:40px;
	padding:0px;
	margin:0px;
	top:0%;
	left:0%;
	color:#912547;
	font-family: 'Ubuntu', sans-serif;
	font-size:20pt;
	line-height:40px;
	text-align:left;
	padding-left:8px;
	font-weight:bold;
}

.mySlideshow_fondmessage {
	position:absolute;
	width:940px;
	height:70px;
	padding:0px;
	margin:0px;
	top:10px;
	left:10px;
	background:#000000;
	opacity:0.5;
}

.mySlideshow_textemessage {
	position:absolute;
	width:940px;
	height:70px;
	padding:5px;
	margin:0px;
	top:10px;
	left:10px;
	color:#FFFFFF;
	font-family: 'Ubuntu', sans-serif;
	font-size:10pt;
	text-align:justify;
}

.mySlideshow_leftControle {
	position:absolute;
	width:70px;
	height:70px;
	background-size: 70px 70px;
	top:50%;
	left:8px;
	background-image:url(../datas/slide_left.png);
	z-index:11;
	cursor:pointer;
	opacity:0.25;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.mySlideshow_leftControle:hover {
	opacity:0.9;
}

.mySlideshow_rightControle {
	position:absolute;
	width:70px;
	height:70px;
	background-size: 70px 70px;
	top:50%;
	right:8px;
	cursor:pointer;
	background-image:url(../datas/slide_right.png);
	z-index:11;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
	opacity:0.25;
}

.mySlideshow_rightControle:hover {
	opacity:0.9;
}


.mySlideShowFullScreen {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	overflow:hidden;
}

.mySlideshow_slide_fullScreen {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	overflow:hidden;
	opacity:0;
    -webkit-transition: all 6000ms ease;
    -moz-transition: all 6000ms ease;
    -o-transition: all 6000ms ease;
    transition: all 6000ms ease;
#background: url(images/bg.jpg) no-repeat center center fixed; 
	background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;	
}