<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
html, body {
	height:100%;
	margin: 0;
	padding: 0;
	font-family: Open Sans;
	font-weight: 100;
	color: white;
}
body {
	min-height:100%;
	/*background: url(Bckgrnd.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	overflow: hidden;
}
img.bg {
	min-height: 100%;
 	width: 100%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -5;
}
.frost {
	height: 100%;
	width: 100%;
	z-index: -4;
	position: relative;
	top: 0;
	left: 0;
	filter: blur(10px);
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: url(#blur);
	filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
	overflow: hidden;
}
#bckgrnd {
	//height: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 100%;
	//max-width: 100%;
	position: fixed;
	z-index: -1;
}
nav {
	height: 7%;
	width: 100%;
	position: fixed;
	background-color: rgba(220,220,220,0.3);
}
#nav_home {
	height: 100%;
	width: 25%;
	float: left;
	-webkit-transition: background-color 0.5s;
	font-size: 2.2vw;
	text-align: center;
	line-height: 7vh;
}
.nav_item {
	height: 100%;
	width: 15%;
	float: left;
	-webkit-transition: background-color 0.5s;
	font-size: 1.8vw;
	text-align: center;
	line-height: 7vh;
}
.nav_item:hover {
	background-color: rgba(255,255,255,0.5);
}
.nav_item:first-child {
	margin-left: 20%;
}
/*.nav_item:last-child {
	margin-right: 20%;
}*/
#nav_item_curr {
	background-color: rgba(200,200,200,0.5);
}
nav a {
	height: 100%;
	width: 100%;
	display: block;
	text-decoration: none;
	color: white;
}


#content {
	height: 80%;
	width: 70%;
	margin: 8vh 12% 0% 12%;
	padding: 3vh 3%;
	float: left;
	overflow-y: scroll;
	background-color: rgba(200,200,200,0.3);
}
/*
article:first-child {
	margin-top: 5%;
}
#content img {
	width:100%;
	position:relative;
	z-index:999;
}*/

footer {
	height: 5%;
	width: 100%;
	margin: 1vh 0 0 0;
	float:left;
	background-color: rgba(220,220,220,0.3);
}
footer ul {
	height:100%;
	width:100%;
	display:block;
	margin:0;
	padding:0;
	list-style:none;
	text-align:center;
}
footer ul li {
	height: 100%;
	width: 10%;
	display:block;
	float: left;
	-webkit-transition: background-color 0.5s;
}
footer ul li:first-child {
	margin-left: 30%;
}
footer ul li:hover {
	background-color: rgba(255,255,255,0.3);
}
.dropup {
	height: 30%;
	width: 50%;
	left: 25%;
	bottom: -30vh;
	position: absolute;
	display: hidden;
	z-index: -1;
	background-color: rgba(10,10,10,0.5);
	-webkit-transition: bottom 0.3s ease-in-out;
}
footer ul li:hover .dropup {
	display: block;
	//transform: translate(0,10vh);
	bottom: 5vh;
	z-index: 1;
}
footer ul li a {
	display:block;
	color:white;
	text-decoration:none;
	line-height: 5vh;
}</pre></body></html>