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

.audiojs {
    width: 390px;
    height: 31px;
    background: #222;
    overflow: hidden;
    padding: 5px 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -khtml-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #8a8a8a;
}

.audiojs .ap-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 .ap-play {
    display: block;
}

.audiojs .ap-scrubber {
    position: relative;
    float: left;
    width: 250px;
    background: #5a5a5a;
    height: 15px;
    margin-top: 8px;
    border: 0;
    overflow: hidden;
    cursor: pointer;
}

.audiojs .ap-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 0;
    background: #FBD606;
    z-index: 1;
    cursor: pointer;
}

.audiojs .ap-loaded {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 0;
    background: #666;
    cursor: pointer;
}

.audiojs .ap-time {
    float: right;
    width: 75px;
    height: 20px;
    line-height: 20px;
    margin: 5px 0;
    padding: 0 12px 0;
    color: #ddd;
    cursor: default;
    font-size: 0.9em;
}

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

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

.audiojs .ap-error-message {
    float: left;
    display: none;
    margin: 6px 10px 0;
    height: 20px;
    width: 70%;
    max-width: 400px;
    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 .ap-error-message a {
    color: #eee;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #999;
    white-space: nowrap;
}

.audiojs .ap-play {
    background: url("../image/audioplayer.gif") -2px -1px no-repeat;
}

.audiojs .ap-loading {
    background: url("../image/audioplayer.gif") -2px -31px no-repeat;
}

.audiojs .ap-error {
    background: url("../image/audioplayer.gif") -2px -61px no-repeat;
}

.audiojs .ap-pause {
    background: url("../image/audioplayer.gif") -2px -91px no-repeat;
}

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

.ap-playing .ap-pause {
    display: block;
}

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

.ap-loading .ap-loading {
    display: block;
}

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

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

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

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

#audioplayer {
    margin: 15px 0 0;
    overflow: auto;
}

#audioplayer ol {
    list-style: square inside;
    color: #ccc;
    width: 100%;
    max-width: 390px;
    font-size: 0.9em;
    text-align: left;
    background: #646464;
    padding: 0 0 10px;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -khtml-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    margin-bottom: 5px;
}

#audioplayer ol li {
    position: relative;
    margin: 0 15px;
    padding: 7px 2px;
    border-bottom: 1px solid #8a8a8a;
    cursor: pointer;
}

#audioplayer ol li a {
    text-indent: -3.3ex;
    text-decoration: none;
    color: #fff;
}

#audioplayer li a:hover {
    color: #FBD606;
    text-decoration: none;
}

#audioplayer li.ap-playing a {
    color: #FBD606;
}