/* Main layout */
* {
	padding: 0;
	margin: 0;
	font-size: 100%;
	font-family: inherit;
	color: inherit;
}
html {
	padding: 0;
	margin: 0;
	background-color: #CCC;
	background-image: url('../images/diagonal.gif');
}
body {
	font-family: calibri, tahoma, verdana, helvetica, sans-serif;
	color: #333;
}
div#content {
	width: 830px;
	box-sizing: border-box;
	padding: 0 15px;
	background-image: url('../images/body_shadow.png');
	margin: 0 auto 23px auto;
}
div#main_content {
	text-align: justify;
	line-height: 140%;
	background: white;
	padding: 1.5em 16px;
}
@media screen and (max-width: 860px) {
	div#content {
		padding: 0;
		width: 100%;
		max-width: 800px;
		background: transparent;
	}
	div#main_content {
		box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.2);
	}
}
/* Banner */
div#banner {
	height: 4.5em;
	background: #369 url('../images/benryves_digital.gif') no-repeat scroll bottom right;
	position: relative;
}
@media screen and (max-width: 830px) {
	div#banner {
		padding-bottom: 3em;
		background-position: 50% 1em;
	}
}
/* Navigation bar */
div#navigation {
	font-size: 95%;
	height: 2em;
	background-color: #369;
	position: absolute;
	bottom: 0;
}
div#navigation ul {
	height: 100%;
	margin-left: 1em;
}
div#navigation ul li {
	height: 100%;
	float: left;
	list-style: none;
	position: relative;
	padding: 0.3em 1em 0 1em;
	color: white;
}
@media screen and (max-width: 830px){ 
	div#navigation {
		width: 100%;
	}
	div#navigation ul {
		margin-left: auto;
		margin-right: auto;
		display: block;
		text-align: center;
	}
	div#navigation ul li {
		display: inline-block;
		float: none;
	}
}
div#navigation ul li.selected,
div#navigation ul li.selected_parent {
	background-color: white;
}
div#navigation ul li a {
	color: white;
	text-decoration: none;
}
div#navigation ul li.selected a,
div#navigation ul li.selected_parent a {
	color: #333;
}
/* Footer */
div#footer {
	text-align: center;
	padding: 1em;
	color: white;
	background-color: #369;
	border-top: 1em solid white;
	font-size: 80%;
}
div#footer a {
	color: white;
}
/* Taskbar */
div#taskbar_outer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 23px;
	font-size: 12px;
}
div#taskbar {
	height: 100%;
	background-color: #EEE;
	border: 1px solid #AAA;
	border-bottom: none;
	margin: 0 1em;
}
div#taskbar a {
	height: 19px;
	display: block;
	background-repeat: no-repeat;
	background-position: 3px 50%;
	padding: 4px 4px 0 22px;
	color: #333;
}
div#taskbar a:hover {
	text-decoration: none;
	background-color: #369;
	color: white;
}
div#taskbar a.left {
	border-right: 1px solid #AAA;
	float: left;
}
div#taskbar a.right {
	border-left: 1px solid #AAA;
	float: right;
}