/* ----------------- */
/*   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;
	clear:		both;
}

/* single scrollable item */
div.scrollable div.items div {
	position: absolute;

	/* custom decoration */
	cursor:pointer;
}

/* active item */
div.scrollable div.items div.active {}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* ---------------------- */
/*   Next/Prev Elements   */
/* ---------------------- */

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	position:		absolute;
	z-index:		1;
	width:			26px;
	height:			22px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
}

/* disabled navigational button */
a.disabled {
	cursor:	auto;
}

/* next button position */
a.prev, a.prevPage {
	margin-top:313px;
	margin-left:-497px;
	background:		url(/images/arrow_left01.png) center center no-repeat;
	cursor:			pointer;
}

/* next button position */
a.next, a.nextPage {
	margin-top:313px;
	margin-left:-26px;
	background-image:	url(/images/arrow_right01.png);
	cursor:			pointer;
}