<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*---------------------------------------------------------------------------
	VIDEO
---------------------------------------------------------------------------*/

#videoOuterContainer {
	width: 1000px;
	height: 508px;
	position: absolute;
	background-color: rgba(255, 255, 255, .8);
	top: 52px;
	left: 0;
	overflow: hidden;
	z-index: 200;
	opacity: 0;
}

#videoOuterContainer.hide {
	top: -508px;
}

#videoOuterContainer .close {
	width: 40px;
	height: 40px;
	background-image: url(../_img/close.png);
	position: absolute;
	top: 5px;
	left: 55px;
	cursor: pointer;
	z-index: 300;
}


#videoInnerContainer {
	width: 900px;
	height: 510px;
	margin: 0 auto;

	-webkit-box-shadow:  0px 0px 50px 0px rgba(0, 0, 0, .8);
	box-shadow:  0px 0px 50px 0px rgba(0, 0, 0, .8);
	background-color: #000;
}

#videoToggle {
	width: 900px;
	height: 500px;
	position: absolute;
	top: 0;
	left: 50px;
	cursor: pointer;
}


div#videoControls div.jp-progress {
	bottom:0px;
	left:50px;
	position: absolute;
	width:900px;
	height:8px;
	background-color: #dcdbda;
}

div#videoControls div.jp-seek-bar {
	width:0px;
	height:100%;
	cursor: pointer;
	background-color: #dcdbda;
}

div#videoControls div.jp-play-bar {
	width:0px;
	height:100%;
	background-color: #f7d325;
}</pre></body></html>