/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 580px;
	height:100px;
	float:left;
	/* custom decorations */
	border:1px solid #1D1203;
}


/*
	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;
	padding-left:5px;
	padding-right:5px;
	padding-top:7px;
	padding-bottom:0px;
	cursor:pointer;
	width:86px;
	height:86px;


}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}







.scrollable2 {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 500px;
	height:100px;
	float:left;
	/* custom decorations */
	border:1px solid #1D1203;
}


/*
	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.
*/
.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable2 img {
	float:left;
	padding-left:5px;
	padding-right:5px;
	padding-top:7px;
	padding-bottom:0px;
	cursor:pointer;
	width:86px;
	height:86px;


}

/* active item */
.scrollable2 .active {
	z-index:9999;
	position:relative;
}

