/* outmost wrapper element */
#scrollable {
	padding: 14px 0px 0px 0px;
	width:940px;
	height:35px;
}

/* container for the scrollable items */
div.items {
	height:35px;	
	margin-left:8px;	
	float:left;
	width:863px !important;
}



/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width:88px;
	height:32px;
	background:url(item.gif) 0 0 no-repeat;
	font-size:20px;
	color:#ccc;
	line-height:32px;
	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 {
	display:block;
	width:31px;
	height:31px;
	float:left;
	background-repeat:no-repeat;	
	margin:0px 0 0 0;
}

a.prev {
	background:url(button-left.gif);		
}

a.prev:hover {
	background:url(button-left-over.gif);		
}

a.next {
	background:url(button-right.gif);		
}

a.next:hover {
	background:url(button-right-over.gif);		
}