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


/* container for the scrollable items */
div.items {
	/*background-color:red;*/
	margin-left:35px;
	width:420px !important;
	
}

/* single item */
div.items a {
	display:inline;
	float:left;
	margin-right:8px;
	font-family:Arial, Helvetica, sans-serif;
font-size:11px;
	color:#000000;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a:hover {
	color:#000000;	
	text-decoration:underline;
}

div.items a.active {
	/*background-position:-174px 0;*/		
	color:#000000;
	cursor:default;
	text-decoration:underline;
}


/* next / prev buttons */
a.prev {
	/*background:url(img/playlist/arrow/left.png) no-repeat 0 0;*/
	/*background:url(../images/lftcrl_off_btn.jpg) no-repeat 0 0;
	display:block;
	width:11px;
	height:12px;
	float:left;	
	margin:0 0 0 0;*/
	cursor:pointer;
}

 a.next {
	/*background:url(img/playlist/arrow/left.png) no-repeat 0 0;*/
	/*background:#000000 url(../images/rtcrl_on_btn.jpg) no-repeat 0 0;
	display:inline;
	width:18px;
	height:14px;
	float:right;	
	margin:0;	*/
	cursor:pointer;
}
#nxt{
	background: url(../images/rtcrl_on_btn.jpg) no-repeat 0 0;
	display:inline;
	width:18px;
	position:relative;
	top:-20px;
	height:16px;
	float:right;	
	margin:0 0 5px 0;	
}
#pre{
	background:url(../images/lftcrl_on_btn.jpg) no-repeat 0 0;
	display:inline;
	width:18px;
	height:16px;
	float:left;	
	margin:0 0 5px 0;	
	cursor:pointer;
}

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;     
	cursor:pointer;
}

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

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

