@charset "utf-8";
/* CSS Document for Using the Flow Player */

/* player style */
/* container has a background image */

a.player {	
	display:block;
	background:url(../media/splash.jpg) no-repeat;
	width:320px; height:227px;
	text-align:center;
	color:#fff;
	text-decoration:none;
	cursor:pointer;
	border: solid 1px #CF0;
}

/* splash image */
a.player img {
	margin-top:78px;
	border:0;	
}


#player {
	float:left;
}	

/* playlist style */
#playlist {
	width:295px;
	height:320px;
	overflow-y:auto;
	overflow-x:hidden;
	padding:4px 10px 12px 10px;
	background-color:#486df5;
	float:left;
}

/* playlist entry */
#playlist a {
	display:block;
	width:250px;
	height:130px;
	padding:10px; margin-top:5px;
	background-color:#fff;
	border:1px solid #ccc;
	font:11px "bitstream vera sans", "lucida grande",verdana;
	text-decoration:none;
	color:#666;
}

/* different states of a playlist entry */
#playlist a:hover {
	background-color:#ffc;		
}

#playlist a.progress {
	background-color:#efefef;	
}

#playlist a.playing {
	border:1px solid #666;
	background-color:#ffc;	
}

#playlist a.paused {
	border:1px solid #666;
	background-color:#ffc;	
}

/* 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 {
	color:#333;

}

