

/* player and playlist go side by side */
#player, #playlist {
	float:left;		
	margin-right:15px; 
}

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

#playlist {
	width:100px;		
}




/* playlist entry */
#playlist a {
	background:url(../img/strikeblock.jpg) no-repeat;
	width:100px;
	height:30px;
	display:block;
	text-decoration:none;
	color:#333;		
}

#playlist p {
	font-size:13px;
	width:90px;
	padding:8px 0 0 12px;
	margin:0px;		
}

#playlist p.time {
	padding-top:0px;
	color:#777;
	margin-top:2px;
} 


/* entry stages: normal, hover, playing, paused */
#playlist a:hover {
	background-position:0 -68px;	
}

#playlist a.playing, #playlist a.paused {
	color:#000;	
}

#playlist a.playing {
	background-position:0 -136px;		
}

#playlist a.paused {
	background-position:0 -68px;	
}


