/**
  * mp3音乐播放
  *	@author lyx
  */
#audio_area{ position:fixed; bottom:10px;  left:1px; z-index:9999; width:200px}
.audio-player,
.audio-player div,
.audio-player h4,
.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: 240px;
	height: 70px;
	background:rgba(000,000,000,0.4);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* Title */
.audio-player h4 {
	position: absolute;
	top: 13px;
	left:104px;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 12px;
	color: #ececec;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

/* Cover */
.audio-player .img-cover {
	position: absolute;
	top: 0;
	left: 0;
}

/* 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: 23px;
	height: 22px;
	top: 10px;
	left: 72px;
	background: transparent url(../img/play-pause.png) 0 0;
}

.mejs-controls .mejs-play button:hover{ background-position:0 -48px;}
.mejs-controls .mejs-pause button { background-position:0 -23px;}
.mejs-controls .mejs-pause button:hover{ background-position:0 -75px;}

/* Mute & Unmute */
.mejs-controls .mejs-mute button,
.mejs-controls .mejs-unmute button {
	width: 14px;
	height: 11px;
	top: 44px;
	left: 74px;
	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: 47px;
	left: 98px;
	cursor: pointer;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	width: 100px;
	height: 2px;
	background:rgba(255,255,255,0.5);
	-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: 2px;
	top: 0;
	left: 1px;
	background:#76d8c2;
	box-shadow:0 0 2px #8defd9;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

/* Progress Slider */
.mejs-controls div.mejs-time-rail { width: 200px; }

.mejs-controls .mejs-time-rail span {
	position: absolute;
	display: block;
	width: 200px;
	height: 5px;
	left: 0;
	bottom: 0;
	cursor: pointer;
	
	-webkit-border-radius: 0px 0px 2px 2px;
	-moz-border-radius: 0px 0px 2px 2px;
	border-radius: 0px 0px 2px 2px;
}

.mejs-controls .mejs-time-rail .mejs-time-total { background: #999999; }

.mejs-controls .mejs-time-rail .mejs-time-loaded {
	width: 0;
	background: #cccccc;
	box-shadow: 0 1px 2px #999;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
	width:0;
	background:#8bd5c5;
	box-shadow:0 0 2px #8defd9;
}

/* Volume Slider & Progress Bar Handle */
.mejs-controls .mejs-time-rail .mejs-time-handle,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
	position: absolute;
	display: block;
	width: 12px;
	height: 14px;
	top: -4px;
	background: url(../img/handle.png) no-repeat;
}


.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle { top:-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;
}

.mejs-container .mejs-controls div {
	list-style-type: none;
	background-image: none;
	display: block;
	float: left;
	font-size: 11px;
	line-height: 11px;
	font-family: "Helvetica", Arial, serif;
	border: 0;
}