/* single item */ 
#thumbs div { 
    float:left; 
    width:214px; 
    height:300px; 
    color:#fff; 
    border-left:1px solid #333; 
    cursor:pointer; 
} 


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/images/scrollable/left.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/images/scrollable/right.png);
	clear:right;	
}

.galleryTools {
	
}

/*********** navigator ***********/
/* position and dimensions of the navigator */
div.navi {
	height:17px;
	position:relative;
	top:401px;
	z-index:1;
	text-align:right;
	display:inline;
	float:right;
	margin-right:38px;
	margin-top:-17px;
}

/* items inside navigator */
div.navi a {
	height:17px;
	margin:0px;
	width:23px;
	position:relative;
	z-index:2;
	background:url(/images/scrollable/navigator.png) 0 0 no-repeat;
	display:block;
	float:left;
}



/* mouseover state */
div.navi a:hover {
	background-position:0 -16px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -32px;     
} 	
/*
.zoom {
	display:block;
	float:right;
	height:17px;
	left:-7px;
	position:relative;
	top:-24px;
	width:26px;
}
*/

.zoom {
	height:17px;
	left:1;
	width:26px;
	z-index:6;
	position:absolute;
	margin-top:-24px;
	margin-left:631px;
}


/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 661px;	
	height:408px;	
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.thumbs {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
}



/* single scrollable item */
div.scrollable div.items div {
	float:left;
}

/* active item */
div.scrollable div.items div.active {
	background-color:green;
}


/* single item */
.thumbs div {
	float:left;
	width: 662px;	
	height:408px;
	cursor:pointer;
}

/* style when mouse is over the item */
.thumbs div.hover {
	background-color:#444;	
}

/* style when element is active (clicked) */
.thumbs div.active {
	background-color:#066;
	cursor:default;
}


