.audiojs audio {
 position: absolute;
 left: -1px;
}
.audiojs {
 width: 100%;
 height: 50px;
 background: #fff;
 overflow: hidden;
 font-family: Open Sans;
 font-size: 12px;
 margin-top: 7px;
 border: 1px solid #e4e4e4;
}
.audiojs .play-pause {
 width: 25px;
 height: 40px;
 padding: 4px 6px;
 margin: 0px;
 float: left;
 overflow: hidden;
}
.audiojs p {
 display: none;
 width: 25px;
 height: 40px;
 margin: 7px 4px;
 cursor: pointer;
}
.audiojs .play {
 display: block;
}
.audiojs .scrubber {
 position: relative;
 float: left;
 width: 70%;
 background: #e4e4e4;
 height: 25px;
 margin: 12px;
 border-left: 0px;
 border-bottom: 0px;
 overflow: hidden;
 top: 1px;
}
.audiojs .progress {
 position: absolute;
 top: 0;
 left: 0;
 height: 25px;
 width: 0px;
 background: #4c77a4;
 z-index: 1;
}
.audiojs .loaded {
 position: absolute;
 top: 0px;
 left: 0px;
 height: 25px;
 background: #d8d8d8;
}
.audiojs .time {
 float: left;
 height: 36px;
 line-height: 36px;
 padding: 0px 6px 0px 12px;
 color: #656565;
 top: 14px;
 margin-top: 8px;
 margin-left: 0;
}
.audiojs .time em {
 padding: 0px 2px 0px 0px;
 color: #656565;
 font-style: normal;
}
.audiojs .time strong {
 padding: 0px 0px 0px 2px;
 font-weight: normal;
}
.audiojs .error-message {
 float: left;
 display: none;
 margin: 0px 10px;
 height: 36px;
 width: 400px;
 overflow: hidden;
 line-height: 36px;
 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("menu.png") 6px 4px no-repeat;
}
.audiojs .loading {
 background: url("menu.png") -2px -31px no-repeat;
}
.audiojs .error {
 background: url("menu.png") -2px -61px no-repeat;
}
.audiojs .pause {
 background: url("menu.png") 7px -34px 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;
}
