#videowrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10100;
}
#videoplayer {
	width: 100%;
	margin: 0 auto;
}
.video-load {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .2);
	z-index: 2;
}
.video-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #fff;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	padding: 5px 15px 10px 15px;
	overflow: hidden;
	transition: opacity 0.5s ease;
}
.video-bottom {
	display: none;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, .25);
	padding: 0 15px;
	transition: opacity 0.5s ease;
}
.playing.clean .video-top, .playing.clean .video-bottom {
	opacity: 0;
}
.playing.clean {
	cursor: none;
}
.video-progress-wrap {
	padding-bottom: 3px;
}
.video-tools {
	color: #fff;
	padding: 0;
}
.video-tools button {
	display: inline-block;
	font-size: 22px;
	line-height: 1;
	color: #fff;
	background-color: transparent;
	border: none;
	vertical-align: middle;
	padding: 6px 16px;
	margin: 0;
	cursor: pointer;
}
.video-tools span {
	display: inline-block;
	font-size: 13px;
	vertical-align: middle;
	margin: 0;
}
.video-progress {
	height: 6px;
	background-color: rgba(255, 255, 255, .7);
	border-radius: 2px;
}
.video-quality {
	display: none;
	position: absolute;
	bottom: 45px;
	right: 25px;
	color: #fff;
	background-color: #333;
	padding: 5px 0;
}
.video-quality a {
	display: block;
	white-space: nowrap;
	text-align: right;
	text-decoration: none;
	color: #fff;
	padding: 8px 15px;
}
.video-quality span {
	display: inline-block;
	padding-left: 20px;
}
@media (min-width: 768px) {
/*	#videoplayer {
		width: 540px;
		margin: 0 auto;
	}*/
}
@media (min-width: 1024px) {
	#videoplayer {
		max-width: 964px;
		margin: 0 auto;
	}
}