/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	/*display: block;*/
	overflow:hidden;
	width:212px;	 
	height:300px;	
	float: left !important;
	margin: 0 10px 0 10px;
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	/*border:1px solid #222;*/
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next {
	display:block;
	width:22px;
	height:54px;
	background: url(../gfx/c.010.scroller.001/back.png) no-repeat;
	float:left;	
	cursor:pointer;
	margin-top:70px;
	text-indent: -2000px;
}
a.next{
	/*margin-left: -50px;*/
}
a.previous{
	/*left: 250px;*/
}
/* mouseover state */
a.prev:hover, a.next:hover {
	background-position:0px -54px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next {
	background-image:url(../gfx/c.010.scroller.001/fwd.png);
	clear:right;	
}



/* single item */
#thumbs div {
	float:left;
	width:212px;
	height:300px;
	color:#747474;
	cursor:pointer;
}
#thumbs div img{
	border: 1px solid #415d5e;
}
/* 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;
}

#thumbs p{
	color:#747474;	
	font-size: 0.85em;
	font-style: italic;
	line-height: 1.2em;
}
