
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 347px;
	height:103px;
}
.scrollable.secondary {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 100%;
	height:103px;
}

/*
	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;
	margin:20px 14px 20px 0px;
	border:1px solid #6c757d;
	cursor:pointer;
	width:74px;
	height:74px;
}
/* single scrollable item (for secondary pages) */
.scrollable.secondary img {
	float:left;
	margin:20px 6px 20px 0px;
	border:1px solid #6c757d;
	cursor:pointer;
	width:74px;
	height:74px;
}

/* active item */
.scrollable .active, .scrollable.secondary .active {
	border: 1px solid #ffcc33;
	z-index:9999;
	position:relative;
}
.scrollable .over, .scrollable.secondary .over {
	border: 1px solid #f90f40;
	z-index:9999;
	position:relative;
}



