
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.topbanner{
	background-color:#9cd3f8;
	padding:5px;	
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 708px;
	height:269px;

	/* custom decorations */
	/*border:1px solid #ccc;*/
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:708px;
	height:269px;
}


/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:45px;
	height:64px;
	cursor:pointer;
	font-size:1px;
	position:absolute;
	top:102px;
}

a.right { background-image:url(i/scrollable_right.png); clear:right; margin-right: 0px; left:669px;}

a.left { background-image:url(i/scrollable_left.png); left:6px; } 






