body, html {
	margin: 0;
	padding: 0;
}

div.player {
	width: 480px;
	height: 294px;
}

div.playlist {
	position: relative;
	height: 75px;
	width: 480px;
	margin-top: 10px;
	overflow: auto;
}

div.playlist div {
	width: 740px;
	height: 56px;
	overflow: hidden;
}

div.playlist a {
	display: inline;
	float: left;
	width: 100px;
	height: 56px;
	margin-right: 5px;
	position: relative;
	text-decoration: none;
}

div.playlist a img {
	width: 100px;
	height: 56px;
}

div.playlist a span.icon {
	width: 100px;
	height: 56px;
	position: absolute;
	top:0;
	left: 0;
	background: url('/__images/play_btns.png') 0 60px no-repeat;
}

div.playlist a.progress span.icon { /* loading */
	background-position: 0 0;
}
div.playlist a.playing span.icon { /* playing */
	background-position: 0 -60px;
}
div.playlist a.paused span.icon { /* paused */
	background-position: 0 -120px;
}
