/* outmost wrapper element, containing all elements  */
#scrollable {
	background-color:#0d0d0d;
	margin:0 0 10px;
	padding:20px 50px;
	width:863px;
	height:89px;
}

/* container for the scrollable items */
div.items {
	height:90px;	
	margin-left:15px;
	float:left;
	width:760px !important;
}

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:40px;
	width:90px;
	height:90px;
	background:#BBB;
	font-size:50px;
	color:#ccc;
	line-height:90px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a:hover {
	color:#999;	
}

div.items a.active {
	background-position:-174px 0;		
	color:#555;
	cursor:default;
}

/* next / prev buttons */
a.prev, a.next {
	background:url(left.png) no-repeat 0 0;
	display:block;
	width:24px;
	height:74px;
	float:left;	
	cursor:pointer;
}

a.next {
	background-image:url(right.png)		
}

