
/* outmost wrapper element, containing all elements  */
#scrollable {
	padding:10px 8px;
	width:990px;
	height:65px;
	-moz-border-radius:7px;
}

/* container for the scrollable items */
div.items {
	height:66px;	
	margin-left: -110px;
	float:left;
	width:880px !important;
}

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:10px;
	width:88px;
	height:66px;
	background:url(/img/playlist/entry.gif) 0 0 no-repeat;
	font-size:50px;
	color:#ccc;
	line-height:66px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a img {
	border: none;
}

div.items a:hover {
	color:#999;
}

div.items a.active {
	background-position:-174px 0;		
	color:#555;
	cursor:default;
}


/* next / prev buttons */
a.prev {
	background:url(../images/scroll-left-btn.jpg) no-repeat 0 0;
	display:block;
	width:37px;
	height:65px;
	float:left;	
	margin: 0 0 0 -160px;
	cursor:pointer;
}

a.next {
	background-image:url(../images/scroll-right-btn.jpg);
	display:block;
	width:37px;
	height:65px;
	float:left;	
	margin: 0 0 0 0;
	cursor:pointer;
	background-repeat: no-repeat;
}

/* navigator */
div.navi {
	position:relative;
	top:-33px;
	left: 800px;
	margin-left:-50px;
	width:200px;
	height:0px;
}


/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/dots.png) 0 0 no-repeat;     
	cursor:pointer;
	overflow: hidden;
}

div.navi span:hover {
	background-position:0 -8px;      
}

div.navi span.active {
	background-position:0 -16px;     
} 	

