@charset "utf-8";
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 160px;
	height:120px;
	padding:0;
}
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;	
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	width:194px;
	margin-right: 20px;
}

/* active item */
div.scrollable div.items div.active {
	background-color:#fff;
}

div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:10px;
	height:120px;
	background:url(../img/scroll_left.gif) no-repeat;
	float:left;
	cursor:pointer;
}

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

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

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