.audiojs {
    margin: 0 0 20px;
}

.audiojs audio {
	position: absolute;
    left: -1px;
}

.audiojs {
    width: 100%;
    height: 31px;
    background: #404040;
    overflow: hidden;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #444), color-stop(0.5, #555), color-stop(0.51, #444), color-stop(1, #444));
    background-image: -moz-linear-gradient(center top, #444 0%, #555 50%, #444 51%, #444 100%);
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -khtml-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-box-shadow: 0px 2px 2px #DDDDDD;
    -moz-box-shadow: 0px 2px 2px #DDDDDD;
    box-shadow: 0px 2px 2px #DDDDDD;
}

.audiojs .play-pause {
    width: 25px;
    height: 24px;
    padding: 2px 6px;
    margin: 0px;
    float: left;
    overflow: hidden;
}

.audiojs p {
    display: none;
    width: 25px;
    height: 20px;
    margin: 0px;
    cursor: pointer;
}

.audiojs .play {
    display: block;
}

.audiojs .scrubber {
    position: relative;
    float: left;
    width: 75%;
    background: #5a5a5a;
    height: 14px;
    margin: 8px 10px 0;
    border-top: 1px solid #3f3f3f;
    border-left: 0px;
    border-bottom: 0px;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {

.audiojs .scrubber {width: 65%;}

}

@media screen and (max-width: 768px) {

.audiojs .scrubber {width: 55%;}

}

@media screen and (max-width: 640px) {

.audiojs .scrubber {width: 50%;}

}

@media screen and (max-width: 480px) {

.audiojs .scrubber {width: 40%;}

}

@media screen and (max-width: 320px) {

.audiojs .scrubber {width: 25%;}

}

.audiojs .progress {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 14px;
    width: 0px;
    background: #ccc;
    z-index: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(0.5, #ddd), color-stop(0.51, #ccc), color-stop(1, #ccc));
    background-image: -moz-linear-gradient(center top, #ccc 0%, #ddd 50%, #ccc 51%, #ccc 100%);
}

.audiojs .loaded {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 14px;
    width: 0px;
    background: #000;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222), color-stop(0.5, #333), color-stop(0.51, #222), color-stop(1, #222));
    background-image: -moz-linear-gradient(center top, #222 0%, #333 50%, #222 51%, #222 100%);
}

.audiojs .time {
    float: right;
    height: 20px;
    line-height: 20px;
    margin: 6px 0px 0px 6px;
    padding: 0px 12px 0px 12px;
    color: #ddd;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

.audiojs .time em {
    padding: 0px 2px 0px 0px;
    color: #f9f9f9;
    font-style: normal;
}

.audiojs .time strong {
    padding: 0px 0px 0px 2px;
    font-weight: normal;
}

.audiojs .error-message {
    float: left;
    display: none;
    margin: 6px 10px 0;
    height: 20px;
    overflow: hidden;
    line-height: 20px;
    white-space: nowrap;
    color: #fff;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -icab-text-overflow: ellipsis;
    -khtml-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
}

.audiojs .error-message a {
    color: #eee;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #999;
    white-space: wrap;
}

.audiojs .play {
    background: url("player.gif") -2px -1px no-repeat;
}

.audiojs .loading {
    background: url("player.gif") -2px -31px no-repeat;
}

.audiojs .error {
    background: url("player.gif") -2px -61px no-repeat;
}

.audiojs .pause {
    background: url("player.gif") -2px -91px no-repeat;
}

.playing .play, .playing .loading, .playing .error {
    display: none;
}

.playing .pause {
    display: block;
}

.loading .play, .loading .pause, .loading .error {
    display: none;
}

.loading .loading {
    display: block;
}

.error .time, .error .play, .error .pause, .error .scrubber, .error .loading {
    display: none;
}

.error .error {
    display: block;
}

.error .play-pause p {
    cursor: auto;
}

.error .error-message {
    display: block;
}

div#audio_list {
    margin-bottom: 15px;
    overflow: auto
}

div#audio_list a {
    color: #888;
    text-decoration: none;
}

div#audio_list ol {
    padding: 0px;
    margin: 0px;
    list-style: decimal-leading-zero inside;
    color: #ccc;
    border-top: 1px solid #ccc;
    font-size: 0.9em;
}

div#audio_list ol li {
    position: relative;
    margin: 0px;
    padding: 5px 2px 6px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

div#audio_list ol li a {
    text-indent: -3.3ex;
}

div#audio_list li.playing {
    color: #aaa;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3);
}

div#audio_list li.playing a {
    color: #000;
}