

/* player and playlist go side by side */
#player {	
	margin:0px auto; 
	width: 680px;
}

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

#playlist {
	width: 480px;
	margin:0px auto;
}


/* overlay play button */
div.play {
	background:url(../img/play.png) no-repeat;
	width:50px;
	height:50px;
	position:relative;
	top:-140px;
	left:165px;	
	opacity:0.9;
	margin-bottom:-50px;
}

div.play:hover {
	opacity:1.0;		
}


/* playlist entry */
#playlist a {
	background-color: purple;
	width:230px;
	height:90px;
	display: block;
	float: left;
	text-decoration:none;
	color:#ffffff;	
	margin: 5px;
}

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

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


/* 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;	
}



