/*
 * Solo Audio Player skin
 */
.solo_player div.jp-audio,
.solo_player div.jp-video {
    font-size: 1.25em;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.6;
    color: #666;
    background-color: transparent;
    position: relative;
    border: 0 solid #FFF;
    margin: 2px 1px 1px 1px;
    padding: 1px;
    box-shadow: 0 0 0 rgba(0, 0, 0, .5);
}

.solo_player div.jp-audio {
    width: 100%;
    margin: 0 auto;
}

.solo_player div.jp-video-270p {
    width: 100%;
}

.solo_player div.jp-video-360p {
    width: 100%;
}

.solo_player div.jp-video-full {
    /* Rules for IE6 (full-screen) */
    width: 100%;
    height: 270px;
    /* Rules for IE7 (full-screen) - Otherwise the relative container causes other page items that are not position:static (default) to appear over the video/gui. */
    position: static !important;
}

.solo_player div.jp-video-full div.jp-jplayer {
    top: 0;
    left: 0;
    position: fixed !important;
    overflow: hidden;
    z-index: 1000;
}

.solo_player div.jp-video-full div.jp-gui {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.solo_player div.jp-video-full div.jp-interface {
    position: absolute !important;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.solo_player div.jp-interface {
    position: relative;
    background: #333;
    background: -moz-linear-gradient(#666, #333);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));
    background: -webkit-linear-gradient(#666, #333);
    background: -o-linear-gradient(#666, #333);
    background: -ms-linear-gradient(#666, #333);
    background: linear-gradient(#666, #333);
    width: 99%;
    border: 1px solid #000;
    border-radius: 4px;
}

.solo_player div.jp-audio div.jp-type-single div.jp-interface {
    width: 100%;
    height: auto;
}

.solo_player div.jp-audio div.jp-type-playlist div.jp-interface {
    width: 100%;
    height: auto;
}

.solo_player div.jp-video div.jp-interface {
    border-top: 1px solid #CCC;
}

/* @group CONTROLS */

.solo_player div.jp-controls-holder {
    clear: both;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    top: -8px; /* This negative value depends on the size of the text in jp-currentTime and jp-duration */
}

.solo_player div.jp-interface ul.jp-controls {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.solo_player div.jp-audio ul.jp-controls {
    width: 100%;
    padding: 25px 20px 0 20px;
}

.solo_player div.jp-video div.jp-type-single ul.jp-controls {
    width: 78px;
    margin-left: 200px;
}

.solo_player div.jp-video div.jp-type-playlist ul.jp-controls {
    width: 134px;
    margin-left: 172px;
}

.solo_player div.jp-video ul.jp-controls,
.solo_player div.jp-interface ul.jp-controls li {
    display: inline;
    float: left;
}

.solo_player div.jp-interface ul.jp-controls a {
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.solo_player a.jp-play,
.solo_player a.jp-pause {
    width: 40px;
    height: 40px;
}

.solo_player a.jp-play {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 0 no-repeat;
}

.solo_player a.jp-play:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -41px 0 no-repeat;
}

.solo_player a.jp-pause {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -42px no-repeat;
    display: none;
}

.solo_player a.jp-pause:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -41px -42px no-repeat;
}

.solo_player a.jp-stop,
.solo_player a.jp-previous,
.solo_player a.jp-next {
    width: 28px;
    height: 28px;
    margin-top: 6px;
}

.solo_player a.jp-stop {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -83px no-repeat;
    margin-left: 10px;
}

.solo_player a.jp-stop:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -29px -83px no-repeat;
}

.solo_player a.jp-previous {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -112px no-repeat;
}

.solo_player a.jp-previous:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -29px -112px no-repeat;
}

.solo_player a.jp-next {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -141px no-repeat;
}

.solo_player a.jp-next:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -29px -141px no-repeat;
}

/* @end */

/* @group progress bar */

.solo_player div.jp-seek-holder {
    width: 100%;
    height: 20px;
}

.solo_player div.jp-progress {
    overflow: hidden;
    background-color: #000;
    border: 0 solid #FFF;
    border-radius: 8px;
}

.solo_player div.jp-audio div.jp-progress {
    margin: 5px auto 0;
    top: 5px;
    height: 15px;
}

.solo_player div.jp-audio div.jp-type-single div.jp-progress {
    width: 80%;
}

.solo_player div.jp-audio div.jp-type-playlist div.jp-progress {
    width: 95%;
}

.solo_player div.jp-video div.jp-progress {
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
}

.solo_player div.jp-seek-bar {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -202px repeat-x;
    width: 60%;
    height: 15px;
    cursor: pointer;
}

.solo_player div.jp-play-bar {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -218px repeat-x;
    width: 60%;
    height: 100%;
}

/* The seeking class is added/removed inside jPlayer */
.solo_player div.jp-seeking-bg {
    background: url("http://www.spied.me/image/img/module/jrAudio/jplayer.blue.monday.seeking.gif");
}

/* @end */

/* @group volume controls */

.solo_player a.jp-mute,
.solo_player a.jp-unmute,
.solo_player a.jp-volume-max {
    width: 18px;
    height: 15px;
    margin-top: 10px;
}

.solo_player div.jp-audio div.jp-type-single a.jp-mute,
.solo_player div.jp-audio div.jp-type-single a.jp-unmute {
    margin-left: 210px;
}

.solo_player div.jp-audio div.jp-type-playlist a.jp-mute,
.solo_player div.jp-audio div.jp-type-playlist a.jp-unmute {
    margin-left: 10px;
}

.solo_player div.jp-audio a.jp-volume-max {
    margin-left: 95px;
}

.solo_player div.jp-video a.jp-mute,
.solo_player div.jp-video a.jp-unmute,
.solo_player div.jp-video a.jp-volume-max {
    position: absolute;
    top: 12px;
    margin-top: 0;
}

.solo_player div.jp-video a.jp-mute,
.solo_player div.jp-video a.jp-unmute {
    left: 50px;
}

.solo_player div.jp-video a.jp-volume-max {
    left: 135px;
}

.solo_player a.jp-mute {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -170px no-repeat;
}

.solo_player a.jp-mute:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -19px -170px no-repeat;
}

.solo_player a.jp-unmute {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -60px -170px no-repeat;
    display: none;
}

.solo_player a.jp-unmute:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -79px -170px no-repeat;
}

.solo_player a.jp-volume-max {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -186px no-repeat;
}

.solo_player a.jp-volume-max:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -19px -186px no-repeat;
}

.solo_player div.jp-volume-bar {
    position: absolute;
    overflow: hidden;
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -250px repeat-x;
    width: 80px;
    height: 5px;
    cursor: pointer;
}

.solo_player div.jp-audio div.jp-volume-bar {
    top: 40px;
    left: 185px;
}

.solo_player div.jp-video div.jp-volume-bar {
    top: 17px;
    left: 72px;
}

.solo_player div.jp-volume-bar-value {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -256px repeat-x;
    width: 0;
    height: 5px;
}

/* @end */

/* @group current time and duration */

.solo_player div.jp-audio div.jp-time-holder {
    position: absolute;
    top: 50px;
}

.solo_player div.jp-audio div.jp-type-single div.jp-time-holder {
    left: 110px;
    width: 186px;
}

.solo_player div.jp-audio div.jp-type-playlist div.jp-time-holder {
    left: 166px;
    width: 130px;
}

.solo_player div.jp-current-time,
.solo_player div.jp-duration {
    width: 60px;
    font-size: .54em;
    font-style: oblique;
    color: #FFF;
}

.solo_player div.jp-current-time {
    float: left;
    padding: 0;
    margin-left: 15px;
    color: #FFF;
}

.solo_player div.jp-duration {
    float: right;
    text-align: right;
    padding: 0;
    margin-right: 15px;
}

.solo_player div.jp-video div.jp-current-time {
    margin-left: 20px;
}

div.jp-video div.jp-duration {
    margin-right: 20px;
}

/* @end */

/* @group playlist */

.solo_player div.jp-title {
    font-weight: bold;
    text-align: center;
}

.solo_player div.jp-title,
.solo_player div.jp-playlist {
    margin-top: 10px;
    width: 99%;
    height: auto;
    overflow-y: auto;
    background-color: transparent;
    border-top: 0 solid #000;
}

.solo_player div.jp-type-single div.jp-title,
.solo_player div.jp-type-playlist div.jp-title,
.solo_player div.jp-type-single div.jp-playlist {
    border-top: none;
}

.solo_player div.jp-title ul,
.solo_player div.jp-playlist ul {
    list-style-type: none;
    margin: 0;
    padding: 0 20px;
    font-size: .72em;
}

.solo_player div.jp-title li {
    padding: 5px 0;
    font-weight: bold;
}

.solo_player div.jp-playlist li {
    padding: 5px 0 4px 20px;
    border-bottom: 1px solid #606060;
}

.solo_player div.jp-playlist li div {
    display: inline;
}

/* Note that the first-child (IE6) and last-child (IE6/7/8) selectors do not work on IE */

.solo_player div.jp-type-playlist div.jp-playlist li:last-child {
    padding: 5px 0 5px 20px;
    border-bottom: none;
}

.solo_player div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
    list-style-type: square;
    list-style-position: inside;
    color: #FFF;
    padding-left: 7px;
}

