html {
	box-sizing: border-box;
}

*,
::before,
::after {
	box-sizing: inherit;
}

body {
	margin: 5px auto;
	max-width: 1120px;
	font-family: sans-serif;
	color: #444444;
}

header,
nav,
nav a,
main,
article,
section,
aside,
aside li,
footer {
	border-radius: 0px 8px 8px;
	border: 1px solid;
	padding: 10px;
	margin: 10px;
}

header {
	background: #e4edf4;
	border-color: #6c94b3;
}

header img {
	width: 80px;
	margin-right: 50px;
	float: left;
}

nav {
	font-size: 14px;
	background: #e4edf4;
	border-color: #6c94b3;
	padding: 0;
	margin:0;
}

nav p {
	padding: 0;
	margin: 10px 0 0 15px;
}

nav ul {
	padding: 0;
}

nav li {
	list-style: none;
	padding: 3px;
	margin-top: -10px;
	margin-bottom: -10px;
}

nav a {
	display: block;
	padding: 3px 10px;
	font-weight: bold;
	text-decoration: none;
	background-color: #c1d5e4;
	color: #030303;
}

nav ul a:hover,
nav ul a:active {
	color: #fffbf0;
	background-color: #6c94b3;
	border-color: #030303;
}

main {
	display: block;
	background: #e4edf4;
	border-color: #6c94b3;
	min-width: 296px;
}

section {
	background: #fbfcfd;
	border-color: #6c94b3;
	margin: 10px 0 0 0;
}

article {
	background: #fbfcfd;
	border-color: #6c94b3;
	margin: 0;
}

aside {
	background: #e4edf4;
	border-color: #6c94b3;
	margin: 0 0 10px 0;
	padding: 0;
}

aside ul {
	padding: 0;
}

aside li {
	list-style: none;
	font-size: 14px;	
	padding: 0;
}

aside a {
	display: block;
	padding: 3px 10px;
	font-weight: bold;
	text-decoration: none;
	background-color: #c1d5e4;
	color: #030303;
	border-radius: 0px 8px 8px;
}

aside ul a:hover,
aside ul a:active {
	color: #fffbf0;
	background-color: #6c94b3;
}

footer {
	background: #e4edf4;
	border-color: #6c94b3;
	min-height: 40px;
}

footer p {
	float: right;
	margin: 0;
	
}

/* formular - begin */
fieldset{
	border-radius: 0px 8px 8px;
}
form ul {
	padding: 0;
}
form li {
	list-style: none;
	padding: 5px 5px 5px 5px;
}

form li label {
	display: inline-block;
	width: 30%;
	white-space: nowrap;
}
/* formular - end */

/* table - begin */
table {
	border: 0;
	width: 100%;
}
table th {
	text-align: left;
}
table td {
	border-bottom: 1px dotted #c4ced3;
}
@media screen and (max-width: 512px) {
/* for small screens: < 32em(=512px) */
table {
	border: 0;
	width: 100%;
}
table thead {
	display: none;
}
 
table tr {
	margin-bottom: 10px;
	display: block;
	border-bottom: 2px solid #c4ced3;
}
table td {
	display: block;
	text-align: right;
	font-size: 13px;
	border-bottom: 1px dotted #c4ced3;
}
table td:last-child {
	border-bottom: 0;
}
table td:before {
	content: attr(data-label);
	float: left;
	/*text-transform: uppercase;*/
	font-weight: bold;
}
}
/* table - end */

@media (min-width: 640px) {
	/* mehrspaltiges Layout für breitere Viewports */
	
	nav {
		float: left;
		width: 220px;
		margin-top: 20px;
		margin-left: -12px;
		min-height: 240px;
	}
	main {
		margin-left: 240px;
	}
	footer{
		margin-left: 240px;
	}
}