ul.playlist {
  width: 238px;
  padding-left: 21px;
  font-family: 'Helvetica', 'Arial', 'Verdana', sans-serif;
  font-size: 11px;
  color:#d3d3d3;
  
}

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

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

span.controls {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../images/player/play.png') no-repeat 0;
  vertical-align: bottom;
  cursor: pointer;
  margin-right:6px;
  margin-bottom:1px;
}

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

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

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

span.title {
  display: inline-block;
  width: 160px;
}

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

span#timeleft {
  display: inline-block;
  width: 20px;
  margin-left:3px;
}

div.progressBar {
  width: 100%;
  margin: 3px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: #000000;
  cursor: pointer;
  margin-top:12px;
}

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: #3366cc;
}