

/* player and playlist go side by side */
#player, #playlist {
	float:left;		
	margin-right:5px; 
}

/* player dimensions */
#player, #player img {
	display:block;	
	width:300px;
	height:275px;
	margin:0;
	cursor:pointer;
	border:0px;			
	
	/*
	width:622px;
	height:517px;
	*/
}

#playlist, #playlist2 {
	width:195px;		
	float:left;
}
#playlist2{
	margin-bottom:150px;
}


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

div.play:hover {
	opacity:1.0;		
}


/* playlist entry */
#playlist a,#playlist2 a {
	background:none;
	width:195px;
	/*height:68px;*/
	display:block;
	text-decoration:none;
	color:#333;
	float:left;
	padding-bottom:0.8em;
}


#playlist a p, #playlist2 a p {
	font-size:12px;
	width:195px;
	padding:0 0 0 10px;
	margin:0px;	
	
	color:#FF6633;
	background:#FFFFFF;
	font-weight:bold;	
}

#playlist p.description{
	color:#000000;
	background:#FFFFFF;
	padding-top:2px;
}

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


/* entry stages: normal, hover, playing, paused */
#playlist a:hover , #playlist2 a:hover, #playlist p.description:hover, #playlist p:hover{
	/*background-position:0 -68px;*/
	cursor:pointer;
	text-decoration:underline;
}
#playlist a:hover , #playlist2 a:hover{
	background-color:#ffffff;
}

#playlist a.playing, #playlist a.paused,#playlist2 a.playing, #playlist2 a.paused {
	color:#000;	
}

#playlist a.playing,#playlist2 a.playing {
	background-position:0 -136px;		
}

#playlist a.paused,#playlist2 a.paused {
	background-position:0 -68px;	
}


