
/* outmost wrapper element */
#scrollable {
	background-color:#efefef;
	border:1px solid #ddd;
	padding:6px 2px 3px 2px;
	width:315px;
	height:60px;
}

/* container for the scrollable items */
div.items {
	height:60px;
	margin-left:2px;
	float:left;
	width:250px !important;
}



/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:2px;
	width:81px;
	height:60px;
	background:url(img/item.gif) 0 0 no-repeat;
	font-size:40px;
	color:#ccc;
	line-height:56px;
	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:25px;
	height:25px;
	float:left;
	background-repeat:no-repeat;	
	margin:20px 0 0 0;
}

a.prev {
	background:url(img/button-left.gif) no-repeat;
}

a.prev:hover {
	background:url(img/button-left-over.gif) no-repeat;
}

a.next {
	background:url(img/button-right.gif) no-repeat;
}

a.next:hover {
	background:url(img/button-right-over.gif) no-repeat;
}


/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:310px;
	margin-left:-50px;
	width:50px;
	height:0px;
}


/* items inside navigator */
div.navi span {
	width:28px;
	height:28px;
	float:left;
	margin:3px;
	background:url(img/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -2px;
}

div.navi span.active {
	background-position:0 -26px;
} 	
