/* CSS Document */

/* player style */
/* container has a background image */
a.player {	
	margin-top:0px;
	display:block;
	width:260px;
	height:208px;
	padding:0px 0px 0px 0px;	
	text-align:center;
	color:#fff;
	text-decoration:none;
	cursor:pointer;
	border:2px solid #fff;
	outline:1px solid #333;
	-moz-outline-radius:4px;
	float:center;
	margin-right:0px;
}

/* splash image */
a.player img {
	margin-top:80px;
	border:0;	
}

#player {
	float:left;		
}	

/* playlist style */
#playlist {
	width:155px;
  height:210px;
  overflow-y:auto;
  overflow-x:hidden;
	border:1px solid #ccc;
	padding:0px 0px 0px 5px;
	background-color:#efefef;
	margin-top:2px;
	margin-left:10px;
	float:left;
}

/* playlist entry */
#playlist a {
	display:block;
	width:122px;
	height:125px;
	margin-top:5px;
	border:1px solid #ccc;
	background-color:#fff;
	font:10px "bitstream vera sans", "lucida grande",verdana;
	text-decoration:none;
	color:#666;
	padding:5px;
}

/* different states of a playlist entry */
#playlist a:hover {
	background-color:#dff4ff;		
}

#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 {
	border:0;	
	float:left;
	margin-right:10px;
  background:url(http://www.apn-ua.com/flowplayer/img/clock.gif) no-repeat 0 50%;
	padding-left:20px;
	color:#333;
	font-style:normal;
	margin-top:10px;
}

/* info area */
a.player div.info {
	height:75px;
  background:#000 url(http://www.apn-ua.com/flowplayer/img/h80.png) repeat-x;
	opacity:0.7;
	color:#fff;
/* 	margin-top:45px;  */
	text-align:left;
	padding:5px 15px;	
	font-family:"bitstream vera sans","trebuchet ms";
	font-size:12px;
	border-top:1px solid #ccc;
	margin-top:26px;
}

/* duration data inside info area */
a.player div.info span {
	color:#99FF99;
	display:block;
	font-weight:bold;
}



