/* Disposition mobile : 480px et moins. */

@charset "utf-8";
/* CSS Document */

#diapo1, #diapo2 { 
	position: relative; /* important */
	overflow: hidden; /* important */
/*	float:right; */
	padding:0;
/*	margin:40px 5px 5px 10px;*/
	margin:40px auto 5px auto;
	border:1px solid black;
	background:#fff;
/*	box-shadow:gray 0 0 25px;*/
}

#diapo1{ 
	width: 320px; /* important to be same as image width */ 
	height: 240px; /* important to be same as image height */
}

#diapo2 { 
	width: 320px; /* important to be same as image width */ 
	height: 240px; /* important to be same as image height */
}

#diapo1Content, #diapo2Content {
	width: 320px; /* important to be same as image width or wider */
	position: absolute; /* important */
	top: 0; /* important */
	margin: 0; /* important */
	padding:0;
}

.diapo1Image, .diapo2Image {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.diapo1Image span{
   width: 320px;
}

.diapo2Image span {
   width: 320px;
}

.diapo1Image span, .diapo2Image span {
   position: absolute; /* important */
   left: 0;
   font-size:1em;
   padding: 10px auto;
   background-color: black;
   filter: alpha(opacity=100); /* here you can set the opacity of box with text */
   -moz-opacity: 1; /* here you can set the opacity of box with text */
   -khtml-opacity: 1; /* here you can set the opacity of box with text */
   opacity: 1; /* here you can set the opacity of box with text */
   color: #000;
   display: none; /* important */
   bottom: 0;

   /*
       if you put
       top: 0; -> the box with text will be shown at the top of the image 
       if you put
       bottom: 0; -> the box with text will be shown at the bottom of the image
   */
}

.diapo1Image span a, .diapo2Image span a {
	font-family:"Montserrat Medium";
	color:white;
	font-size:0.95em;
	font-style:italic;
	display:block;
	text-align:center;
	margin:10px 0;
}

.clear {
   clear: both;
} 

#main ul li {
	list-style:none;
}

#main ul {
	padding:0;
}
/* Disposition tablette : 481px sur 768px. Hérite des styles de : Disposition mobile */

@media only screen and (min-width: 481px) {

}


/* Disposition bureau : 769px à max. 1232px.  Hérite des styles de : Disposition mobile et disposition tablette */

@media only screen and (min-width: 769px) {
	
}
