

/* player and playlist go side by side */
#playlist {
	float:left;		
	margin-right:10px; 
}

#player {
	float:right;		
	margin-right:0px; 
}

/* player dimensions */
#player, #player img {
	display:block;				
	width:400px;
	height:300px;
	border:0px;		
}

#playlist {
	width:190px;
	background-color: #ccc;		
}


/* overlay play button 
div.play {
	background:url(../imgs/play.png) no-repeat;
	width:50px;
	height:50px;
	position:relative;
	top: 130px;
	left:380px;	
	opacity:0.9;
	margin-bottom:-50px;
} */

div.play:hover {
	opacity:1.0;		
}


/* playlist entry */
#playlist a {
	text-decoration:none;
	display:block;
}

#playlist a:hover {
background-color:#999999;
}

#playlist p {
font-family:Verdana, Arial, Helvetica, sans-serif;

	font-size:11px;
	width:170px;
	padding:5px;
	margin:0px;	
	border-bottom: 1px solid #666666;	
	color:#333;	
	font-weight: normal;	
}

#playlist strong {
color: #355870;
}

#playlist strong a:hover{
color: #000;
}

#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;	
}



