﻿@charset "UTF-8";
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

/*Grundlegendes*/
body, html {
	height: 100%
	padding: 0;
	margin: 0 auto;
	border: 1px solid black;
	max-width: 600px;
}
nav, footer {
	min-height:50px;
}

nav {
	text-align: right;
}

body {
	background: #cccccc;
	font-size: 13px;
	font-family: Arial, sans-serif;
	line-height: 1.4;
}

footer {
	text-align: center;
}