/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	overflow:hidden;
	width: 267px;
	height:46px;
	background:url(../gfx/gallery/thumb-bg.jpg) no-repeat center top;
	margin-right: auto;
	margin-left: auto;
}

/*
	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 {
	clear:both;
}

/* single scrollable item */
.scrollable img {
	margin:5px 5px 5px 0px;
	background-color:#fff;
	padding:0px;
	border:1px solid #ccc;
	cursor:pointer;
	width:28px;
	height:28px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	border: 2px solid #CCCCCC;
}


.scrollable .first {
	margin:0px;
}