

/* player and playlist go side by side */
div#content #player, div#content #playlist {
	float:left;		
}

/* player dimensions */
div#content #player, div#content #player img {
	display:block;				
	width:450px;
	height:370px;
	border:0px;		
}

div#content #playlist {
	width:450px;		
	padding:0;
	margin:0;
	margin-left : 2px;
}


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

div.play:hover {
	opacity:1.0;		
}


/* playlist entry */
div#content #playlist a {
	background:url(../img/block.jpg) no-repeat;
	float: left;
	width:150px;
	height:68px;
	display:block;
	text-decoration:none;
	color:#333;		
}

div#content #playlist span.block {
	font-size:11px;
	width:130px;
	padding:8px 0 0 12px;
	margin:0px;		
	display:block;
}

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

div#content #playlist .title {
	font-style : italic;
} 


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

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

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

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



