
/* outmost wrapper element, containing all elements  */
#scrollable {
	background-color:#efefef;
	border:1px solid #ddd;
	padding:10px 8px;
	width:540px;
	height:110px;
	margin-top:30px;
	-moz-border-radius:7px;
}

/* container for the scrollable items */
div.items {
	height:200px;	
	margin-left:8px;
	float:left;
	width:475px !important;
}

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width:80px;
	height:102px;
	
	font-size:11px;
	color:white;
	border:solid 1px #321851;
	text-decoration:none;
	

}

div.items a:hover {
	color:#b49cd1;	
	border:solid 1px white;
}

div.items a.active {
	background-position:-174px 0;		
	color:#555;
	
}


/* next / prev buttons */
a.prev, a.next {
	background:url(img/left.png) no-repeat 0 0;
	display:block;
	width:18px;
	height:110px;
	float:left;	
	margin:22px 0 0 0;
	
}

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

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

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


/* 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(/img/playlist/dots.png) 0 0 no-repeat;     
	
}

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

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