/* ----------------- */
/*   Root Elements   */
/* ----------------- */

/* root element for the scrollable. When scrolling occurs this element stays still. */
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
}

/*	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;
}

/* single scrollable item */
div.scrollable div.items div {
	position: absolute;

	/* custom decoration */
	cursor:pointer;
	padding:5px;
}

/* active item */
div.scrollable div.items div.active { }

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
	margin-top:13px;
}

/* ---------------------- */
/*   Next/Prev Elements   */
/* ---------------------- */

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:		block;
	float:			left;
	background:		url(/images/arrow_left.gif) center center no-repeat;
	width:			38px;
	height:			38px;
	cursor:			pointer;
	font-size:		1px;
	margin-top:		75px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
}

/* disabled navigational button */
a.disabled {
	cursor:	auto;
}

/* prev button */
a.prev, a.prevPage {
	margin-left:35px; margin-right:6px;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:	url(/images/arrow_right.gif);
	margin-right:10px;
}
