
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 450px;	
	height: 400px;	
	
	/* custom decorations */
	padding:0;			
}

/* 
	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.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	height:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */	
}

/* single scrollable item */
div.scrollable div.items div.row {
	float:left;
	
	/* custom decoration */
	width:450px;
	height:140px;
}

/* active item */
div.scrollable div.items div.active {
}


/* 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;
	position:relative;
	width:20px;
	height:14px;
	left:215px;
	background:url(../img/scrl_up.png) no-repeat;
	margin:10px 0px;
	cursor:pointer;
}

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

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/scrl_dwn.png);
	clear:all;	
}

.img-holder {
	width:140px;
	height:140px;
	display:block;
	float:left;	
	margin-left:15px;
	text-align:left;
	
}
.img-holder-first {
	margin:0;
}

.shadowlink {
	text-decoration:none;
	color:#636363;
}
	.shadowlink:hover {
		color:#404040;
	}

