ul.playlist {
  width: 650px;
  padding: 10px;
  font-family: 'Helvetica', 'Arial', 'Verdana', sans-serif;
  font-size: 16px;
  font---weight: bold;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #222;
}

ul.playlist li {
  list-style: none;
}

div.track span {
  vertical-align: bottom;
}

span.controls {
  display: inline-block;
  width: 30px;
  height: 26px;
  background: url('images/play.png') no-repeat 0;
  vertical-align: center;
  cursor: pointer;
}

span.controls:hover {
  background-image: url('images/playing.png');
}

span.playing {
  background-image: url('images/stop.png') !important;
}

span.playing:hover {
  background-image: url('images/stoped.png') !important;
}

span.title {
  display: inline-block;
  color: #F7B654;
  width: 570px;
}

span.minus {
  display: none;
  width: 5px;
  color: #F7B654;
}

span#timeleft {
  display: inline-block;
  width: 30px;
  color: #F7B654;
}

div.progressBar {
  width: 80%;
  margin: 5px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background: #eee;
  cursor: pointer;
}

div.progress {
  width: 0%;
  height: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: #22ccff;
}