

/* player and playlist go side by side */
#player, #playlist {
	float:left;
	margin-right:4px;
}

/* player dimensions */
#player, #player img {
	display:block;
	width:344px;
	height:258px;
	border:0px;
}

#playlist {
	width:200px;
}


/* overlay play button */
div.play {
	background:url('media/flowplayer/examples/img/play.png') no-repeat;
	width:48px;
	height:48px;
	position:relative;
	top:-151px;
	left:150px;
	opacity:0.9;
	margin-bottom:-50px
}

div.play:hover {
	opacity:1.0;
}


/* playlist entry */
#playlist a {
	background:url('pic/mccvbutton.png') no-repeat;
	width:200px;
	height:82px;
	display:block;
	text-decoration:none;
	color:#333
}

#playlist p {
	font-size:12px;
	font-family:arial;
	width:180px;
	padding:8px 0 0 12px;
	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 -82px;
}

#playlist a.playing, #playlist a.paused {
	color:#000;	
}

#playlist a.playing {
	background-position:0 -164px;
}

#playlist a.paused {
	background-position:0 -82px;
}