div.slider {
	position:relative;
	width:537px;
}

div.slider div.slider-bg {
	background:url("../img/element-bg.png") repeat scroll 0 0 transparent;
	height:120px;
	left:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:1;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
div.scrollable {
	float:left;
	height:100px;
	overflow:hidden;
	padding:10px 0;
	position:relative;
	width:490px;
	z-index:2;
}


/*
	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:20000em;
	position:absolute;
	clear:both;
	z-index:2;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;

	/* custom decoration */
	margin-right:10px;
	width:155px;
	padding:0;
}


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:9px;
	height:33px;
	background:url(../img/scroll-left.png) no-repeat;
	float:left;
	margin:45px 5px;
	cursor:pointer;
	position:relative;
	z-index:2;
}


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

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

