
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 630px;
	height:120px;

	/* custom decorations */
	background: #000000 url(images/nav-bg.png) bottom center 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;
}

.items div {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable .gallery-item {
  float:left;
 /* margin:10px 13px 10px 13px; */
  margin: 10px 19px;
  width:100px;
  height:100px;
}
.scrollable img {
	background-color:#fff;
	padding:1px;
	border:2px solid #000;
	width:94px;
	height:94px;
}

/* active item */
.scrollable .active img {
	border:2px solid #ccc;
	position:relative;
	cursor:default;
}


