/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div#service-description {

	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 880px;	
	height:200px;	
	margin:0 auto;
}

div#service-description div.services-scroller {

}

div#service-description div.services-scroller div.left{

}

	div#service-description div.services-scroller div.left > div.container{

		text-align : center;
	}

div#service-description div.services-scroller div.right{
	width : 520px;
}

div#service-description div.services-scroller .service-title {
	line-height:8px;
	font-weight:bold;
}
	div#service-description div.services-scroller div.right > div.container{
		padding : 30px 0 0 10px;
	}
/* 
	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#service-description div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
	overflow:hidden;
	height : 200px;		
}

/* single scrollable item */
div#service-description div.items div.unit {
	float:left;

	/* custom decoration */
	width:880px;
	height : 200px;
	
}

/* active item */
div#service-description div.items div.column.active {		

}

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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	display:block;
	width:29px;
	height:26.5px;
	background:url(../images/scroll_left.png) no-repeat;
	margin:0 0 0 10px;
	cursor:pointer;
	font-size:1px;
	z-index:99999;
}

/* mouseover state */
a.prev:hover, a.next:hover, div#service-description > a.prevPage:hover, a.nextPage:hover {
	background-position:0px -27px;		
}


/* next button uses another background image */
a.next, a.nextPage {
	display:block;
	width:29px;
	height:26.5px;
	background-image:url(../images/scroll_right.png);
	float:left;
	margin:0 10px 0 0;
	cursor:pointer;
	font-size:1px;
	z-index:99999;
}
