
/* player and playlist go side by side */
#player, div.playlist {
	float:left;		
	margin-right:0px; 
}

div.playlist {
	width:155px;		
}

/* player dimensions */
#player, #player img {
	display:block;				
	width:450px;
	height:253px;
	border:0px;		
}

/* play button on top of splash image */
div.play {
	background:url('../img/play-arrow4.png') no-repeat;
	width:44px;
	height:44px;
	position:relative;
	top:-160px;
	left:320px;	
	opacity:0.77;
	margin-bottom:-10px
}

div.play:hover {
	opacity:1.0;		
}


/* single playlist item */
div.items a {
	background:url('../img/block.jpg') no-repeat;
	width:152px;
	height:70px;
	display:block;
	text-decoration:none;
	color:#444		
}

div.items p {
	font-size:12px;
	width:134px;
	padding:4px 0 0 8px;
	margin:0px;		
}

div.items p.time {
	padding-top:0px;
	color:#777;
	margin-top:2px;
} 

/* item stages: normal, hover, playing, paused */
div.items a:hover {
	background-position:0 -68px;	
}

div.items a.playing, div.items a.paused {
	color:#000;	
}

div.items a.playing {
	background-position:0 -136px;		
}

div.items a.paused {
	background-position:0 -68px;	
}


/* small navigational dots */
div.navi {
	width:120px;	
	float:left;
	margin:4px 0 0 10px;
	height:11px;
	overflow:hidden;
}

div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url('../img/dots.png') no-repeat 0px 0px;		
	cursor:pointer
}

div.navi span:hover {
	background-position:0 -8px;		
}

div.navi span.active {
	background-position:0 -16px;
	cursor:default;
}