.tracks {
  display: none;
}

.play {
  display: block;
  background: transparent url("images/pm_play_pause.png") top left no-repeat;
  width: 46px;
  height: 46px;
  position: absolute;
  left: 25px;
  top: 5px;
}
.play:hover {
  background-position: bottom left;
}

.pause {
  display: none;
  background: transparent url("images/pm_play_pause.png") top right no-repeat;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 5px;
  left: 25px;
}
.pause:hover {
  background-position: bottom right;
}

.prev {
  display: block;
  background: transparent url("images/pm_previous_next.png") top left no-repeat;
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0px;
  top: 17px;
}
.prev:hover {
  background-position: bottom left;
}
.next {
  display: block;
  background: transparent url("images/pm_previous_next.png") top right no-repeat;
  width: 21px;
  height: 21px;
  position: absolute;
  right: 2px;
  top: 17px;
}
.next:hover {
  background-position: bottom right;
}

.playing .play {
  display: none; }
.playing .pause {
  display: block; }


#page_player {
  background: black url("images/bg.png") center center no-repeat;
  width: 400px;
  height: 138px;
  position: absolute;
  top: 0;
  left: 0;
}
#page_player #inner {
  position: absolute;
  left: 15px;
  top: 65px;
}
#now_playing {
  font-family: "Michroma", "Arial";
  margin-bottom: 5px;
}

#page_player .title {
  font-weight: bold;
}

#page_player a {
  /*display: inline-block;*/
  cursor: pointer;
}

#page_player #controls {
  width: 98px;
  float: left;
  height: 50px;
}
#page_player #now_playing_info {
  width: 187px;
  height: 75px;
  overflow: hidden;
  left: 115px;
  position: absolute;
}