
/* outmost wrapper element */
#scrollable {
	/*background-color:#efefef;
	border:1px solid #ddd;
	padding:10px 8px;*/
	width:720px;
	height:170px;
}
/* container for the scrollable items */
div.items {
	height:166px;
	margin-left:1px;
	float:left;
	width:668px !important;
	/* 58 */
}
/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:1px;
	width:166px;
	height:166px;
	background:url(item.gif) 0 0 no-repeat;
	font-size:50px;
	color:#ccc;
	line-height:166px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}
div.items a:hover {
	color:#999;
}
div.items a.active {
	background-position:-332px 0;
	color:#555;
	cursor:default;
}
/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:22px;
	height:170px;
	float:left;
	background-repeat:no-repeat;	
	margin:0px 0 0 0;
	cursor:pointer;
}
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);
}
/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:310px;
	margin-left:-50px;
	width:50px;
	height:0px;

}
/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(dots.png) 0 0 no-repeat;
	cursor:pointer;
}
div.navi span:hover {
	background-position:0 -8px;
/*	background-position:0 -8px;*/
}
div.navi span.active {
	background-position:0 -16px;
/*	background-position:0 -16px;*/	
} 	

