/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 682px;
	height:310px;

	/* custom decorations */
	/*border:1px solid #ccc;*/
}

/*
	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.
*/

.ecom_scrollable .items {
	/* this cannot be too large */
}

.items div.image {
	float:left;
	height: 310px;
	width:682px;
	margin: 0;
	position: relative;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.ecom_scrollable img {
	float:left;
	cursor:pointer;
	width:80px;
	height:80px;
	padding: 0;
	margin-right: 2px;
	border:1px solid #b6b5b2;
}

.ecom_scrollable img.nomar {
	margin-right:0px;
}
/* active item */

.ecom_scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}