html, body {
    margin: 0;
    padding: 0;
}
.audiojs audio {
    left: -1px;
    position: absolute;
}
.audiojs-centered {
    float: left;
    left: 50%;
    position: relative;
}
.audiojs-centered .audiojs {
    float: left;
    left: -50%;
    position: relative;
}
.audiojs {
    background-color: #222222;
    border-color: #111111;
    border-style: solid;
    border-width: 0 1px 1px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-family: arial;
    font-size: 12px;
    height: 26px;
    overflow: hidden;
    width: 498px;
}
.audiojs .play-pause {
    border-right: 1px solid #555555;
    float: left;
    height: 26px;
    margin: 0;
    overflow: hidden;
    padding: 0 0 0 2px;
    width: 27px;
}
.audiojs p {
    border: medium none !important;
    cursor: pointer;
    display: none;
    height: 40px;
    margin: 0 !important;
    padding: 0 !important;
    width: 25px;
}
.audiojs .play {
    display: block;
}
.audiojs .scrubber {
    background: none repeat scroll 0 0 #444444;
    float: left;
    height: 10px;
    margin: 8px 10px;
    overflow: hidden;
    position: relative;
    width: 345px;
}
.audiojs .progress {
    background-color: #CCCCCC;
    height: 14px;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 1;
}
.audiojs .loaded {
    background-color: #666666;
    height: 14px;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
}
.audiojs .time {
    border-left: 1px solid #555555;
    color: #AAAAAA;
    float: left;
    height: 26px;
    line-height: 27px;
    padding: 0 6px 0 13px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.audiojs .time em {
    color: #DDDDDD;
    font-style: normal;
    padding: 0 2px 0 0;
}
.audiojs .time strong {
    font-weight: normal;
    padding: 0 0 0 2px;
}
.audiojs .error-message {
    color: #FFFFFF;
    display: none;
    float: left;
    height: 28px;
    line-height: 28px;
    margin: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 400px;
}
.audiojs .error-message a {
    color: #CCDDFF;
    padding-bottom: 1px;
}
.audiojs .play {
    background: url("glyphicons-halflings-white.png") no-repeat scroll -258px -67px transparent;
}
.audiojs .loading {
    background: url("glyphicons-halflings-white.png") no-repeat scroll -210px -18px transparent;
}
.audiojs .error {
    background: url("glyphicons-halflings-white.png") no-repeat scroll -306px 6px transparent;
}
.audiojs .pause {
    background: url("glyphicons-halflings-white.png") no-repeat scroll -282px -67px transparent;
}
.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;
}
