/*
 * AAudio 
 */
.mejs__container.mejs-aaudio {
	background: transparent; /*#E2E5E7; /*rgba(200,200,200,0.8);*/
	min-width: 480px;
	max-width: 480px;
	width: 480px;
	height: 31px;
}
.mejs__container.mejs-aaudio .mejs__controls {
	border-radius: 6px;
	box-shadow: 0px 1px 2px rgba(100, 100, 100, .4);
	background: rgba(226, 229, 231, .5);
	height: 31px;
}
.mejs__container.mejs-aaudio .mejs__controls .mejs__time {
	color: #333;
}
.mejs__container.mejs-aaudio .mejs__time,
.mejs__container.mejs-aaudio .mejs__time-rail {
	padding-top: 5px;
	line-height: 20px;
}
.mejs__container.mejs-aaudio .mejs__button > button {
	margin-top: 6px;
}
.mejs__container.mejs-aaudio .mejs__horizontal-volume-total {
	top: 11px;
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__button button {
	background: transparent url("images/controls.svg") no-repeat;
	position: absolute;
	height: 16px;
	width: 16px;
}
.mejs__container.mejs-aaudio .no-svg .mejs__controls .mejs__button button {
	background-image: url("images/controls.png");
}

/* Start: Timeline */
.mejs__container.mejs-aaudio .mejs__controls .mejs__time-rail .mejs__time-total {
	background: rgba(200,200,200,0.8);
}
.mejs__container.mejs-aaudio .mejs__controls .mejs__time-rail .mejs__time-loaded {
	background: rgba(250, 185, 167, 0.8);
}
.mejs__container.mejs-aaudio .mejs__controls .mejs__time-rail .mejs__time-current {
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__time-handle-content {
	border-color: #333;
	background-color: #333;
}

/* Start: Play/Pause/Stop */
.mejs__container.mejs-aaudio .mejs__controls .mejs__play button {
	background-position: 0 0;
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__pause button {
	background-position: 0 -16px;
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__stop button {
	background-position: -112px 0;
}

/* Start: Mute/Volume */
.mejs__container.mejs-aaudio .mejs__controls .mejs__volume-button {
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__mute button {
	background-position: -16px -16px;
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__unmute button {
	background-position: -16px 0;
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__volume-button {
	position: relative;
}

/* Start: Volume slider */
.mejs__container.mejs-aaudio .mejs__controls .mejs__volume-button .mejs__volume-slider {
	background: rgba(255, 255, 255, 0.7);
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
}
.mejs__container.mejs-aaudio .mejs__controls .mejs__volume-button .mejs__volume-slider .mejs__volume-total {
	background: rgba(250, 185, 167, 0.8);
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__volume-button .mejs__volume-slider .mejs__volume-current {
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__volume-button .mejs__volume-slider .mejs__volume-handle {
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-current {
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-aaudio .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-total {
	background: rgba(250, 185, 167, 0.8);
}

/* Start: Caption */
.mejs__container.mejs-aaudio .mejs__controls .mejs__time-rail .mejs__time-float {
	background: #eee;
	border: solid 1px #fab9a7;
	color: #f24719;
}
.mejs__container.mejs-aaudio .mejs__controls .mejs__time-rail .mejs__time-float {
	line-height:12px;
}
.mejs__container.mejs-aaudio .mejs__controls .mejs__time-rail .mejs__time-float-corner {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	line-height: 0;
	border: solid 5px #fab9a7;
	border-color: #fab9a7 transparent transparent transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	top: 15px;
	left: 13px;
}
/* AAudio END */


/*
 * AVideo
 */
.mejs__container.mejs-avideo {
	background: #bbb;
	background: rgba(200,200,200,0.8);
	max-width: 480px;
	min-height: 270px;
	max-height: 270px;
	display:inline;
}

.mejs__container.mejs-avideo .mejs__controls {
	background: #eee;
	background: rgba(255,255,255,0.8);
}

.mejs__container.mejs-avideo .mejs__controls .mejs__time {
	color: #333;
}

.mejs__container.mejs-avideo .mejs__controls .mejs__button button {
	background: transparent url("images/controls.svg") no-repeat;
	position: absolute;
	height: 16px;
	width: 16px;
}

.mejs__container.mejs-avideo .no-svg .mejs__controls .mejs__button button {
	background-image: url("images/controls.png");
}

/* Start: Timeline */
.mejs__container.mejs-avideo .mejs__controls .mejs__time-rail .mejs__time-total {
	background: #aaa;
	background: rgba(200,200,200,0.8);
}
.mejs__container.mejs-avideo .mejs__controls .mejs__time-rail .mejs__time-loaded {
	background: #f24719;
	background: rgba(242, 71, 25, 0.9);
}
.mejs__container.mejs-avideo .mejs__controls .mejs__time-rail .mejs__time-current {
	background: #fab9a7;
	background: rgba(250, 185, 167, 0.8);
}

/* Start: Play/Pause/Stop */
.mejs__container.mejs-avideo .mejs__controls .mejs__play button {
	background-position: 0 0;
}

.mejs__container.mejs-avideo .mejs__controls .mejs__pause button {
	background-position: 0 -16px;
}

.mejs__container.mejs-avideo .mejs__controls .mejs__stop button {
	background-position: -112px 0;
}

/* Start: Mute/Volume */
.mejs__container.mejs-avideo .mejs__controls .mejs__volume-button {
}

.mejs__container.mejs-avideo .mejs__controls .mejs__mute button {
	background-position: -16px -16px;
}

.mejs__container.mejs-avideo .mejs__controls .mejs__unmute button {
	background-position: -16px 0;
}

.mejs__container.mejs-avideo .mejs__controls .mejs__volume-button {
	position: relative;
}

/* Start: Fullscreen */
.mejs__container.mejs-avideo .mejs__controls .mejs__fullscreen-button button {
	background-position: -32px 0;
}

.mejs__container.mejs-avideo .mejs__controls .mejs__unfullscreen button {
	background-position: -32px -16px;
}

/* Start: Volume slider */
.mejs__container.mejs-avideo .mejs__controls .mejs__volume-button .mejs__volume-slider {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
}
.mejs__container.mejs-avideo .mejs__controls .mejs__volume-button .mejs__volume-slider .mejs__volume-total {
	background: #fab9a7;
	background: rgba(250, 185, 167, 0.8);
}

.mejs__container.mejs-avideo .mejs__controls .mejs__volume-button .mejs__volume-slider .mejs__volume-current {
	background: #f24719;
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-avideo .mejs__controls .mejs__volume-button .mejs__volume-slider .mejs__volume-handle {
	background: #f24719;
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-avideo .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-current {
	background: #f24719;
	background: rgba(242, 71, 25, 0.9);
}

.mejs__container.mejs-avideo .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-total {
	background: #fab9a7;
	background: rgba(250, 185, 167, 0.8);
}

/* Start: Caption */
.mejs__container.mejs-avideo .mejs__controls .mejs__time-rail .mejs__time-float {
	background: #eee;
	border: solid 1px #fab9a7;
	color: #f24719;
}
.mejs__container.mejs-avideo .mejs__controls .mejs__time-rail .mejs__time-float-corner {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	line-height: 0;
	border: solid 5px #fab9a7;
	border-color: #fab9a7 transparent transparent transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	top: 15px;
	left: 13px;
}

/* Start: Loading */
.mejs__container.mejs-avideo .mejs__overlay-loading {
	background: #bbb;
	background: rgba(200,200,200,0.8);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.mejs__container.mejs-avideo .mejs__overlay-loading span {
	display: block;
	width: 80px;
	height: 80px;
	background: transparent url("images/loading.gif") 50% 50% no-repeat;
}

/* AVideo END */
