#slider_wrap {
	background-color:#eaeaea;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border:1px solid #787878;
	height:100%;
	position:relative;
}


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 358px;
	height:80px;
	margin-bottom:10px;
	padding-bottom:10px;
	/* custom decorations */

	background:url(/img/global/gradient/h300.png) repeat-x;
}

/*
	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;
	margin:9px;
	background-color:#fff;
	cursor:pointer;
	width:53px;
	height:53px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

.prev-next {top:75px; left:0; position:absolute;}

h3.gallery_item_header {color:#F00; border-bottom:2px dotted #999;}



