

/* player and playlist go side by side */
#player, #playlist {
 
}

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

#playlist {
			
}

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

div.play:hover {
	opacity:1.0;		
}
*/

/* playlist entry */
#playlist a {
	background:url(video-block.png) no-repeat;
	width:235px;
	height:47px;
	display:block;
	text-decoration:none;
	color:#333;		
}

#playlist p {
  color:#ddd;
  font-family:Arial;
	font-size:16px;
	font-weight:bold;
	width:190px;
	padding:16px 0 0 17px;
	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 -47px;	
}

#playlist p.playing, #playlist p.paused {
	color:#eee;	
}

#playlist a.playing {
	background-position:0 -94px;		
}

#playlist a.paused {
	background-position:0 -47px;	
}


