/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div#approach {
	width   : 460px;
	padding : 10px 0;
	/* required settings */
			

}

div#approach div.approach-scroller {
	width : 380px;
	overflow : hidden;
	position:relative;
}


/* 
	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#approach div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
	overflow:hidden;		
}

/* single scrollable item */
div#approach div.items div.item {
	float:left;
	
	/* custom decoration */
	width  : 380px;
	
}

div#approach div.items div.item > div.container{
	padding : 0 1px;
}

/* active item */
div#approach div.items div.item.active {		

}

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

/* prev, next, prevPage and nextPage buttons */
a#approach-prev {
	display:block;
	width:20px;
	height:18.5px;
	background:url(../images/scroll_left_small.png) no-repeat;
	margin:55px 10px;
	cursor:pointer;
	font-size:1px;
	z-index:99999;
}


/* next button uses another background image */
a#approach-next {
	display:block;
	width:20px;
	height:18.5px;
	background-image:url(../images/scroll_right_small.png);
	margin:55px 10px;
	cursor:pointer;
	font-size:1px;
	z-index:99999;
}

/* mouseover state */
a#approach-prev:hover, a#approach-next:hover {
	background-position:0px -19px;		
}