.solo_player div.jp-type-playlist div.jp-playlist a {
    color: #FFF;
    text-decoration: none;
}

.solo_player div.jp-type-playlist div.jp-playlist a:hover {
    color: #D61D1E;
}

.solo_player div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
    color: #D61D1E;
}

.solo_player div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
    float: right;
    display: inline;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
    color: #FFF;
}

.solo_player div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove:hover {
    color: #606060;
}

.solo_player div.jp-type-playlist div.jp-playlist span.jp-free-media {
    float: right;
    display: inline;
    text-align: right;
    margin-right: 10px;
}

.solo_player div.jp-type-playlist div.jp-playlist span.jp-free-media a {
    color: #FFF;
}

.solo_player div.jp-type-playlist div.jp-playlist span.jp-free-media a:hover {
    color: #606060;
}

.solo_player span.jp-artist {
    font-size: .8em;
    color: #FFF;
}

/* @end */

.solo_player div.jp-video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0); /* Makes IE9 work with the active area over the whole video area. IE6/7/8 only have the button as active area. */
}

.solo_player div.jp-video-270p div.jp-video-play {
    height: 270px;
}

.solo_player div.jp-video-360p div.jp-video-play {
    height: 360px;
}

.solo_player div.jp-video-full div.jp-video-play {
    height: 100%;
    z-index: 1000;
}

