
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 768px;
	height: 432px;
	text-align: left;

	/* custom decorations */

}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.items {
	/* this cannot be too large */
	left: 0px;
	width:20000em;
	position: absolute;
  text-align: left;
}

/* single scrollable item */
.item {
	float:left;
	background-color:#fff;
	width:256px;
	height:432px;
	border-right: 1px solid black;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

.nextPage, .next {
	cursor:pointer;
	position: absolute;
	right: -50px;
	bottom: 0px;
}

.prevPage, .prev {
	cursor:pointer;
	position: absolute;
	left: -50px;
	bottom: 0px;
}

a.disabled {
	display: none;
}