/* outmost wrapper element, containing all elements  */
#scrollable {
	width:495px;
	height:66px;
	margin-top: 12px;
	margin-left: 5px;
	-moz-border-radius:7x;
}

/* container for the scrollable items */
div.items {
	height:66px;	
	margin-left:8px;
	float:left;
	width:450px !important;
}
	
/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:28px;
	width:88px;
	height:66px;
	background:url(../images/scrollable/entry.gif) 0 0 no-repeat;
	font-size:18px;
	font-weight: normal;
	color:gray;
	line-height:66px;
	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(../images/scrollable/left.png) no-repeat 0 0;
	display:block;
	width:18px;
	height:18px;
	float:left;	
	margin:22px 0 0 0;
	cursor:pointer;
}

a.next {
	background-image:url(../images/scrollable/right.png)		
}

a.prev:hover {
	background-position:0 -18px;		
}

a.next:hover {
	background-position:0 -18px;		
}

div.navi span:hover {
	background-position:0 -8px;      
}

div.navi span.active {
	background-position:0 -16px;     
} 	
