/* CSS pour les diaporamas jQuery */


#slider {
    width: 440px; /* important to be same as image width */
    height: 300px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
#sliderContent {
    width: 440px; /* important to be same as image width or wider */
	height: 300px; /* 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: 420px;
   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;
		}
