

/* player and playlist go side by side */
#player{
	float:left;		
	margin-right:0px; 
    padding-bottom:20px;
}

#playlist{
}
 
/* player dimensions */
#player, #player img {
	display:block;				
	width:617px;
	height:377px;
	border:0px;		
}

#playlist {
	width:150px;		
}


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

div.play:hover {
	opacity:1.0;		
}


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

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


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


