/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 800px;
	height:115px;	
				
}

/* 
	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;		
	
	/* decoration */
	margin-left:8px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:left;
	width:264px;
	height:85px;
	padding:10px 0px;
	font-size:30px;
	background-image:url(../../images/scroller_background2.jpg);
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#767676;
	line-height:120%;
	cursor:pointer;
	
}

div.items img {
	float:left;
	margin-right: 5px;
	margin-left:10px;
	background-color:#999999;
}

/* active item */
div.scrollable div.items div.active {	
	background-color:#fff;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:43px;
	height:44px;
	background: url(../../images/left-arrow.jpg) no-repeat;
	float:left;
	margin:35px 10px;
	cursor:pointer;
}

/* mouseover state 
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}
*/

/* disabled navigational button 
a.disabled {
	visibility:hidden !important;		
}
*/
/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../../images/right-arrow.jpg);
	clear:right;	
}





/************************************************************/
/*			            Scroller Div						*/
/************************************************************/

.scroller-testimonial {
	margin:5px;
	background-color:#999999;
}

