@charset "utf-8";
/* CSS Document */
.anxSoundPlayer {
	position:relative;
	width:360px;
	height: 30px;
	font-size:9px;
	overflow:hidden;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-text-size-adjust: 100%;
	display: block;
	line-height: 1em;
	color:white;
	margin: 13px 0 20px 0;
}

/* btnPlay */
.anxSoundPlayer .btnPlay, .anxSoundPlayer .btnPause {
	width: 30px;
	height: 30px;
	overflow:hidden;
	cursor:pointer;
	position:absolute;
	top: 0px;
}

.anxSoundPlayer .btnPlay {
	background: url("../img/player/btn_play.gif");
	display: block;
	left: 0px;
}

.anxSoundPlayer .btnPlay:hover {
	opacity: 0.5;
}

/* btnPause */
.anxSoundPlayer .btnPause {
	background: url("../img/player/btn_pause.gif");
	left: 0px;
	display: block;
}

.anxSoundPlayer .btnPause:hover {
	opacity: 0.5;
}

/* seek */
.seekBase {
	background: url("../img/player/seek_base.gif");
	width:360px;
	height:30px;
	cursor:pointer;
	position:absolute;
	left: 30px;
	top: 0px;
}

.seekProgress {
	background: url("../img/player/seek_prog.gif");
	width:360px;
	height:30px;
}


/* volume */
.volumeBase {
	background: url("../img/player/snd_base.png");
	width:69px;
	height:16px;
	cursor:pointer;
	position:absolute;
	/*left: 246px;*/
	right: 30px;
	top: 54px;
	display: none;
}

.volumeProgress {
	background: url("../img/player/snd_progress.png");
	width:69px;
	height:16px;
	display:none;
}

/* time */
.timeDisplay {
	position:absolute;
	left: 50%;
	top: 10px;
	font-size: 10px;
	color: #FFF;
    width:70px;
    margin-left: -35px;
	line-height: 1;
}

/* title */
.titleDisplay {
	position:absolute;
	left: 193px;
	top: 32px;
	width: 326px;
	height:15px;
	line-height:15px;
	font-size: 13px;
	white-space:nowrap;
	overflow:hidden;
}

.titleDisplay span {
	display:inline-block;
	position:relative;
	white-space:nowrap;
    color:#28292a;
}

.soundicon{
	position: absolute;
	top: 34px;
	left: 230px;
}


/* do not Change */
.BrightcoveExperience {
	opacity:0;
	position:relative;
}