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

*{ padding: 0px; margin: 0px; outline: 0px; cursor: none; }
body{   overflow: hidden; }
.intro{ opacity: 0; }
p{ margin-bottom: 3%; }

/* ===== Debug box ============ */

#debugbox{
	z-index: 2000;
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 300px;
}
#debugbox div{
	background: RGBa(0, 0, 0, 0.9);
	color: #FFFFFF;
	padding: 10px;
	cursor: default;
}
#debugbox div a{
	color: #185485;
	text-decoration: none;
	cursor: pointer;
}

/* ===== Global font sizes ==== */

.s1{ font-size: 100px; }
.s2{ font-size: 90px; }
.s3{ font-size: 80px; }
.s4{ font-size: 70px; }
.s5{ font-size: 60px; }
.s6{ font-size: 50px; }
.s7{ font-size: 40px; }
.s8{ font-size: 30px; }

@media (max-width:1750px){
	.s1{ font-size: 88px; }
	.s2{ font-size: 68px; }
	.s3{ font-size: 61px; }
	.s4{ font-size: 53px; }
	.s5{ font-size: 44px; }
	.s6{ font-size: 38px; }
	.s7{ font-size: 33px; }
	.s8{ font-size: 27px; }
}
@media (max-width:1500px){
	.s1{ font-size: 75px; }
	.s2{ font-size: 68px; }
	.s3{ font-size: 60px; }
	.s4{ font-size: 53px; }
	.s5{ font-size: 45px; }
	.s6{ font-size: 38px; }
	.s7{ font-size: 30px; }
	.s8{ font-size: 23px; }
}
@media (max-width:1000px){
	.s1{ font-size: 63px; }
	.s2{ font-size: 57px; }
	.s3{ font-size: 50px; }
	.s4{ font-size: 44px; }
	.s5{ font-size: 38px; }
	.s6{ font-size: 32px; }
	.s7{ font-size: 25px; }
	.s8{ font-size: 19px; }
}
@media (max-width:1000px){
	.s1{ font-size: 50px; }
	.s2{ font-size: 45px; }
	.s3{ font-size: 40px; }
	.s4{ font-size: 35px; }
	.s5{ font-size: 30px; }
	.s6{ font-size: 25px; }
	.s7{ font-size: 20px; }
	.s8{ font-size: 15px; }
}
@media (max-width:750px){
	.s1{ font-size: 38px; }
	.s2{ font-size: 34px; }
	.s3{ font-size: 30px; }
	.s4{ font-size: 27px; }
	.s5{ font-size: 23px; }
	.s6{ font-size: 19px; }
	.s7{ font-size: 15px; }
	.s8{ font-size: 12px; }
}
@media (max-width:500px){
	.s1{ font-size: 25px; }
	.s2{ font-size: 23px; }
	.s3{ font-size: 20px; }
	.s4{ font-size: 17px; }
	.s5{ font-size: 15px; }
	.s6{ font-size: 13px; }
	.s7{ font-size: 10px; }
	.s8{ font-size: 8px; }
}

/* ===== Mainslide ============ */

#mainslide{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	z-index: 100;
}

/* ===== Background image ===== */

#currentbg, #backgrounds, #backgrounds &gt; div, #nextbg{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: auto;
	width: auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#currentbg{
	z-index: 1;
	/*background-image: url("../images/eagerlybg.png");*/
	background:black;
}
#backgrounds{
	z-index: 2;
}
#nextbg{
	z-index: 30;
}

/* ===== Time bar ===== */

#timebar{
	position: absolute;
	z-index: 1999;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: auto;
	background: RGBa(255, 255, 255, 0.2);
	display: none;
}
#timefill{
	width: 0px;
	height: 3px;
	background: #1F6FA1;
}

/* ===== Errorscreen ============ */

#errorscreen{
	position: absolute;
	z-index: 500;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	background: rgb(204, 34, 34);
}
#errorscreen .icon{
	margin-top: 50px;
	text-align: center;
}
#errorscreen .content{
	max-width: 700px;
	padding: 20px;
	text-align: center;
	margin: 0px auto;
	color: #fff;
	font-size: 30px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	line-height: 150%;
}
#errorscreen a{
	color: #FABD39;
	text-decoration: none;
	cursor: pointer !important;
}
#errorscreen img, #errorscreen .content, #errorscreen .icon, #errorscreen, #errorscreen span{
	cursor: default !important;
}

/* ===== Hide preload off screen ===== */

#preload{
	position: absolute;
	z-index: 1;
	left: -10000px;
	top: -10000px;
}

/* ===== Background image ===== */

#minilogo{
	position: absolute;
	width: 129px;
	height: 51px;
	z-index: 2001;
	bottom: 10px;
	left: 10px;
	background: url("../images/eagerlynclogo.png");
	display: none;
}</pre></body></html>