div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 220px	;
	height:220px;	
	/* custom decorations */
	padding:10px 0;	
/*	border:1px outset #ccc;*/
	float:left;
/*	background-color:#efefef;				*/
        text-align:center;
}

/* 
	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 {	
   position:absolute; 
   height:20000em; 
   width:220px;
}

div.items div {
  padding-bottom: 20px;
  text-align:center;
}



/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:25px;
	height:15px;
	background:url(../images/arrow_up.gif) no-repeat;
	float:left;
	margin:10px 95px;
	cursor:pointer;
}

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

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

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



