/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	/*display: block;*/
	overflow:hidden;
	width:302px;	 
	height:227px;
	float: left !important;
	margin: 0;
}


/* 
	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:inline-block;
	background-color:#F90;
	width:34px;
	height:34px;
	background: url(../gfx/c.010.scroller.001/back.png) no-repeat; background-position:0 0;
/*	float:left;	*/
	cursor:pointer;
	margin-top:20px;
	text-indent: -2000px;
}

/* 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:312px;
	height:300px;
	color:#fff;
	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 h2{
	font-size: 125%;
}
#thumbs h2, #thumbs p, #thumbs span {
	margin:13px;
	color: #000;
}
