/*------audioPlayer-------*/
.music {
	overflow: hidden;
	background-color: #392632;

}

#audioPlayer{
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #392632;
    -webkit-box-sizing: border-box; /* Safari */
    -moz-box-sizing: border-box; /*Firefox 1-3*/
    box-sizing: border-box;
    padding-top: 23px;
    padding-left: 29px;
    padding-bottom: 23px;

}


#audioPlayer .title {
	position: relative;
	display: block;
	text-transform: uppercase;
	font:bold 14px/18px 'Roboto', Arial, sans-serif;
	color: #be6998;
	letter-spacing: 3px;
	margin-top: 7px;
}
#progressBar{
    display: block;
    width: 321px;
    height: 14px;
    padding-top: 20px;
}
#timeBar{
    float: left;
    width: 100%;
    height: 6px;
    background: #a14277;
    cursor: pointer;
}
#timeLine{
    width: 0%;
    height: 6px;
    overflow: visible !important;
    position: relative;
    background: #fff;
}

#timeLine:after {
	width: 12px;
	height: 12px;
	background-color: #fff;
	position: absolute;
	display: block;
	right: -12px;
	top: -3px;
	content: '';
}
#tracerLine{
    position: relative; 
    top:-4px;
    width: 100%;
    height: 6px;
    background-color: #fff;
    opacity:0;
}
#volumeInd{
	display: none;
    position: relative;
    top: 4px;
    left: 13px; 
    float: left;
    width: 15px;
    height: 7px;
    cursor: pointer;
}

.controls {
	/*position: absolute;*/
	position: relative;
	width: 220px;
	height: 28px;
	display: block;
}


.controls a {
	width: 28px;
	height: 28px;
	display: block;
	float: left;
	position: relative;
}

.controls a {
}

.controls a span {
	position: relative;
	background: url(../images/playersprite.png) 0 bottom no-repeat;
	width: 28px;
	height: 28px;
	padding: 0;
	display: block;
}

.controls a:hover {
}

.controls #prevSound:hover span {
	background-position: 0 0;
}

.controls #playSound {
	width: 28px;
	margin-left: 1px;
}

.controls #playSound span {
	width: 28px;
	background-position: right bottom;
	
}

.controls #playSound.stoped span {
	background-position: -29px bottom;
}

.controls #playSound.stoped:hover span {
	background-position: -29px 0;
}

.controls #playSound:hover span {
	background-position: right 0;
}

.controls #nextSound  {
	margin-left: 1px;
}

.controls #nextSound span {
	background-position: -58px bottom;
}

.controls #nextSound:hover span {
	background-position: -58px 0;
}


.controls a+a {
	margin-left: 1px;
}