@charset "utf-8";
/* CSS Document */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 525px;
	height:87px;
	/* custom decorations */
	border:10px solid #e7e7e7;
	background: url(../partenaire/bar_sep.gif) repeat-x;
	/*background:url(../img/h300.png) repeat-x;*/
	background-color:#FFF;
}
/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#ffffff;
	padding:3px;
	/*border:1px solid #ccc;*/
	cursor:pointer;
	width:150px;
	height:77px;
	margin:2px 25px 0 0;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
	background-color:#d2d2d2;
}
.scrollable img.hover {
/*background-color:#e7e7e7;*/	
}
