
/* player and playlist go side by side */
#player, div.playlist {
}

div.playlist {
	width:150px;
}

/* player dimensions */
#player, #player img {
	display:block;				
	width:300px;
	height:240px;
	border:0px;		
}

/* play button on top of splash image */
.play {
	position:relative;
	top:-140px;
	opacity:0.9;
	margin-bottom:-50px;
	cursor: pointer;
	background-image: url(../img/play-left.png);
}
div.play:hover {
	opacity:1.0;		
}


/* single playlist item */


div.items p {
	font-size:11px;
	width:130px;
	padding:8px 0 0 12px;
	margin:0px;		
}

div.items p.time {
	padding-top:0px;
	color:#777;
	margin-top:5px;
} 












div.items {

}



/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:5px;
	width:100px;
	height:100px;
	/*background:url(../img/item.gif) 0 0 no-repeat;*/
	/*color:#ccc;*/
	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:30px;
	height:30px;
	background-repeat:no-repeat;	
	margin:0px 0px 0px 0px;
	cursor: pointer;
}

a.prev {
	background:url(../img/button-left.gif);		
}

a.prev:hover {
	background:url(../img/button-left-over.gif);		
}

a.next {
	background:url(../img/button-right.gif);		
}

a.next:hover {
	background:url(../img/button-right-over.gif);		
}


/* navigator */
div.navi {
	position:relative;
	top:0px;
	left:0px;
	margin-left:0px;
	width:50px;
	height:0px;
}


/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

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

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