/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
a.navi {
	margin-top:55px;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:831px;
	height:110px;
	float:left;	
	/* this is how you can show the tooltips above the scrollable */
	padding:110px 0 0 0;
	margin:-110px 0 0 0;
	background:transparent;
	border:0;
}

/* tooltip styling */
#tooltip {
	display:none;
	background:url(/img/scrollable/black_arrow.gif);
	font-size:11px;
	height:66px;
	width:105px;
	padding:4px 5px;
	color:#fff;
}
/*
	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;
	cursor:pointer;
	width:105px;
	height:106px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

/* remove margins from the image */
.items img {
	margin:0 16px 0 0;
	border:0;
}

/* make A tags our floating scrollable items */
.items a {
	display:block;
	float:left;
}
/* scrollable should not disable gallery navigation */
#gallery .disabled {
	visibility:visible !important;
}

#gallery .inactive {
	visibility:hidden !important;
}



/*--------------------------- prev, next, prevPage and nextPage buttons ---------------------------*/
a.browse {
	background:url(/img/scrollable/hori_large.jpg) no-repeat;
	display:block;
	width:21px;
	height:44px;
	float:left;
	margin:30px 15px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 		{ background-position: 0 -44px; }
a.right:hover 	{ background-position:-21px -44px; }
a.right:active 	{ background-position:-42px -44px; } 


/* left */
a.left			{ margin-left: 0px; } 
a.left:hover  	{ background-position:-21px 0; }
a.left:active  	{ background-position:-42px 0; }


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