.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* width: 238px; */
	height:106px;
	padding-top:2px;
	
	border-left: 2px solid #fff;
}
.scrollable.short {

}
.scrollable.long {
	width: 640px;
}
.scrollable.gallery{
	width: 646px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .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.
*/
.items div.row{
	float: left;
}
.items div.item {
		float:left;
        width: 124px;
		height: 106px;
		overflow:hidden;
		
		text-align:center;
		margin-right: 2px;
}
.scrollable.long .items div.item {
	margin-right: 4px;
}
.scrollable.gallery .items div.item {
	margin-right: 6px;
}
.items div div.image{
		width: 122px;
		height: 92px;
		overflow:hidden;
		border: 1px solid #000;
		text-align:center;
}
.items div.image img{
	height:92px;
	width:auto;
}
items div  a.title,items div  span.title{
	font-family:'Arial';
	font-size:11px;
	font-weight:bold;
	color: #000;
}

