/* outmost wrapper element, containing all elements  */
.scrollable {
	width:100%;
	height:125px;
	padding-top:10px;
}
/* container for the scrollable items */
div.items{
	height:120px;	
	margin-left:5px;
	float:left;
	width:950px !important;
}
/* single item */
div.items UL LI{
	display:block;
	float:left;
	width:130px;
	height:110px;
	text-align:center;
	margin:2px;
	margin-top:10px;
	cursor:pointer;
}
div.items UL LI A SPAN{
	font-weight:bold;
	font-size:11px;
}
/* next / prev buttons */
a.prev, a.next {
	background:url(../images/slide-left.png) no-repeat 0 0;
	display:block;
	width:11px;
	height:81px;
	float:left;	
	cursor:pointer;
	margin-left:8px;
	_margin-left:5px;
	margin-top:12px;	
}
a.next {
	background-image:url(../images/slide-right.png)	;
	margin-top:12px;		
}
