
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.slideshow_container{ padding:10px 14px; margin:5px; background:#6AB0EA; border-right:1px solid #1A6DB3; border-bottom:1px solid #1A6DB3}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	background:#1A6DB3; width:517px; padding-left:15px;
	height:100px;
	/* 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 */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:525px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:1px 14px 0 10px;
	padding:11px 1px 1px 1px;		
	height:75px;
	width:100px;
	cursor:hand;
	cursor:pointer;
	
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
	background:url(../images/scrollable_active_bg.png) no-repeat; border:none;
}



