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

	/* required settings */
	position: absolute;
	top: 0px;
	left: 56px;
	overflow: hidden;
	width: 385px;
	height: 76px;
	
	/* custom decorations */
}

/*
	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 */
	position: absolute;
	width: 20000em;
	clear: both;
}

/* single scrollable item */
.scrollable img {
	float: left;
	/*background-color:#fff;*/
	padding: 6px 6px 5px 7px;
	/*border:1px solid #ccc;*/
	cursor: pointer;
	width: 62px;
	height: 62px;
	border-top: 1px solid #6C8CA7;
	border-right: 1px solid #1D4460;
	border-bottom: 1px solid #1D4460;
	border-left: 1px solid #6C8CA7;
	background: url(../images/toolkit_02_feature_thumb_bg.png) repeat-x;
}

/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
	background: url(../images/toolkit_02_feature_thumb_bg_active.png) repeat-x;
}




