/**
 * jplayer.css
 */

#music {
}
/* sprites */
.jp-controls a, .jp-seek-bar,
/*
.jp-play-bar,
*/
.jp-volume-bar, .jp-volume-bar-value {
    background-image: url(./images/jplayer.png);
    background-repeat: no-repeat;
}

.jp-jplayer, .jp-audio, .jp-audio div, .jp-audio ul, .jp-audio li {
    margin: 0;
    padding: 0;
    line-height: 1;
    list-style: none;
}

.jp-jplayer {
    width: 0;
    height: 0;
}

.jp-jplayer img {
	display: none;
}

.jp-audio {
    position: relative;
    height: 40px;
}

.jp-controls a {
    position: absolute;
    display: block;
    cursor: pointer;
}
.jp-play {
	left: 0;
	top: 0;
}
.jp-pause {
	left: 0;
    top: 0;
}
.jp-play strong,
.jp-pause strong {
	display: inline-block;
	color: #fff;
	font-weight: normal;
	background-color: #0d5ca1;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 2px 5px;
}
.jp-play strong:hover,
.jp-pause strong:hover {
	background-color: #197bd1;
}
li.stop {
	display: none!important;
}
.jp-stop {
	display: none;
}
.jp-unmute,
.jp-mute {
	top: 15px;
	width: 20px;
	height: 20px;
	overflow: hidden;
	text-indent: -9999px;
    background-color: transparent;
}

/*
    .jp-play { background-position: 0 0; left: 0; }
    .jp-play:hover { background-position: -20px 0; }
    .jp-pause { background-position: -40px 0; left: 0; }
    .jp-pause:hover { background-position: -60px 0; }

*/
    .jp-stop { background-position: -80px 0; left: 20px; }
    .jp-stop:hover { background-position: -100px 0; }
    
    .jp-unmute { background-position: -200px 0; right: 32px; }
    .jp-unmute:hover { background-position: -220px 0; }
    
    .jp-mute { background-position: -240px 0; right: 32px; }
    .jp-mute:hover { background-position: -260px 0; }

.jp-controls, .jp-controls li {
    display: inline;
}

.jp-audio .jp-progress {
    margin: 0px 58px 0px 0px;
    padding: 20px 0px 0px 0px;
    height: 10px;
}

    .jp-progress div {
        height: 10px;
    }

    .jp-seek-bar {
        background-color: #F4F4F4;
        background-position: 0 -20px;
    }
    .jp-progress:hover .jp-seek-bar {
        background-color: #E6E6E6;
        background-position: 0 -40px;
    }
    
    .jp-play-bar {
        background-color: #D1D1D1;
        background-position: 0 -30px;
    }
    .jp-progress:hover .jp-play-bar {
        background-color: #177BCD;
        background-position: 0 -50px;
    }

.jp-volume-bar {
    position: absolute;
    right: 6px;
    top: 18px;
    width: 22px;
    height: 10px;
    background-color: #F4F4F4;
    background-position: 0 -60px;
}
.jp-audio:hover .jp-volume-bar {
    background-color: #E6E6E6;
    background-position: -44px -60px;
}

    .jp-volume-bar-value {
        width: 22px;
        height: 10px;
        background-color: #BFBFC0;
        background-position: -22px -60px;
    }
    .jp-volume-bar:hover .jp-volume-bar-value {
        background-color: #177BCD;
        background-position: -66px -60px;
    }

.jp-current-time, .jp-duration {
    display: none;
}
