
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 305px;
	height:75px;
	margin-top:5px;

	/* custom decorations */
	/*background:url(/images/global/gradient/h300.png) repeat-x;*/
}

.selection_scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 465px;
	height:185px;
	font-size:0.77em;

	/* custom decorations */
	/*background:url(/images/global/gradient/h300.png) repeat-x;*/
}

/*
	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;
}

.selection_scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin-right:5px;
	background-color:#fff;
	border:1px solid #ccc;
	cursor:pointer;
	width:70px;
	height:70px;
	display:block;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.selection_scrollable .selection_content {
	position:relative;
	float:left;
	cursor:pointer;
	width:110px;
	height:158px;
	margin-top:15px;
	padding:3px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.selection_content_image {
	position:relative;
}

#image_wrap_img {
	display:block;
}

.detail_selection_sportif {
	color:#FFFFFF;
}
.selection_montant {
	font-weight:bold;
	}
.selection_bt_sponsoriser {
	position:absolute;
	bottom:0px;
	color:#FFFFFF;
	width:100%;
	z-index:5;
}
.selection_bt_sponsoriser a,
.top10_detail_sportif a {
	display:block;
	background:url(../images/bt_spon_selection.png) no-repeat;
	width:110px;
	height:20px;
	text-indent:-50000px;
	z-index:5;
	}
.selection_bt_sponsoriser a:hover {
	background:url(../images/bt_spon_selection_hover.png) no-repeat;
	}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

.selection_scrollable .active {
	border:2px solid #FFFFFF;
	z-index:9999;
	position:relative;
}



