@charset "utf-8";
/* CSS Document */
.anxSoundPlayer {
	position:relative;
	background:url(../img/player/bg_player.png) no-repeat;
	width: 330px;
	height: 21px;
	color: rgb(0, 0, 0);
	font-size:9px;
	
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-text-size-adjust: 100%;
	
	line-height: 1em;
}

/* btnPlay */
.anxSoundPlayer .btnPlay, .anxSoundPlayer .btnPause {
	width: 13px;
	height: 13px;
	overflow:hidden;
	cursor:pointer;
	
	position:absolute;
	left: 5px;
	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: 136px;
	height: 3px;
	cursor:pointer;
	position:absolute;
	left: 34px;
	top: 9px;
}

.seekProgress {
	background:url(../img/player/seek_prog.png);
	width: 136px;
	height:3px;
}


/* volume */
.volumeBase {
	background:url(../img/player/sound_base.png);
	width: 54px;
	height: 7px;
	cursor:pointer;
	position:absolute;
	left: 258px;
	top: 7px;
}

.volumeProgress {
	background:url(../img/player/sound_prog.png);
	width: 54px;
	height: 7px;
}

/* time */
.timeDisplay {
	position:absolute;
	left: 184px;
	top: 6px;
    
	width: 0;
	color: #FFF;
}

/* title */
.titleDisplay {
	position:absolute;
	left: 336px;
	top: 7px;
	width: 200px;
	height: 13px;
	line-height: 12px;
	white-space:nowrap;
	display: none;
}

.titleDisplay span {
	display:inline-block;
	position:relative;
	white-space:nowrap;
	color:#fc8f10;
}


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