body {
    font-size:1.5em;
}

#cpPlayerContainer {
    display: block;
    position: fixed;
    width: 100%;
    z-index:4;
    bottom:0;
    left:0;
}
#cpPlayerContainer > div {
    background: rgba(45, 45, 45, 0.5) none repeat scroll 0 0;
    border-radius: 15px 15px 0 0;
    padding:10px 10px 0px 10px;
}
.cp-Init,
.cp-Play,
.cp-Pause,
.cp-Stop  {
    float:left;
    cursor:pointer;
    background-image:url(/img/play5.png);
    background-position:center center;
    background-repeat:no-repeat;
    background-size:90% 90%;
    width:50px;
    height:50px;
}
.cp-Stop {
    background-image:url(/img/stop5.png);
}
.cp-Pause {
    background-image:url(/img/pause5.png);
}
.cp-Init {
    background-image:none;
}
.cp-Track {
    clear:both;
    padding-top:10px;
    position:relative;
}
.cp-Track span {
    float:left;
    display:inline-block;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.cp-Track span:nth-child(1) {
    top:0px;
    /* width:110px; */
    text-align:center;
    font-size:1.2em;
    color:#E2DFC0;
}
.cp-Track span i {
    font-family: Inconsolata;
    font-style:normal;    
}
.cp-Track span:nth-child(2) {
    top:0px;
    width:auto;
    margin-left:25px;
    font-style:italic;
    text-align:left;
    font-style:normal;
    font-size:1.2em;
    color:#E5C9A8;
}
.cp-Track span:nth-child(3) {
    clear:both;
    left:0px;
    width:auto;
    text-align:left;
    font-style:normal;
    font-size:1.0em;
    position:relative;
}
.cp-Controls {
    float:left;
    width:110px;
}
.cp-Progress {
    margin-top:12px;
    float:left;
    min-width:165px;
    position:relative;
    padding:2px;
    background: rgb(70,71,72); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(70,71,72,1) 0%, rgba(128,131,135,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(70,71,72,1) 0%,rgba(128,131,135,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(70,71,72,1) 0%,rgba(128,131,135,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#464748', endColorstr='#808387',GradientType=0 ); /* IE6-9 */
    border-radius:4px;
}
.cp-ProgressBar {
    background: rgb(129,133,137); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(129,133,137,1) 0%, rgba(70,71,72,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(129,133,137,1) 0%,rgba(70,71,72,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(129,133,137,1) 0%,rgba(70,71,72,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#818589', endColorstr='#464748',GradientType=0 ); /* IE6-9 */
    width:0;
    height:20px;
    border-radius:4px;
    float:left;
}
.cp-CurrentTime {
    font-family: Arial, Helvetica;
    font-size:0.8em;
    position:absolute;
    left:5px;
    top:25px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.cp-Duration {
    font-family: Arial, Helvetica;
    font-size:0.8em;
    position:absolute;
    right:5px;
    top:25px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
#cpPlayer {
    font-size:0.8em;
    opacity:0.9;
    padding:10px;
    width:auto;
    min-height:100px;
    background-color:black;
    color:white;
    border-radius:15px 15px 0 0;
    background: rgb(129,133,137); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(129,133,137,1) 0%, rgba(70,71,72,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(129,133,137,1) 0%,rgba(70,71,72,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(129,133,137,1) 0%,rgba(70,71,72,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#818589', endColorstr='#464748',GradientType=0 ); /* IE6-9 */
}
.cp-PlayContainer {
}
.cp-DisplayOff,
.cp-Display {
    cursor:pointer;
    width:100%;
    display:inline-block;
    height:25px;
    position:absolute;
    top:-12px;
    left:0px;
    background-image:url(/img/display2.png);
    background-position:center 10px;
    background-repeat:no-repeat;
    background-size:auto 20px;
}
.cp-DisplayOff {
    top:-13px;
    background-image:url(/img/display2-off.png);
    background-position:center 10px;
    background-size:auto 20px;
}
#cpPlayerContainer > div {
    width : 360px;
}
.cp-Progress {
    min-width : 205px;
}

@media (min-width: 320px) {
    #cpPlayerContainer > div {
        width : 300px;
    }

    .cp-Progress {
        min-width : 145px;
    }
}

@media (min-width: 360px) {
    #cpPlayerContainer > div {
        width : 340px;
    }

    .cp-Progress {
        min-width : 185px;
    }
}

@media (min-width: 480px) {

    #cpPlayerContainer > div {
        width : 460px;
    }

    .cp-Progress {
        min-width : 305px;
    }

}

@media (min-width: 598px) {

    #cpPlayerContainer > div {
        width : 558px;
    }

    .cp-Progress {
        min-width : 403px;
    }

}
@media (min-width: 720px) {

    #cpPlayerContainer > div {
        width : 598px;
    }

    .cp-Progress {
        min-width : 443px;
    }

}
.cp-ShowPlayer,
.cp-HidePlayer {
  -webkit-transition: all 0.5s ease-out;
     -moz-transition: all 0.5s ease-out;
          transition: all 0.5s ease-out;
}
.cp-ShowPlayer {
    height:1px;
}
.cp-HidePlayer {
    height:100px;
}
