body {
	width: 800px;
	margin: 0 auto;
	padding: 0;
	color: #333;
	font-size: 12px;
	font-family: sans-serif;
}
a {
	color: #0184d5;
	text-decoration: none;
}
a:hover {
	color: #ff3300;
}
img {
	max-width: 100%;
}

/*==============
=====HEADER=====
==============*/

.header {
	display: flex;
	flex-direction: row;
}
.main-nav-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	flex: 1;
}
.main-nav-container > div {
	width: 100%;
}
.main-nav ul {
	display: flex;
	flex-direction: row;
	justify-content: end;
	padding: 4px;
	border: 1px solid #333333;
	background-color: #cc0000;
	list-style: none;
	text-transform: uppercase;
}
.main-nav ul li {
	padding: 0 2px;
	color: #fff;
}
.main-nav ul li a {
	color: #fff;
	text-decoration: none;
}
.main-nav ul li a:hover {
	text-decoration: underline;
}
.welcome {
	text-align: right;
}
.menu-bold-title {
	padding: 0 4px;
	border: 1px solid #ebebeb;
	color: #FF6600;
	font-weight: bold;
	line-height: normal;
	text-decoration: none;
}

/*==============
======MAIN======
==============*/

.main {
	display: flex;
	flex-direction: row;
}

/*==SIDE NAV==*/

.aside {
	display: flex;
	width: 200px;
	flex-direction: column;
	margin-right: 20px;
}
.side-nav-title {
	margin: 0 0 5px;
}
.side-nav-title span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}
.side-nav-subtitle {
	margin: 0;
	padding: 4px;
	border-width: 1px 1px 0;
	border-style: solid;
	border-color: #bfbfbf;
	background-color: #0484D5;
	color: #fff;
	font-weight: normal;
}
.side-nav {
	flex: 1;
	padding: 20px;
	border-width: 0 1px 1px;
	border-style: solid;
	border-color: #bfbfbf;
}
.side-nav ul {
	margin: 0 0 0 10px;
	padding: 0;
	list-style: none;
}
.side-nav ul li {
	line-height: 2;
}
.side-nav ul li:not(:empty)::before { 
  content: "";
  border-color: transparent #ff3300;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 1.25em;
  position: relative;
}
.side-nav ul li:empty {
	height: 1em;
}

/*====CONTENT====*/

.content {
	flex: 1;
	position: relative;
	padding: 30px 20px 20px;
	border: 1px solid #bfbfbf;
}
.location {
	position: absolute;
	top: -16px;
	margin: 0;
	padding: 5px;
	background: #fff;
	color: #0184d5;
	font-weight: 400;
}
.sitemap {
	display: flex;
	flex-direction: row;
}

/*==============
=====FOOTER=====
==============*/

.footer {
	margin: 20px 0;
	padding: 5px;
	background-color: #cc0000;
	color: #fff;
	text-align: center;
}
.links {
	padding: 0 10px;
	margin: 0 0 20px;
	list-style: none;
	columns: 3;
}