/*
    AUTHOR: Sam Johnson
    MINIMusic Player 
*/
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #000000;
}

/* HTML5 Audio player with playlist styles */
.example, .example2 {
    margin: 5px auto 0;
    width: 390px;
}

.player {
    background: #transparent;
    height: 220px;
    position: relative;
    width: 100%;
    z-index: 2;
}
.title, .artist {
    font-family: verdana;
    left: 267px;
    position: absolute;

    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.title {
    color: #000000;
    font-size: 11px;
	font-weight: bold;
    top: 200px;
	left: 20px;

}
.artist {
    color: #000000;
    font-size: 22px;
    top: 68px;
	left: 25px;
}
.pl {
    background: url(../images/playlist.png) no-repeat;
    cursor: pointer;
    height: 45px;
    left: 347px;
    position: absolute;
    top: 200px;
    width: 45px;
}
.pl:hover {
    top: 200px;
}
.cover {
    border-radius: 0px 0px 0px 0x;
    height: 1px;
    left: 1px;
    position: absolute;
    top: 1px;
    width: 1px;
}
.controls {
    cursor: pointer;
    left: 0px;
    position: absolute;
    top: 106px;
    left: 184px;
}
.controls .play, .controls .pause {
    width: 45px;
    height: 110px;
    margin: 0 0px 0px 0px;
}
.controls .play, .controls .pause, .controls .rew, .controls .fwd, .controls .stop {
   text-indent: -10000px;
    border: none;
    float: left;
}
.controls .rew, .controls .fwd, .controls .stop {
    width: 45px;
    height: 45px;
    margin: 0px 0px 0px 0px;
}
.controls .play {
    background: url(../images/play.png) no-repeat;
}
.controls .pause {
    background: url(../images/pause.png) no-repeat;
    display: none;
}
.controls .rew {
    background: url(../images/rewind.png) no-repeat;
}
.controls .fwd {
    background: url(../images/next.png) no-repeat;
}
.controls .stop {
    background: url(../images/stop.png) no-repeat;
}
.hidden {
    display: none;
}
.controls .visible {
    display: block;
}
.volume {
    height: 11px;
    left: 12px;
    position: absolute;
    top: 127px;
    width: 150px;
}
.mute  .volume-btn {
    background: url(../images/volume-off.png) no-repeat;
}
.volume-btn {
    background: url(../images/volume-up.png) no-repeat;
    height: 20px;
    width: 20px;
    float: left;
    position: relative;
    top: -9px;
}
.volume-adjust {
    height: 2px;
    position: relative;
    width: 80%;
    background: #666666;
    float: right;
}
.volume-adjust  > div > div {
    height: 2px;
    background: #000000;
}
.progressbar
{
    background-color: #666666;
    cursor: pointer;
    z-index: 1;
    right: 6.875em; /* 110 */
     height: 3px;
    left: 0px;
    position: absolute;
    width: 90%;
    top: 193px;
    margin: 0px 5%;
}
.novolume .progressbar
{
    right: 4.375em; /* 70 */
}
.progressbar div
{
    width: 0%;
    height: 3px;
    position: absolute;
    left: 0;
    top: 0;
}
.bar-loaded
{
    background-color: #666666;
    z-index: 1;
}
.bar-played
{
    background: #000000;
    z-index: 2;
}
.timeHolder {
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    bottom: 29px;
    position: absolute;
    margin: 0px 5%;
    width: 90%;
}
.time-current, .time-duration, .time-separator {
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    float: right;
}
.volume .ui-slider-handle {
    background: url("../images/spr.png") no-repeat scroll -201px -188px rgba(0, 0, 0, 0);
    height: 13px;
    width: 13px;
}
.playlist {
    background-color: #transparent;
    list-style-type: none;
    margin: -10px 0 0 2px;
    padding-bottom: 10px;
    padding-top: 25px;
    position: relative;
    width: 100%;
    z-index: 1;
    margin: 0px auto;
}
.playlist li {
    color: #000000;
    cursor: pointer;
    margin: 0 0 5px 15px;
}
.playlist li > a {
   color: #000000;
   text-decoration: none; 
}
.playlist li.active {
    font-weight: bold;
}