
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scroll-gallery {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 521px;	
	height:275px;	
	
	/* custom decorations */
	padding:0;	
	background-color:none;
			
}

/* 
	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 */
#thumbs div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:521px;
	height:275px;
	padding:0;
	font-size:12px;
	border:0;
	background-color: #ddd;	
}

#thumbs div img {
	border: none;
}

/* active item */
#thumbs div.active {	
	background-color:#fff;
}

/*********** navigator ***********/

/* position and dimensions of the navigator */
#thumbs-navi {	
	width: auto;
	height:20px;	
	position:absolute; 
	top:260px;
	left:240px;

}
/* items inside navigator */
#thumbs-navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/scrollable/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
#thumbs-navi a:hover { background-position:0 -8px; }

/* active state (current page state) */
#thumbs-navi a.active { background-position:0 -16px; }

/*********** Next / Previous ***********/
#thumbs-links { display:block; position:absolute; top:236px; left:213px; height:51px; width:90px; background-image:url(../images/scrollable/links-bkg.png); background-repeat: no-repeat}
#thumbs-prev { width:33px; height:33px; margin-right:14px;}
#thumbs-next { width:33px; height:33px}

/* prev, next, prevPage and nextPage buttons */
#thumbs-next a.next, #thumbs-next a.nextPage, #thumbs-prev a.prev, #thumbs-prev a.prevPage { display:block; width:33px; height:33px; margin:10px 5px 5px 5px; cursor:pointer; }
#thumbs-prev a.prev, #thumbs-prev a.prevPage { background:url(../images/scrollable/left.png) ; }
#thumbs-next a.next, #thumbs-next a.nextPage { background-image:url(../images/scrollable/right.png);  }

/* mouseover state */
#thumbs-prev a.prev:hover, #thumbs-next a.next:hover, #thumbs-prev a.prevPage:hover, #thumbs-next a.nextPage:hover { background-position:0px -33px; }

/* disabled navigational button */
#thumbs-links .nomorecontent { visibility:hidden;}