/* player and playlist go side by side */
#player, #playlist {
    position: relative;		
    margin-right:20px; 
}

/* player dimensions */
#player, #player img {
    display:block;				
    width:430px;
    height:312px;
    border:0px;		
}

#playlist {
    width:430px;
    margin-top: 8px;
}


/* overlay play button */
div.play {
    background:url(images/play.png) no-repeat;
    width:50px;
    height:50px;
    position:relative;
    top:-180px;
    left:195px;	
    opacity:0.9;
    margin-bottom:-50px;
    cursor: pointer;
}

div.play:hover {
    opacity:1.0;		
}


/* playlist entry */
#playlist a {
    background: url(images/block3.jpg) no-repeat;
    width:405px;
    height:68px;
    display:block;
    text-decoration:none;
    color:#555;
    float: left;
}

#playlist p {
    font-size:11px;
    width:90px;
    padding:6px 0 0 8px;
    margin:0px;
    color:#888;
}

#playlist p.time {
    padding-top:0px;
    color:#555;
    margin-top:5px;
} 


/* entry stages: normal, hover, playing, paused */
#playlist a:hover {
    background-position:0 -68px;	
}

#playlist a.playing, #playlist a.paused {
    color:#000;	
}

#playlist a.playing {
    background-position:0 -136px;		
}

#playlist a.paused {
    background-position:0 -68px;	
}


