/* player and playlist go side by side */
#player, #playlist {
	margin: 12px auto 18px;
}

/* player dimensions */
#player, #player img {
	display:block;
	width:320px;
	height:270px;
	border:1px solid #CCCCCC;
}

#playlist {
	float: left;
	margin: 18px auto 18px 25px;
}


/* overlay play button */
div.play {
	background:url(../../images/flowplayer/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;
	cursor: pointer;
}


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

#playlist p {
	font-size:10px;
	width:130px;
	padding:8px 0 0 12px;
	margin:0px;
}

#playlist p.time {
	padding-top:0px;
	color:#777;
	margin-top:3px;
} 


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