@charset "utf-8";
/* CSS Document */

.anxSoundPlayer {
  position:relative;
  background:url(img/player/bg_player.png) no-repeat;
  width:320px;
  height:40px;
  color: rgb(0, 0, 0);
  font-size:9px;
  overflow:hidden;
  
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-text-size-adjust: 100%;
  
  line-height: 1em;
}

/* btnPlay */
.anxSoundPlayer .btnPlay, .anxSoundPlayer .btnPause {
  width:30px;
  height:31px;
  overflow:hidden;
  cursor:pointer;
  
  position:absolute;
  left:11px;
  top:4px;
}
.anxSoundPlayer .btnPlay {
  background:url(img/player/btn_play.png);
}
.anxSoundPlayer .btnPlay:hover {
  background:url(img/player/btn_play_r.png);
}

/* btnPause */
.anxSoundPlayer .btnPause {
  background:url(img/player/btn_pause.png)
}
.anxSoundPlayer .btnPause:hover {
  background:url(img/player/btn_pause_r.png);
}

/* seek */
.seekBase {
  background:url(img/player/seek_base.png);
  width:170px;
  height:4px;
  cursor:pointer;
  position:absolute;
  left: 65px;
  top: 25px;
}
.seekProgress {
  background:url(img/player/seek_prog.png);
  width:170px;
  height:4px;
}

/* volume */
.volumeBase {
  background:url(img/player/sound_base.png);
  width:64px;
  height:9px;
  cursor:pointer;
  position:absolute;
  left: 244px;
  top: 20px;
}
.volumeProgress {
  background:url(img/player/sound_prog.png);
  width:64px;
  height:9px;
}

/* time */
.timeDisplay {
  position:absolute;
  right: 14px;
  top: 10px;
  width:60px;
  color:#000000;
}

/* title */
.titleDisplay {
  position:absolute;
  left: 65px;
  top: 10px;
  width: 170px;
  height:12px;
  line-height:12px;
  white-space:nowrap;
  overflow:hidden;
  color:#000000;
}
.titleDisplay span {
  display:inline-block;
  position:relative;
  white-space:nowrap;
  color:#000000;
}

/* do not Change */
.BrightcoveExperience {
  opacity:0;
  position:relative;
}