
.player {
	position: relative;
	margin: 5px 0;
	width: 200px;
	height: 18px;
}

.player  ul.controls {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 142px;
	position: relative;
	z-index: 7;
}

.player ul.controls li {
	overflow: hidden;
	text-indent: -9999px;
}

.player .play,
.player .pause {
	display: block !important;
	position: absolute;
	left: 0;
	top: 0;
	width: 18px !important;
	height: 18px !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer;
	z-index: 10;
}

.player .play {
	background: url(http://cdn.umg3.net/thesaturdays/images/audio/play.png) no-repeat;
}

.player .pause {
	background: url(http://cdn.umg3.net/thesaturdays/images/audio/pause.png) no-repeat;
	display: none !important;
}

.player.playing .play {
	display: none !important;
}

.player.playing .pause {
	display: block !important;
}

.player .progress {
	position: absolute;
	left: 0;
	top: 0;
	background: url(http://cdn.umg3.net/thesaturdays/images/audio/progress-background.png) no-repeat;
	width: 142px;
	height: 18px;
	display: block;
	margin: 0;
	padding: 0 18px 0 0;
	z-index: 5;
}

.player .play-bar {
	background: #a55a24;
	width: 0;
	position: relative;
	left: 8px;
	height: 18px;
}

.time {
	position: absolute;
	top: 0;
	right: 5px;
	width: 35px;
	height: 18px;
	line-height: 18px;
	font-size: 11px;
	color: #808080;
	text-align: right;
}