.solo_player div.jp-video-play:hover a.jp-video-play-icon {
}

.solo_player div.jp-jplayer audio,
.solo_player div.jp-jplayer {
    width: 0;
    height: 0;
}

.solo_player div.jp-jplayer {
    background-color: #000;
}

/* @group TOGGLES */

/* The audio toggles are nested inside jp-time-holder */

.solo_player ul.jp-toggles {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}

.solo_player div.jp-audio .jp-type-single ul.jp-toggles {
    width: 25px;
}

.solo_player div.jp-audio .jp-type-playlist ul.jp-toggles {
    width: 55px;
    margin: 0;
    position: absolute;
    left: 310px;
    top: 35px;
}

.solo_player div.jp-video ul.jp-toggles {
    margin-top: 10px;
    width: 100px;
}

.solo_player ul.jp-toggles li {
    display: block;
    float: right;
}

.solo_player ul.jp-toggles li a {
    display: block;
    width: 25px;
    height: 18px;
    text-indent: -9999px;
    line-height: 100%; /* need this for IE6 */
}

.solo_player a.jp-full-screen {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -310px no-repeat;
    margin-left: 20px;
}

.solo_player a.jp-full-screen:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -30px -310px no-repeat;
}

.solo_player a.jp-restore-screen {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -60px -310px no-repeat;
    margin-left: 20px;
}

.solo_player a.jp-restore-screen:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -90px -310px no-repeat;
}

.solo_player a.jp-repeat {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -291px no-repeat;
}

.solo_player a.jp-repeat:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -30px -291px no-repeat;
}

.solo_player a.jp-repeat-off {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -60px -291px no-repeat;
}

.solo_player a.jp-repeat-off:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -90px -291px no-repeat;
}

.solo_player a.jp-shuffle {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") 0 -271px no-repeat;
    margin-left: 5px;
}

.solo_player a.jp-shuffle:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -30px -271px no-repeat;
}

.solo_player a.jp-shuffle-off {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -60px -271px no-repeat;
    margin-left: 5px;
}

.solo_player a.jp-shuffle-off:hover {
    background: url("http://www.spied.me/image/img/module/jrAudio/jr_player_solo.png") -90px -271px no-repeat;
}

/* @end */

/* @group NO SOLUTION error feedback */

.solo_player .jp-no-solution {
    position: absolute;
    width: 390px;
    margin-left: -202px;
    left: 50%;
    top: 10px;

    padding: 5px;
    font-size: .8em;
    background-color: transparent;
    border: 0 solid #CCC;
    color: #FFF;
    display: none;
}

.solo_player .jp-no-solution a {
    color: #FFF;
}

.solo_player .jp-no-solution span {
    font-size: 1em;
    display: block;
    text-align: center;
    font-weight: bold;
}

/* @end */
