#image_wrap { 
    /* dimensions */ 
    width:655px; 
    margin:0; 
    padding:15px 0; 
 
    /* centered */ 
    text-align:center; 
 
    /* some "skinning" */ 
    background-color:#efefef; 
    border:2px solid #fff; 
    outline:1px solid #ddd; 
    -moz-ouline-radius:4px; 
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 660px; 
    height:90px; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}



#Contenu .bloc-fiche #image_wrap{
	width:200px; 
	margin:0;
}

#Contenu div.scrollable{
	float:left;
	margin:10px 0;
	width:560px;
}



a.browse {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(/style/images/hori_large.png) no-repeat scroll 0 0;
cursor:pointer;
display:block;
float:left;
font-size:1px;
height:30px;
margin:27px 10px;
width:30px;
}
#Contenu .bloc-fiche div.scrollable{width:200px;}
.bloc-fiche a.browse{display:none}

a.left:hover {
background-position:-30px 0;
}

a.left {
margin-left:0;
}


a.right:hover {
background-position:-30px -30px;
}

a.right {
background-position:0 -30px;
clear:right;
margin-right:0;
}