/*------audioPlayer-------*/
.music {
	overflow: hidden;
}

#audioPlayer{
	border: 4px solid #ce1d00;
    display: block;
    padding: 10px 10px 11px 0;
    position: relative;
    overflow: hidden;

}


#audioPlayer .title {

	min-width: 241px;
	float: right;
	z-index: 20;
	position: relative;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	padding: 11px 10px 15px ;
	letter-spacing: 1px;
	background-color: #ce1d00;
	font: bold  15px/26px 'Open Sans', sans-serif;
}
#progressBar{
    display: block;
    float: left;
    width: 419px;
    height: 14px;
    margin-left: 33px;
    padding-top: 22px;
}
#timeBar{
    float: left;
    width: 100%;
    height: 6px;
    background: #242424;
    cursor: pointer;
}
#timeLine{
    width: 0%;
    height: 6px;
    overflow: visible !important;
    position: relative;
    background: #ce1d00;
}

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

.controls {
	float: left;
	padding-top: 0px;
	padding-left: 33px;

}


.controls a {

	display: block;
	float: left;
	position: relative;
	border: 4px solid #ce1d00;
	width: 44px;
	height: 44px;
	text-align: center;
	background-color: #ce1d00;
}

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


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

.controls a:hover {
	background-color: transparent;
}

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



.controls #playSound span {
	width: 6px;
	background-position: -26px bottom;
	
}

.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 span {
	background-position: right bottom;
}

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


