/* CSS pour les diaporamas jQuery */

/* CSS de base */

#slider {
    width: 340px; /* important to be same as image width */
    height: 275px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
#sliderContent {
    width: 340px; /* important to be same as image width or wider */
	height: 275px; /* important to be same as image height */
    position: absolute;
	top: 0;
	margin-left: 0;
}
.sliderImage {
	float: left; /* important */
    position: relative; /* important */
    display: none; /* important */
}
.sliderImage span {
	
   position: absolute; /* important */
   left: 0;
   font: 12px/15px Arial, Helvetica, sans-serif;
   padding: 10px 13px;
   width: 342px;
   background-color: #000;
   filter: alpha(opacity=70); /* here you can set the opacity of box with text */
   -moz-opacity: 0.7; /* here you can set the opacity of box with text */
   -khtml-opacity: 0.7; /* here you can set the opacity of box with text */
   opacity: 0.7; /* here you can set the opacity of box with text */
   color: #fff;
   display: none; /* important */
   bottom: 0;
}

/* End of CSS de base */

/* CSS Specifique */

#sliderProduit {
	width: 500px; 
	height: 375px; 
	position: relative; /* important */
	overflow: hidden; /* important */
	background-color:#000;
	margin:20px auto 0 auto;
}

#sliderProduitContent {
    width: 500px; /* important to be same as image width or wider */
	height: 375px; /* important to be same as image height */
    position: absolute;
	top: 0;
	margin-left: 0;
}

.sliderProduitImage span {
   width: 500px;
}	


/* ENd of CSS Specifique */