@charset "utf-8";
/* CSS Document */
/* player style */
/* container has a background image */
a.player {	
	/*margin-top:40px;*/
	display:block;
	background:url(/images/splash.png) no-repeat;
	width: 480px;
	height: 272px;
	padding:0px /*126px 75px 127px*/;	
	text-align:center;
	color:#fff;
	text-decoration:none;
	cursor:pointer;
	float: left;
}

/* splash image */
a.player img {
	margin-top:115px;
	border:0;	
}


#player {
	float:left;		
}	

/* playlist style */
#playlist {
	width:432px;
	height:252px;
	overflow-y:auto;
	overflow-x:hidden;
	border:1px solid #ccc;
	padding:/*4px*/ 10px 12px 10px;
	background-color:#990000;
	/*margin-top:20px;*/
	float:right;
}

/* playlist entry */
#playlist a {
	display:block;
	width:400px;
	height:90px;
	padding:7px;
	background-color:#999;
	border:1px solid #ccc;
	font:11px "bitstream vera sans", "lucida grande",verdana;
	text-decoration:none;
	margin-top:7px;
	color:#666;
	text-align: left;
}

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

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

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

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

/* elements inside playlist entry */
#playlist a img {
	border:0;	
	float:left;
	margin-right:10px;
}

#playlist a strong {
	color:blue;		
	padding-bottom:5px;
}

#playlist a em {
	border:0;	
	float:left;
	margin-right:10px;
	background:url(images/clock.png) no-repeat 0 50%;
	padding-left:20px;
	color:#990000;
	font-style:normal;
	margin-top:10px;
}

