.audio-player,
.audio-player div,
.audio-player h1,
.audio-player a,
.audio-player img,
.audio-player span,
.audio-player button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

div.audio-player {
	position: relative;
	width: 300px;
	height: 340px;
	
	background: #9E0000;
	background: -webkit-linear-gradient(top, #8C0001 0%, #380001 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 15px;
}

/* Title */
.audio-player h1 {
	position: absolute;
	top: 40px;
	left: 150px;

	font-family: Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 15px;
	color: #FFFFFF;
	text-shadow: 1px 1px 1px rgba(0,0,0, .5);
}
.audio-player h2 {
position: absolute;
	top: 40px;
	left: 150px;

font-family: trebuchet ms,helvetica,sans-serif;
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	text-shadow: 2px 2px 2px rgba(0,0,0, .5);
}
.audio-player h3 {
position: absolute;
	top: 90px;
	left: 150px;

font-family: Helvetica, Arial, sans-serif;
font-style: italic;
	font-weight: bold;
	font-size: 15px;
	color: #00FF2D;
	text-shadow: 1px 1px 1px rgba(0,0,0, .5);
}

/* Cover */
.audio-player .cover {
	position: absolute;
	top: 10px;
	left: 20px;
}

/* Buttons */
.mejs-controls .mejs-button button {
	cursor: pointer;
	display: block;
	position: absolute;
	text-indent: -9999px;
}

/* Play & Pause */
.mejs-controls .mejs-play button,
.mejs-controls .mejs-pause button {
	width: 70px;
	height: 70px;
	top: 165px;
	left: 110px;
	background: transparent url(../img/play-pause1.png) 0 0;
}

.mejs-controls .mejs-pause button { background-position:0 -70px; }

/* Mute & Unmute */
.mejs-controls .mejs-mute button,
.mejs-controls .mejs-unmute button {
	width: 14px;
	height: 12px;
	top: 286px;
	left: 20px;
	background: transparent url(../img/mute-unmute.png) 0 0;
}

.mejs-controls .mejs-unmute button { background-position: 0 -12px; }

/* Volume Slider */
.mejs-controls div.mejs-horizontal-volume-slider {
	position: absolute;
	top: 280px;
	left: 50px;
	cursor: pointer;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	width: 200px;
	height: 20px;
	background: #212227;

	-webkit-box-shadow: inset 0px 1px 0px rgba(0,0,0, .3), 0px 1px 0px rgba(255,255,255, .25);
	-moz-box-shadow: inset 0px 1px 0px rgba(0,0,0, .3), 0px 1px 0px rgba(255,255,255, .25);
	box-shadow: inset 0px 1px 0px rgba(0,0,0, .3), 0px 1px 0px rgba(255,255,255, .25);

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	position: absolute;
	width: 0;
	height: 20px;
	top: 1px;
	left: 1px;
	background: url(../img/volume-bar1.png) repeat-x;

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}



/* Time Float Box */
.mejs-controls .mejs-time-rail .mejs-time-float {
	position: absolute;
	display: none;
	width: 33px;
	height: 23px;
	top: -26px;
	margin-left: -17px;
	background: url(../img/time-box.png);
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
	width: 33px;
	display: block;
	left: 0;
	top: 4px;

	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
	text-align: center;
}