
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 405px;
	_width: 400px;
	height:225px;
	_height:250px;

}

/*
	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 .slider {
	float:left;
	width:405px;
	_width:400px;
}

/* single scrollable item */


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

/* right */
a.right { background:url(../images/actors_speak_next_bt.jpg) no-repeat center top; clear:right; padding-left:15px; display:block;
	width:33px;
	height:35px;
	float:left;
	margin:100px 0 0 0;
	_margin:-100px 0 0 0;
	cursor:pointer;
}
a.right:hover, a.right:active { background:url(../images/actors_speak_next_bt.jpg) no-repeat center top; }


/* left */
a.left { margin-left: 0px;  background:url(../images/actors_speak_prev_bt.jpg) no-repeat center top; display:block;
	width:33px;
	height:35px;
	float:left;
	margin:100px 0px 0 0;
	cursor:pointer;} 
a.left:hover, a.left:active { background:url(../images/actors_speak_prev_bt.jpg) no-repeat center top; }

/* disabled navigational button */
a.disabled {
	visibility:visible;	
	opacity:0.5;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity:0.5;	
} 	





