.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 800px;
	height:75px;

	/* custom decorations
	border:1px solid #ccc; */

}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
/* 	background-color:#fff;
	border:1px solid #ccc;*/
	cursor:pointer;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}


.items img {
	margin:0;
}
 
/* make A tags our floating scrollable items */
.items a {
	display:block;
	float:left;
} 
 
 
/* tooltip styling */
#tooltip {
	display:none;
	background:url(../i/overlay/black_arrow.png);
	font: 12px "Verdana"!important;
	height:70px;
	width:160px;
	padding:20px;
	color:#fff; z-index: 9999;
}
 
 
 
/* scrollable should not disable gallery navigation */
#gallery .disabled {
	visibility:visible !important;
}
 
#gallery .inactive {
	visibility:hidden !important;
}
