/*------audioPlayer-------*/
.music {
	overflow: hidden;
	background-color: #151515;

}

#audioPlayer{
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #151515;

}

#audioPlayer:after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 0;
	width: 0px;
	z-index: 1;
height: 0px;
border-style: solid;
border-width: 0px 0 63px 63px;
border-color: transparent transparent transparent #b5fc01;

}

#audioPlayer .title {
	min-width: 160px;
	z-index: 20;
	text-align: left;
	float: left;
	position: relative;
	text-transform: uppercase;
	color: #fff;
	padding: 18px 0 19px 59px;
	letter-spacing: 1px;
	background: url(../images/headphones.png) 17px 18px no-repeat;
	font:  16px/26px 'Open Sans', sans-serif;
}
#progressBar{
    display: block;
    float: left;
    width: 260px;
    height: 14px;
    padding-top: 29px;
}
#timeBar{
    float: left;
    width: 100%;
    height: 6px;
    background: #b5fc01;
    cursor: pointer;
}
#timeLine{
    width: 0%;
    height: 6px;
    overflow: visible !important;
    position: relative;
    background: #fff;
}

#timeLine:after {
	width: 12px;
	height: 12px;
	background-color: #b5fc01;
	position: absolute;
	display: block;
	right: -12px;
	top: -3px;
	content: '';
}
#tracerLine{
    position: relative; 
    top:-4px;
    width: 100%;
    height: 6px;
    background-color: #b5fc01;
    opacity:0;
}
#volumeInd{
	display: none;
    position: relative;
    top: 4px;
    left: 13px; 
    float: left;
    width: 15px;
    height: 7px;
    cursor: pointer;
}

.controls {
	position: absolute;
	right: 0;
	top: 0;
	width: 397px;
	padding-top: 26px;
	padding-left: 63px;
	bottom: 0;
	background-color: #151515;
}

.controls:after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 0;
	width: 0px;
	z-index: 1;
	height: 0px;
	border-style: solid;
	border-width: 0px 0 63px 63px;
	border-color: transparent transparent transparent #b5fc01;
}

.controls a {
	width: 12px;
	height: 11px;
	display: block;
	float: left;
	position: relative;
}

.controls a {
}

.controls a span {
	position: relative;
	background: url(../images/playersprite.png) 0 bottom no-repeat;
	width: 12px;
	height: 11px;
	padding: 0;
	display: block;
}

.controls a:hover {
}

.controls #prevSound:hover span {
	background-position: 0 0;
}

.controls #playSound {
	width: 6px;
	margin-left: 20px;
}

.controls #playSound span {
	width: 6px;
	background-position: -26px 0;
	
}

.controls #playSound.stoped span {
	background-position: -32px bottom;
}

.controls #playSound.stoped:hover span {
	background-position: -32px 0;
}

.controls #playSound:hover span {
	background-position: -26px 0;
}

.controls #nextSound  {
	margin-left: 17px;
}

.controls #nextSound span {
	background-position: right bottom;
}

.controls #nextSound:hover span {
	background-position: right 0;
}


.controls {
	float: right;
}


.controls a+a {
	margin-left: 1px;
}