/* playlist style */
#playlist {
	width:320px;
	height:400px;
	overflow-y:auto;
	overflow-x:hidden;
	border:1px solid #ccc;
	padding:4px 10px 12px 10px;
	background-color:#efefef;
	float:left;
}

/* playlist entry */
#playlist a {
	display:block;
	width:280px;
	height:90px;
	padding:7px;
	background-color:#CCC;
	border:1px solid #666;
	text-decoration:none;
	color:#666;
}

/* different states of a playlist entry */
#playlist a:hover {
	background-color:#ffc;		
}

#playlist a.progress {
	background-color:#DBDBB7;	
}

#playlist a.playing {
	border:1px solid #666;
	background-color:#EFDFFF;	
}

#playlist a.paused {
	border:1px solid #666;
	background-color:#ffc;	
}