<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#videos {
	width: 100%;
	height: 100%;
	min-height: 600px;
}

section {
}

video {
	position: relative;
	width: 100%;
}

#modal-video {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: hsla(0, 0%, 100%, 0.95);
	z-index: 1000;
	opacity: 0;
	/*opacity: 1;*/
	pointer-events: none;
	transition: all .4s ease;
}

#modal-video video, #modal-video iframe {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 960px;
	height: 540px;
	margin-left: -480px;
	margin-top: -270px;
}

.video-source {
	display: none;
	visibility: hidden;
}

.close-button {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 64px;
	height: 64px;
	background: url('images/closeButton.png');
	background-size: 64px 64px;
	cursor: pointer;
	opacity: .4;
	transition: all .4s ease;
}

.close-button:hover {
	opacity: 1.0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
   .close-button {
		background-image: url('images/closeButton@2x.png');
	}
}

#videos .text-container {
	width: 100%;
}

#videos .text {
	width: 100%;
	display: inline;
}

#videos ul {
	line-height: 1.4em;
	width: 100%;
}

#videos ul {
	list-style: decimal;
}

#videos ul li {
	line-height: 2em;
	border-bottom: solid 1px transparent;
	border-top: solid 1px transparent;
	cursor: pointer;
	color: hsla(0, 0%, 0%, 1.0);
}

#videos ul li {
	transition: all .2s ease;
}

#videos ul:hover li {
	color: hsla(0, 0%, 68%, 1.0);
}

#videos ul ul {
	list-style-position: inside;
	list-style-type: disc;
}

#videos li:hover .title {
	color: #000;
}

#videos li:hover .accessories {
	opacity: 1;
}

.title {
}

p.notes-entry {
	font-size: 15px;
	width: 100%;
	/*display: inline-block;*/
	line-height: 1.4em;
	margin-bottom: 1em;
	display: none;
	position: relative;
	/*opacity: 1;*/
	transition: all .4s ease;
}

.accessories {
	opacity: 0;
	/*float: right;*/
	position: absolute;
	right: 0;
	color: hsla(0, 0%, 0%, 1.0);
}

.accessories span {
	font-size: 15px;
	padding-left: 15px;
	cursor: pointer;
}

.accessories span:hover {
	color: hsla(0, 0%, 60%, 1.0);
}

.keynote, .powerpoint, .PDF {
	display: none;
}</pre></body></html>