﻿body {
	background-color:black;
	color:white;
}
#playerCenter {
	position:absolute;
	left:50%;
	width:640px;
	margin-left:-320px;
	top:50%;
	height:480px;
	margin-top:-240px;
}
.afterText {
	text-align:center;
	
}
/* player and playlist go side by side */
#player, #playlist {
	float:left;		
	margin-right:20px; 
}

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

#playlist {
	width:172px;	
	height:400px;	
	overflow:auto;

}


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

div.play:hover {
	opacity:1.0;		
}


/* playlist entry */
#playlist a {
	font-family:Arial, Helvetica, sans-serif;
	color:white;	
	/*background:url(block.jpg) no-repeat;*/
	background-color:black;
	width:150px;
	height:60px;
	display:block;
	text-decoration:none;
	
}

#playlist p {
	font-family:Arial, Helvetica, sans-serif;
	color:white;	
	font-size:11px;
	width:130px;
	padding:8px 0 0 12px;
	margin:0px;		
}

#playlist p.time {
	padding-top:0px;
	color:gray;
	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;	
}


