/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0;
	width:460px;
	height:363px;
	position:relative;
	float:left;
	
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:460px;
  height:323px;
  overflow:auto; /* affiche une scrollbar au cas ou */
  position:relative; 
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:450px; /* reduit de 20 pixels la div #slidesContainer pour permettre d'afficher la barre de scroll */
  height:323px; 
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:39px;
  height:323px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;

}
#navDiapo{
	display:block;
	width:20px;
	height:20px;
	position:absolute;
	right:25px;
	bottom:10px;
	cursor:pointer;
 
}
#leftControl {
  top:333px;
  left:50px;
  position:absolute;
  background:transparent url(slideshow/img/control_left.png) no-repeat 0 0;
  
}
#rightControl {
  top:333px;
  position:absolute;
  right:50px;
  background:transparent url(slideshow/img/control_right.png) no-repeat 0 0;
}

/** 
 * Style rules for Demo page
 */

.slide h2, .slide p {
  margin:15px;
  text-align:center;
}
.slide h2 {
  font:normal 24px Georgia, "Times New Roman", Times, serif;
  color:#ccc;
  letter-spacing:-1px;
}

.slide img {
	padding-bottom:3px;
}


