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

	/* required settings */
	position:absolute;
	overflow:hidden;
	width: 40em;
	height:10em;
	z-index:10;
	top:22.5em;
	left:0;
	margin:0;

	/* custom decorations */
	border-top:1px solid #080807;
	border-bottom:1px solid #040403;
	background-color:#080807;
	background: -webkit-gradient(linear, left top, left bottom, from(#262624), to(#080807)) no-repeat scroll;
	background: -moz-linear-gradient(top,  #262624,  #080807) no-repeat scroll;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#262624', endColorstr='#080807') no-repeat scroll;
}

/*
	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;
	padding:0.5em;
}

/* single scrollable item */
.scrollable img {
	float:left;
	border:0;
	cursor:pointer;
	height:9em;
}

/* active item */
.scrollable .active {
	border:none !important;
	outline:none !important;
}


