/* outmost wrapper element */
#scrollable {
	background-color:#252525;
	padding:10px 0px;
	width:566px;
	height:90px;

}
/* container for the scrollable items */
div.items {
	align:center;
	height:90px;
	margin-left:10px;
	float:left;
	width:520px !important;
}
/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:10px;
	width:120px;
	height:90px;
	
	font-size:50px;
	color:#ccc;
	line-height:66px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;

}
div.items a:hover {
	filter: progid: DXImageTransform.Microsoft.Alpha(opacity=50);
	-moz-opacity: 0.5;    /* Mozilla 1.6 и ниже */
	-khtml-opacity: 0.5;  /* Konqueror 3.1, Safari 1.1 */
	opacity: 0.5;         /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +,
	                         Safari 1.2+, Opera 9 */
	filter: alpha(opacity=60); /* IE 5.5+*/
}

/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:16px;
	height:70px;
	float:left;
	background-repeat:no-repeat;
	margin:10px 0 0 0;
}
a.prev {
	background:url(../images/scroll/arrow-left.gif);
}
a.prev:hover {
	background:url(../images/scroll/arrow-left-over.gif);
}
a.next {
	background:url(../images/scroll/arrow-right.gif);
}
a.next:hover {
	background:url(../images/scroll/arrow-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(../images/scroll/dots.png) 0 0 no-repeat;
	cursor:pointer;
}
div.navi span:hover {
	background-position:0 -8px;
}
div.navi span.active {
	background-position:0 -16px;
}