
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#gallery { 
	width: 565px;
	height:121px; 
	background:url(images/gallery-bg.gif) no-repeat;
	overflow:hidden;
	margin:0 0 10px 0;
	}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:24px;
	height:121px;
	float:left;
	margin:0;
	cursor:pointer;
}

a.left:hover img { position:relative; left:-2px; }
a.right:hover img { position:relative; right:-2px; }

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 515px;
	height:121px;
	margin:0;
	float:left;

	/* 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;
	padding:0;
}

/* single scrollable item */
.scrollable div.image { width:92px; height:90px; overflow:hidden; border:solid 1px #565656; float:left; margin:14px 5px 0 4px; cursor: url(images/highslide/zoomin.cur), pointer; }
.scrollable div.image:hover { border-color:#fff; }

.scrollable img {
	margin:0;
	border:none;
	cursor: url(images/highslide/zoomin.cur), pointer;
	width:160px;
}

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



