/*Colors Used In Player

Dark: #c6c4ca
Light: #dcebee
Highlight: #9abcc6*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body {
    font-family: arial;
    font-size: 13px;
    line-height: 1.5em;
    background: #474447;
    color: #cb6927;
    font-weight:bold;
    margin-top: 0px;
    margin-left: 0px;
}

.clearfix {
    clear: both;
}

#container {

    max-width: 320px;
    /*min-height: 400px;*/
    background: #dcebee;
    margin: auto;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: #c6c4ca solid 2px;
}

#audio-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    margin-bottom: 15px;
}

#audio-info {
    text-align: center;
    back
}

#audio-info .artist {
    font-weight: bold;
}

.cover {
    width: 100%;
    z-index: 1;
}

#progressBar {
    width: 80%;
    margin-left: 2%;
    margin-top: 5px;
    margin-bottom: 20px;
    height: 10px;
    background: url(../images/progress_bg.png) no-repeat;
    float: left;
}

#progress {
    background: url(../images/progress.png) no-repeat;
    height: 14px;
    display: inline-block;
}

#duration {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 0px 8px;
    background: #9a5700;
    color: #c6c4ca;
    font-weight: bold;
    border-radius: 5px;
}

#buttons {
    width: 90%;
    display: block;
    margin: 15px 30px 5px 30px;
    overflow: auto;
}

button#play {
    width: 70px;
    height: 40px;
    background: url(../images/play.png) no-repeat;
    float: left;
}

button#pause {
    width: 70px;
    height: 40px;
    background: url(../images/pause.png) no-repeat;
    float: left;
}

button#stop {
    width: 70px;
    height: 40px;
    background: url(../images/stop.png) no-repeat;
    float: left;
}

button#prev {
    width: 70px;
    height: 40px;
    background: url(../images/prev.png) no-repeat;
    float: left;
    margin-top: 15px;
}

button#next {
    width: 70px;
    height: 40px;
    background: url(../images/next.png) no-repeat;
    float: right;
    margin-top: 15px;
}

.input-group {
	margin: 0 5px 0 5px;
}

.input-group-addon {
    padding: 0px 8px;
    background: #9a5700;
    color: #c6c4ca;
    font-weight: bold;
    border-radius: 5px;
}

input#volume {
    padding: 0 3px 0 3px;
    -webkit-appearance: none !important;
    background: #9a5700;
    height: 5px;
    margin-top: 6px;
}

input#volume::-webkit-slider-thumb  {

    -webkit-appearance: none !important;
    background: url(../images/knob.png) no-repeat;
    height: 12px;
    width: 12px;
}

#playlist {
    list-style-type: decimal;
    list-style-position: inside;
    padding: 0 0 0 10px;
}

#playlist li {
    cursor: pointer;
    margin: 5px;
}

#playlist li.active {
    font-weight: bold;
    color: #9a5700;
}

#tracker {
    position: relative;
    width: 100%;
}

#credit {
    color: #dcebee;
    background: #c6c4ca;
    text-align: center;
    padding: 3px 0 3px 0;
}