/* player and playlist go side by side */
#container{text-align:center;}
#player, div.playlist {
	float:left;		
	margin-right:0px; 
}

div.playlist {
	width:260px;
	/*height:272px;*/
	text-align:left;
	/*padding-right:0px;*/
	overflow:hidden;
	padding-left:0px;
}

/* player dimensions */
#player, #player img {
	display:block;				
	width:440px;
	height:297px;
	border:0px;	
	margin-top:7px;	
}

/* play button on top of splash image */
div.play {
	background:url(../img/play.png) no-repeat 50% 45%;
	width:440px;
	height:297px;
	position:relative;
	top:-297px;
	left:0px;	
	opacity:0.9;
	margin-bottom:0px;
}

div.play:hover {
	opacity:1.0;		
}


/* single playlist item */
div.items {/*	width:250px;*/font-size:10px;}
div.items span {
	width:130px;
	padding-top:3px;
	padding-right:10px;
}

div.items a {
	background:url(../img/blocklg.jpg) no-repeat;
	width:250px;
	height:68px;
	display:block;
	text-decoration:none;
	color:#444;	
	padding-top:0px;
}

div.items p {
	font-size:11px;
	width:130px;
	padding-top:3px;
	margin:0px;		
}

div.items p.time {
	padding-top:0px;
	color:#777;
	margin-top:5px;
} 

/* item stages: normal, hover, playing, paused */
div.items a:hover {
	background-position:0 -68px;	
}

div.items a.playing, div.items a.paused {
	color:#000;	
}

div.items a.playing {
	background-position:0 -136px;		
}

div.items a.paused {
	background-position:0 -68px;	
}


/* small navigational dots */
div.navi {
	width:60px;	
	float:left;
	margin:10px 0 0 100px;
	height:11px;
	overflow:hidden;
}

div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/dots.png) 0px 0px no-repeat;		
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -8px;		
}

div.navi span.active {
	background-position:0 -16px;
	cursor:default;
}



a.go {
	display:block;
	width:18px;
	height:18px;
	background:url(../img/up.png) no-repeat;
	margin:5px 0 5px 105px;
	cursor:pointer;
}

a.go:hover, a.go.down:hover {
	background-position:0px -18px;		
}

a.go.down {
	background-image:url(../img/down.png);	
}

div.petrol a.go {
	background-image:url(../img/up_dark.png);		
}

div.petrol a.go.down {
	background-image:url(../img/down_dark.png);		
}

a.go.disabled {
	visibility:hidden;	
}