/*
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
/* required settings */
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 663px;
	height:380px;
/* custom decorations */
	padding: 0px;
	margin: 0px 0px 10px 0px;
	clear: both;
}

/* 
	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 */
	width: 20000px;
	position: absolute;
	clear: both;
/* decoration */
	margin: 0px 0px 0px 0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float: left;
/* custom decoration */
	text-align:center;
	width: 663px;
	padding: 0px;
	margin: 0px 5px 0px 5px;
}

/* 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 {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	background: url('images/left.png') no-repeat 0px -20px;
	float: left;
	margin: auto 0px auto 0px;
	cursor: pointer;
	font-size:1px;
}

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

a.next {
	right: 10px;
	top: 200px;
}

a.prev {
	left: 10px;
	top: 200px;
}

/* disabled navigational button */
a.disabled {
	visibility: hidden !important;
	!background-position: 0px 20px;
}

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