.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollables have typically larger height than width but not now */
	height: 520px;
	width: 660px;
	border-radius:10px;
	margin-top:0px;
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;

	/* this time we have very large space for the height */
	height:20000em;
}

.scrollable .item {
text-align:center;
padding:0px;
margin:0px;
float:none;
width:660px;
}

a.prev,a.next  {
position:relative;
display:block;
background-repeat:no-repeat;
background-position:center center;
height:27px;
cursor:pointer;
padding:6px 0 6px 0;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border:solid 1px #7B919E;
-moz-box-shadow: 0px 0px 10px #7B919E;
-webkit-box-shadow: 0px 0px 10px #7B919E;
box-shadow: 0px 0px 10px #7B919E;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden;		
}

a.prev {
z-index:600000000;
background-image:url(../img_com/fleche_haut2.png);
margin-bottom:20px;
}

a.next {
z-index:600000;
background-image:url(../img_com/fleche_bas2.png);
margin-top:20px;
}

#moyenne_image {
box-shadow:0 0 6px black;
}

#legende_photo {
margin-top:10px;
position:relative;
left:140px;
display:block;
text-align:center;
}


