.audio-player {
	width:100%;
	height:21px;
	border:solid 1px #d1d1d1;
	background: #f9f9f9; /* Old browsers */
	background: -moz-linear-gradient(top,  #f9f9f9 0%, #e2e2e2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e2e2e2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f9f9f9 0%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f9f9f9 0%,#e2e2e2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f9f9f9 0%,#e2e2e2 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f9f9f9 0%,#e2e2e2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */

	-webkit-border-radius: 4px;
    border-radius: 4px;
    position:relative;
}

.audio-player .progress {
	background: none repeat scroll 0 0 #c5c4c4;
	left: 20%;
	position: absolute;
	top: 6px;
	width: 75%;
	cursor: pointer;
	display:none;
}

.audio-player.state-playing .progress {
	display: block;
}

.audio-player .progress .bar {
	position:absolute;
	left:0;
	top:0;
}

.audio-player .progress,
.audio-player .progress .bar {
	height:9px;
}

.audio-player .progress .bar {
	background:#22ccff;
}

.audio-player a {
	background-image: url("control.png");
	display: block;
	height: 15px;
	left: 5%;
	position: absolute;
	top: 3px;
	width: 15px;
}

.audio-player.state-playing a {
	background-image: url("control-pause.png");
}