@charset "UTF-8";

.mejs-controls .mejs-show-playlist button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -16px -16px;
}
.mejs-controls .mejs-hide-playlist button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -16px 0;
}
/* End: Show/Hide Playlist */

/* Start: Previous */
.mejs-controls .mejs-prevtrack button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: 0 -16px;
}
/* End: Previous */

/* Start: Next */
.mejs-controls .mejs-nexttrack button {
  background: transparent url(controls-playlist.png) no-repeat;
}
/* End: Next */

/* Start: Shuffle */
.mejs-controls .mejs-shuffle-on button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -32px 0;
}
.mejs-controls .mejs-shuffle-off button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -32px -16px;
}
/* End: Shuffle */

/*Start: Playlist*/
.mejs-playlist {
  position: relative;
  left: 0;
  height: 200px !important;
  overflow-y: auto;
  background-color:rgba(255,255,255,0.9);
  opacity: 0.9;filter: alpha(opacity=90);
}
.mejs-playlist ul {
list-style: none;
  margin: 0;
  padding: 5px;
}
.mejs-playlist li {
  color: #666;
  font-size: 12px;
  overflow: hidden;
  margin: 2px;
  cursor: pointer;
}
.mejs-playlist li:hover {
  color: #000
}
.mejs-playlist li.current {
  color: #000;
  font-weight: bold;
}
/*End: Playlist*/
