@charset "utf-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 780px;
	height:250px;
	padding-top:127px;
	margin-left:10px;
}

/*
	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;
}

.scrollable .items div {
	/* this cannot be too large */
	width:780px;
	float:left;
}

/* 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 {
	display:block;
	width:12px;
	height:24px;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin-top:164px;
}

/* right */
a.right 		{background:url(../img/ar_right.png); margin-left:14px;}
a.hover_right 		{background:url(../img/ar_right_a.png); margin-left:14px;}


/* left */
a.left			{background:url(../img/ar_left.png)} 
a.hover_left	{background:url(../img/ar_left_a.png)} 

/* disabled navigational button */
a.disabled {
	visibility:visible !important;		
} 	

