
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#image_wrap {
	/* dimensions */
	width:610px;
	/* centered */
	/*text-align:center;*/
	margin: 0 0 10px 0;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 565px;
	height:51px;
	float: left;
}

/*
	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;
	cursor:pointer;
	width:107px;
	height:47px;
}

.scrollable .items li { border: 2px solid #232323; }
/* active item */
.scrollable .items li.active {
	border:2px solid #ffffff;
	z-index:9999;
}

a.disabled {
	visibility:hidden !important;		
} 	
