body {
	color: #DDDDDD;
	background-color: #121212;
	/*background: linear-gradient(to bottom, #111111, #1A1A1A);*/
}
h1, h2, h3 {
	color: #74AFFF;
	text-shadow: 0 0 4px #74AFFF;
}
a {
	color: #74AFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover, a:focus {
	color: #ffffff;
}
body > .header_element {
	border-bottom: 1px solid #2A2A2A;
	padding: 8px 16px 32px 16px;
	padding: 0.5em 1em 2em 1em;
}
.toolbar_element, .nav_element > ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.toolbar_element.horizontal {
	height: 36px;
	height: 2.3em;
}
.toolbar_element > li {
	margin: 0px 0px 16px 0px;
	margin: 0px 0px 1em 0px;
	font-weight: Bold;
}
.toolbar_element.horizontal > li {
	float: left;
	margin: 0px 16px 0px 0px;
	margin: 0px 1em 0px 0px;
}
@keyframes glowing_toolbar {
	0% {
		text-shadow: 0 0 4px White;
	}
	50% {
		text-shadow: 0 0 8px White;
	}
	100% {
		text-shadow: 0 0 4px White;
	}
}
.toolbar_button {
	display: block;
	text-decoration: none;
	padding: 8px;
	padding: 0.5em;
	background: #1E1E1E;
	border: 1px solid #2A2A2A;
	color: #E0E0E0;
	transition: background-color 0.3s ease;
	text-shadow: 0 0 8px White;
	animation: glowing_toolbar 7s infinite;
}
.toolbar_button:hover {
	border-color: #74AFFF;
	color: #FFFFFF;
	background-color: #000000;
}
.main_element > .article_element, .main_element > .section_element, .main_element > ol > li {
	border-bottom: 1px solid #2A2A2A;
	padding: 8px 16px 32px 16px;
	padding: 0.5em 1em 2em 1em;
}
.main_element > .article_element:last-child, .main_element > .section_element:last-child, .main_element > ol > li:last-child {
	border-bottom: 1px solid #2A2A2A;
}
body > .footer_element {
	border-top: 1px solid #2A2A2A;
	text-align: center;
	padding: 8px;
	padding: 0.5em;
}
.hidden {
	visibility: hidden;
	display: block;
	width: 0px;
	height: 0px;
}
.footer_element > .nav_element {
	color: #eee;
	padding: 2em 1em;
	text-align: center;
	font-size: 0.95em;
}

.footer_element > .nav_element ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer_element > .nav_element li {
	display: inline-block;
	width: 224px;
	width: 14em;
	margin: 16px;
	margin: 1em;
}

.footer_element > .nav_element a {
	text-decoration: none;
	color: #eee;
	transition: color 0.3s ease;
}

.footer_element > .nav_element a:hover,
.footer_element > .nav_element a:focus {
	color: #74AFFF;
}
img {
	max-width: 100%;
}
.hero_links li {
	display: inline-block;
	width: 160px;
	width: 10em;
	height: 160px;
	height: 10em;
	text-align: center;
	font-weight: Bold;
	margin: 0px 16px 16px 0px;
	margin: 0px 1em 1em 0px;
}
.hero_links li a {
	text-decoration: none;
	display: block;
	width: 126px;
	width: calc(8em - 2px);
	height: 126px;
	height: calc(8em - 2px);
	padding: 16px;
	padding: 1em;
	background: #1E1E1E;
	border: 1px solid #2A2A2A;
	color: #E0E0E0;
	transition: background-color 0.3s ease;
}
.hero_links a:hover {
	border-color: #74AFFF;
	color: #FFFFFF;
	background-color: #000000;
}
.hidden {
	display: block;
	height: 0px;
	width: 0px;
	overflow: hidden;
	visibility: hidden;
}
form input[type='text'],
form input[type='email'],
form textarea {
	width: 100%;
	max-width: 480px;
	padding: 8px;
	padding: 0.5em;
	background-color: #1E1E1E;
	border: 1px solid #2A2A2A;
	color: #E0E0E0;
	font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Verdana, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.6;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}
form textarea {
	resize: none;
}
form input[type='text']:focus,
form input[type='email']:focus,
form textarea:focus {
	border-color: #74AFFF;
	background-color: #000000;
	outline: none;
}
form input[type='submit'],
form .button_link {
	display: inline-block;
	padding: 8px;
	padding: 0.5em;
	background-color: #1E1E1E;
	border: 1px solid #2A2A2A;
	color: #E0E0E0;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
form input[type='submit']:hover,
form .button_link:hover,
form input[type='submit']:focus,
form .button_link:focus {
	border-color: #74AFFF;
	background-color: #000000;
	color: #FFFFFF;
}
form label {
	display: block;
	margin-bottom: 0.5em;
	font-weight: bold;
	color: #DDDDDD;
}
