/* root element for the whole scrollable setup */
div.scrollable {
	
	/* two required settings */
	position:relative;
	overflow:hidden;	 
	
	/* custom decoration */
	width: 850px;	
	height:120px;
	padding:10px 0;	
	background-color:#efefef;	
  

}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
div.scrollable div.items {	
	position:absolute;
	width:20000em;	
	clear:both;
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:center;
	font-size:30px;
	font-family: 'bitstream vera sans';

	margin-right: 0;	
	-moz-border-radius:5px;
	width: 185px;
	height: 113px;

	
}

div.scrollable div.items div p {
display: none;
	
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	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:18px;
	height:18px;
	background:url(/fileadmin/libs/left.png) no-repeat;
	float:left;
	margin:60px 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(/fileadmin/libs/right.png);
	clear:right;	

}



	

