/* CSS Document */
/* player style */
/* container has a background image */
a.player {	
  margin-top:20px;
  margin-left: 10px;
	display:block;
	background:url(splash1.png) no-repeat;
	width:352px;
	height:246px;
	padding:0 20px 75px 0px;	
	text-align:center;
	color:#fff;
	text-decoration:none;
	cursor:pointer;
}

/* splash image */
a.player img {
	margin-top:105px;
	border:0;	
}


#player {
	float:left;		
}	

/* playlist style */
#playlist {
	width:232px;
	height:425px;
	overflow-y:auto;
	overflow-x:hidden;	
	padding:4px 10px 12px 10px;
	border:1px solid #000;
  background-color:#111;
	margin-top:13px;
	float:left;
	scrollbar-3dlight-color:#fff;
  scrollbar-arrow-color:#ffb000;
  scrollbar-base-color:#ffb000;
  scrollbar-darkshadow-color:#333;
  scrollbar-face-color:#333;
  scrollbar-highlight-color:#999;
  scrollbar-shadow-color:#666;
}

/* playlist entry */
#playlist a {
	display:block;
	width:200px;
	height:65px;
	padding:7px;
	margin-bottom:3px;
	color: #fff;
	/*background-color:#333;
	border:1px solid #ccc;*/
	font:11px "bitstream vera sans", "lucida grande",verdana;
	text-decoration:none;
	margin-top:7px;
	color: #fff;
}

/* different states of a playlist entry */
#playlist a:hover {
	background-color:#222;		
}

#playlist a.progress {
	background-color:#333;	
}

#playlist a.playing {
	/* border:1px solid #666; */
	background-color:#222;	
}

#playlist a.paused {
	/* border:1px solid #666; */
	background-color:#222;	
}

/* elements inside playlist entry */
#playlist a img {
	border:0;	
	float:left;
	margin-right:10px;
  width: 100px;
  height: 65px;
}

#playlist a strong {
	/* color:blue; */		
	padding-bottom:5px;
}

#playlist a em {
	border:0;	
	float:left;
	margin-right:10px;
	padding-left:20px;
	color:#333;
	font-style:normal;
	margin-top:10px;
}


/* remove ugly system borders links */
a img 	{ 	border:0 }
a:active { 	outline:none; }
:focus   { -moz-outline-style:none; }
