/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 660px;
	height:250px;
	text-align:left;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/img/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;
}



/* single scrollable item */
.scrollable .item {
	float:left;
	margin:0px 5px 10px 10px;
	padding:2px;
	width:150px;
	height:280px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable img {
	border:2px solid grey;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;

}

.scrollable h2 {
	font-size:14px;
	height:28px;
	color:#333333;
}

.scrollable .titre {
	margin:15px 0 0 11px;
	font-size:16px;
	font-weight:bold;
	color:#0099FF;
	margin-bottom:10px;
}

.scrollable .blocimg {
	height:90px;
	width:120px;
	background-color:grey;
	background-image: url(/img/defaut.png);
}



