* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	background-color: #eef;
}

header {
	width: 100%;
	height:100px;
	line-height: 100px;
	background-color: white;
}

header > h1 {
	margin: 0;
	text-align: center;
}

a {
	text-decoration: none;
}

a:hover {
	text-shadow: 0 0 0.1px;
}

#sidebar {
	float: left;
	display: inline-block;
	width: 300px;
	padding: 10px;
	background-color: #acd;
}

#sidebar form {
	display: flex;
}

#sidebar form input[type="search"] {
	background-color: #eee;
	border: 1px solid grey;
	padding: 0.5em;
	height: 1em;
	display: inline-block;
	flex: 2;
	box-sizing: content-box;
}

#sidebar form input[type="search"]:focus {
	outline: 2px #36f solid;
	outline-offset:-4px;
}

#sidebar form input[type="submit"] {
	width: 2em;
	height: 2em;
	display: inline-block;
	border: 1px solid #36f;
	padding: 0;
	margin: 0;
	background-image: url("/style/icons/search.svg");
	background-color: #36f;
	background-size: 100%;
	box-sizing: content-box;
}

#sidebar form input[type="submit"]:active {
	position: relative;
	top: 1px;
	left: 1px;
}

main {
	float: left;
	box-sizing: border-box;
	display: inline-block;
	padding: 10px;
	margin-left: 10px;
	background-color: #acd;
	width: calc(100% - 300px - 10px);
}

footer {
	color: white;
	background-color: black;
	width: 100%;
	float: left;
	margin-top: 10px;
}

footer div {
	display: inline-block;
	vertical-align: top;
	margin-left: 50px;
	margin-top: 50px;
}

footer div a {
	display: block;
	color: white;
}

footer #copyright-notice {
	width: 100%;
	margin: 50px;
}

