/* ----------------- */
/*   Root Elements   */
/* ----------------- */

/* root element for the scrollable. When scrolling occurs this element stays still. */
div.scrollable {
	/* required settings */
	position:	relative;
	overflow:	hidden;
	float:		left;	/* this makes it possible to add next button beside scrollable */
}

/*	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;

	width:	136px;
	height:	175px;

	/* custom decoration */
	cursor:pointer;
}

/* active item */
div.scrollable div.items div.active {
	background-image:		url(/common/images/carousel/default/active_bg.png);
	background-position:	top left;
	background-repeat:		no-repeat;
}

/* ----------------- */
/*   Text Elements   */
/* ----------------- */

.caption {
	font-family:	arial;
	font-size:		14px;
	color:			#343434;
}

.emphasis {
	font-family:	georgia;
	font-size:		16px;
	font-weight:	bold;
	color:			#36792F;
}

/* ---------------------- */
/*   Next/Prev Elements   */
/* ---------------------- */

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:		block;
	float:			left;
	background:		url(/common/images/carousel/default/arrow_left.gif) center center no-repeat;
	width:			31px;
	height:			31px;
	margin:			53px 10px;
	cursor:			pointer;
	font-size:		1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {}

/* disabled navigational button */
a.disabled {
	-moz-opacity:	0.25;
	-khtml-opacity:	0.25;
	opacity:		0.25;
	filter:			alpha(opacity=25);
	cursor:			auto;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:	url(/common/images/carousel/default/arrow_right.gif);
	clear:				right;	
}
