/** audio player styles **/
.audio-player,
.audio-player div,
.audio-player h2,
.audio-player a,
.audio-player span,
.audio-player button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

div.audio-player {
	position: relative;
	width: 450px;
	max-width: 100%;
	overflow: hidden;
	height: 70px;
	background: #EEE;
	border: 1px solid #CCC;
	border-radius: 3px;
	box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.2);
}

.audio-player h2 {
	position: absolute;
	top: 7px;
	left: 10px;
	font-weight: bold;
	font-size: 16px;
	color: #333;
}

/* play/pause control */
.mejs-controls .mejs-button button {
	cursor: pointer;
	display: block;
	position: absolute;
}

.mejs-controls .mejs-play button, .mejs-controls .mejs-pause button {
	width: 34px;
	height: 34px;
	top: 29px;
	left: 14px;
	background: transparent url('playpause.png') 0 0 no-repeat;
}
.mejs-controls .mejs-pause button {
	background-position: 0 -35px;
}

/* mute/unmute control */
.mejs-controls .mejs-mute button, .mejs-controls .mejs-unmute button {
	width: 18px;
	height: 19px;
	top: 9px;
	right: 142px;
	background: transparent url('audio.png') 0 0 no-repeat;
}
.mejs-controls .mejs-unmute button {
	background-position: 0 -20px;
}



/* volume scrubber bar */
.mejs-controls div.mejs-horizontal-volume-slider {
	position: absolute;
	top: 13px;
	right: 13px;
	cursor: pointer;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	width: 122px;
	height: 11px;
	background: #8FBFDF;
	border-radius: 3px;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	position: absolute;
	width: 0;
	height: 11px;
	top: 0;
	left: 0;
	background: #0265a4;
	border-radius: 3px;
}


/* time scrubber bar */
.mejs-controls div.mejs-time-rail {
	width: 380px;
}

.mejs-controls .mejs-time-rail span {
	position: absolute;
	display: block;
	width: auto;
	height: 12px;
	top: 40px;
	left: 55px;
	right: 12px;
	cursor: pointer;
	border-radius: 3px;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
	background: #8FBFDF;
	width: auto !important;
	max-width: 100%;
	border-radius: 3px;
}

.mejs-controls .mejs-time-rail .mejs-time-loaded {
	top: 0;
	left: 0;
	width: 0;
	background: transparent;
	border-radius: 3px;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
	top: 0;
	left: 0;
	width: 0;
	border-radius: 3px;
	background: #0265a4;
}

/* metallic sliders */
.mejs-controls .mejs-time-rail .mejs-time-handle {
	width: 4px;
	height: 16px;
	top: -2px;
	left: -1px;
	background: #333;
	border-radius: 0;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
	position: relative;
	width: 4px;
	height: 15px;
	top: -13px;
	left: -1px;
	background: #333;
	border-radius: 0;
}


/* time progress tooltip */
.mejs-controls .mejs-time-rail .mejs-time-float {
	position: absolute;
	display: none;
	width: 3em;
	height: 1.5em;
	top: -26px;
	margin-left: -1.5em;
	z-index: 9999;
	background: #FFF;
	border: 1px solid #8FBFDF;
	box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.2);
	border-radius: 3px
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
	width: 100%;
	display: inline-block;
	left: 0;
	top: 0;
	font-size: 12px;
	font-weight: normal;
	color: #333;
	text-align: center;
	z-index: 9999;
	padding: 0;
}
