body {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	line-height: 2rem;
}

header {
	background-color: #00313D;

	height: 32rem;
	max-height: 100vh;

	text-align: center;
	color: white;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

header .logo {
	margin-top: 4rem;
	max-width: 24rem;
	width: 75%;

	color: white;
}

header .info {
	padding: 0 1rem;
}

header .info span {
	display: block;
}

header .info a {
	position: relative;
	text-decoration: none;
	color: white;
	font-weight: 500;

	z-index: 1;
}

header .info a::before {
	display: block;
	position: absolute;
	content: "";

	bottom: -.25rem;
	left: -.5rem;
	width: 100%;
	height: 1rem;

	background: #0083A322;

	transition: .125s all;

	z-index: -1;
}

header .info a:hover::before {
	height: 2rem;

	bottom: -.5rem;
	left: -.75rem;
	width: 120%;

	background: #0083A344;
}

header .bar {
	position: relative;

	width: 100%;
	height: 6rem;

	text-align: center;
	line-height: 1rem;
	font-size: .75rem;
	font-weight: 500;
	color: #FFF9;
	letter-spacing: 1px;

	background: #0006;
}

header .bar span {
	display: block;
	margin: .5rem 0;
}

header .bar .sponsorList {
	height: 4rem;
	position: relative;

	overflow: -moz-scrollbars-none;
	overflow-y: hidden;
	overflow-x: auto;
	white-space: nowrap;
	margin: 0;
}

header .bar .sponsorList::-webkit-scrollbar {
	width: 0 !important;
}

header .bar .sponsor {
	display: inline-block;
	height: 85%;
	margin: 0 1rem;
}

.container {
	display: flex;
	max-width: 960px;
	margin: auto auto 1rem;
}

@media screen and (max-width: 960px) {
	.container {
		flex-direction: column;
	}

	.sidebar {
		order: 2 !important;
	}
}

@media screen and (min-width: 960px) {
	.floating {
		position: sticky;
		top: 2rem;
	}
}

.sidebar {
	order: 0;
	min-width: 12rem;
}

.main {
	flex: 1 0;
	text-align: justify;
	text-justify: inter-word;
	order: 1;
}

.main img {
	max-width: 100%;
}

.col {
	margin-left: .5rem;
	margin-right: .5rem;
	padding: 1rem;
}

nav.nav ul {
	list-style-type: none;
	list-style-position: inside;

	margin: 0;
	padding: 0;

	font-size: .875rem;
	font-weight: 500;
}

nav.nav > ul > li {
	padding: 0 .5rem;
	margin-top: 0;

	color: #CCC;
	font-weight: bold;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

article, nav.nav > ul > ul {
	margin-bottom: 1rem;
}

article time {
	padding: 2rem;
}

section p {
	padding: 0 1rem;
}

section p a {
	position: relative;

	text-decoration: none;
	color: #36648b;

	z-index: 1;
}

section p a::before {
	display: block;
	position: absolute;
	content: "";

	bottom: -.125rem;
	left: -.25rem;
	width: 100%;
	height: .5rem;

	background: #0083A322;

	transition: .125s all;

	z-index: -1;
}

section p a:hover::before {
	height: calc(100% + .5rem);

	bottom: -.25rem;
	left: -.25rem;
	width: calc(100% + .5rem);

	background: #0083A344;
}

section p a img {
	display: block;
	max-width: 480px !important;
	width: 100%;
	margin: 4rem auto;
}

.big {
	display: block;
	text-align: center;
}

.big a {
	font-size: 1.5rem;
}

h2 {
	display: inline-block;
	position: relative;

	margin: 0;
	margin-top: 2rem;

	font-size: 2rem;

	color: #00313D;
}

h3 {
	display: inline-block;

	margin: 0;
	margin-top: 2rem;

	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

h2::before {
	display: block;
	position: absolute;
	content: "";

	bottom: -.25rem;
	left: -.5rem;
	width: 100%;
	height: 1rem;

	background: #0083A322;

	z-index: -1;
}

.header img {
	vertical-align: text-bottom;
	margin-right: 1rem;
	height: 2rem;
	box-shadow: -.5rem .5rem 0 0 #0083A322, 0px 0px 32px 0px #0003;
}

.header .action {
	color: #CCC;
	font-weight: bold;
	font-size: .75rem;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	padding: .5rem;

	vertical-align: text-bottom;
}

.previous  {
	margin: 2rem;
}

.sidebar a {
	display: block;
	padding: 0 1rem;
	color: #36648b;
	text-decoration: none;
	border-radius: .25rem;

	transition: .25s all;
}

.sidebar a:hover {
	color: black;
	transform: translateX(.125rem);
}

.sidebar a.selected {
	background: #0083A322;
}

footer {
	text-align: center;
	color: #CCC;
	font-weight: bold;
	font-size: .75rem;
}

footer a {
	color: inherit;
}