/* player and playlist go side by side */
#player, #playlist {
	float:none;		
	margin-right:20px; 
}

/* player dimensions */
#player, #player img {
	display:block;				
	width:299px;
	height:240px;
	border:0px;		
}

#playlist {
	width:299px;		
	height: 110px;
	overflow: scroll;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
	scrollbar-base-color:#ffeaff;
	background-color: #444;
	border: 1px #000 solid;
}

/* overlay play button */
div.play {
	background:url(../img/play.png) no-repeat;
	width:50px;
	height:50px;
	position:relative;
	top:-140px;
	left:125px;	
	opacity:0.9;
	margin-bottom:-50px;
}

div.play:hover {
	opacity:1.0;		
}


/* playlist entry */
#playlist a {
	width:300px;
	display:block;
	text-decoration:none;
	color:#fff;		
	text-indent:10px;
}
#playlist a:hover {
        background:url(/contenido/play-16x16.png) no-repeat;
        width:300px;
        display:block;
        text-decoration:none;
        color:#999;
        background-position: -1 6px;
}



#playlist p {
	font-size:11px;
	width:300px;
	padding:8px 0 0 8px;
	margin:0px;		
}

#playlist p.time {
	padding-top:0px;
	color:#fff;
	margin-top:5px;
} 


/* entry stages: normal, hover, playing, paused */

#playlist a.playing, #playlist a.paused {
	color:#000;	
}

#playlist a.playing {
	background-position:0 -136px;		
}

#playlist a.paused {
	background-position:0 -68px;	
}


