/* styling for the image wrapper  */
#image_wrap {
	padding:15px;
	text-align:center;
 
	border:8px solid #dedede;
/*	background-color:#efefef;*/
	background-color:#4d5759;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.outer_scrollable{
	border:8px solid #dedede;
	border-top: none;
	background-color:#4d5759;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
/*	width: 572px;*/
	width: 562px;
	height:116px;

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

/* single scrollable item */
.scrollable  img {
	float:left;
	margin:50px 2px 0px 7px;
	padding: 2px;
	background-color:#fff;
	border:2px solid #ccc;
	cursor:pointer;
	width: 100px;
	height: 100px;
	-moz-border-radius: 4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable  .active {
	border:2px solid #000;
	outline:2px solid #000;
	z-index:9999;
	position:relative;
	-moz-outline-radius: 4px;
	-webkit-outline-radius:4px;
}


