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

/*　プレイヤー（再生バー）　*/
.audiojs {
	width: 18px;
	height: 18px;
	background: none;
	overflow: hidden;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	margin-right: auto;
	margin-left: auto;
	margin-top: 3px;
}
/*　再生・停止ボタン　*/
.audiojs .play-pause {
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;        /* CSS3草案 */
	-webkit-border-radius: 50%;    /* Safari,Google Chrome用 */
	-moz-border-radius: 50%;
	background: #F2F2F2;
	padding: 0px;
	margin: 0px;
    border: 1px solid #cccccc;

}
/*　再生・停止ボタンなどのp要素　*/
.audiojs p {
  display: none;
}

/*　バー・再生時間・エラーメッセージ・エラーボタン・読み込み中ボタン　*/
.audiojs .scrubber, .audiojs .time, .audiojs .error-message, .audiojs .error, .audiojs .loading {
  display: none;
}

/*　再生ボタン　*/
.audiojs .play {
	display: block;
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	margin-top: -4px;
	border: 4px solid transparent;
	border-left: 5px solid #808080;
	margin-left: 6px;
}
/*　停止ボタン　*/
.audiojs .pause {
	background-image: url(../images/common/pause-btn.png);
	background-position: 0px -1px;
	background-repeat: no-repeat;
}
.playing .play {
  display: none;
}
.playing .pause {
  display: block;
}