html, body {
	margin: 0;
	padding: 0;
	height: 100%;

	background-color: #dfdfdf;
	font-family: Dejavu Sans, DejaVu Sans Distributed, sans-serif;
}

input, select {
	height: 30px;
}

header {
	width: 100%;
	height: 50px;

	background-color: #49111a;
	color: #f5f5f5;

	display: flex;
}

h2 {
	text-align: center;
	color: #444;
	font-variant: small-caps;
	margin: 30px auto 70px auto;
}

header > * { margin: 0 10px; }
header > div { align-self: center; }

header > h1 {
	line-height: 50px;
	font-variant-caps: small-caps;
	font-size: 30px;

	margin: 0 10px;
}

header > img#icon {
	height: 48px;
	width: 32px;
}

div#header_extension {
	background-color: #49111a;
	height: 20px;
	width: 100%;
}

div.menu_icon {
	background-color: #f5f5f5;
	color: #49111a;
	text-align: center;
	font-weight: bold;
	font-size: 22px;

	height: 34px;
	width: 34px;
	line-height: 34px;
	padding-right: 1px;

	border-radius: 19px;
	border: 1px solid #f5f5f5;
	cursor: pointer;
	transition: all 0.3s;
}

div.menu_icon:hover {
	color: #f5f5f5;
	background-color: #49111a;
}

div.menu_icon.disabled {
	color: #999 !important;
	background-color: #f5f5f5 !important;
}

div.menu {
	position: absolute;
	right: 10px;
	margin-top: 5px;

	display: flex;
	flex-direction: column;

	background-color: #f5f5f5;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

div.menu a {
	display: block;
	padding: 5px 15px;
	text-align: right;
	border-radius: 10px;

	line-height: 25px;
	color: black;
	font-variant: small-caps;
	font-weight: bold;
	text-decoration: none;
}

div.menu a:hover {
	background-color: #dfdfdf;
}

div.page_block {
	height: 90%;
	min-height: 650px;
	margin: 0 auto;
	margin-top: -20px;
	margin-bottom: 20px;
	padding: 2px;
	background-color: whitesmoke;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
