/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scroller-container {

	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 420px;
	height: 300px;
}

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

/* single scrollable item */
div.scroller div.items div.item {
	float:left;
	/* custom decoration */
	width:420px;
	padding:0;
	overflow : hidden;
}

div.scroller div.items div.item img.service-image{
	float : left;
}
div.scroller div.items div.item > div.container{
	padding : 0 30px 0 10px;
}

div.scroller div.items div.item > div.container img {
	padding-right:20px;
}

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

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

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

div.scroller a#left:hover, div.scroller a#right:hover{
	background-position:0px -19px;
}