﻿
/* player and playlist go side by side */
#player, #playlist {
	float:left;		
	margin-right:30px; 
}

#player {
	margin-top: 25px;
	margin-bottom: 25px;
}

/* player dimensions */
#player {
	display:block;				
	width:500px;
	height:400px;
	border:0px;	
	margin-left: 100px;	
}

#player img {
	margin-left: 100px;
}

#playlist {
	width:200px;
	margin-left: 50px;		
}


/* overlay play button */
div.play {
	background:url(../img/btn/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 {
	background:url(img/block.jpg) no-repeat;
	width:80px;
	height:20px;
	text-decoration:none;
}

#playlist p {
}

#playlist p.time {
	padding-top:0px;
	color:#777;
	margin-top:5px;
} 

#playlist span {
	text-decoration: underline;
}


/* 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;	
}


