@charset "utf-8";

/* -> Umstellung Boxmodell, -> allgemeines für html und body */ 

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	position: relative;
	font-size: 62.5%; 
	-webkit-text-size-adjust: none; 
	min-height: 100%;
}
	
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 1.3px;
	color: #fff;
	min-width: 300px;
	height: 100%;
	background-color: #fff;
	margin-bottom: 310px;
}

/* clear zum Auflösen der Floats Info: nicolasgallagher.com/micro-clearfix-hack/ */
.cf:before, .cf:after {
	content: " ";
	display: table;
}
.cf:after, .clear { clear: both; }

a {
	text-decoration: none;
}
a:active, 
a:focus {
	outline:none;
}
.unsichtbar {
	display: none;
}
header.websitekopf {
	width: 100%;
	background-color: #fff;
	margin-bottom: 100px;
}
#header-inner {
	width: 100%;
}
#logo {
	display: block;
	width: 96%;
	max-width: 600px;
	height: 160px;
	padding-top: 70px;
	margin: 0 auto;
}
a#logo-inner {
	display: block;
	max-width: 340px;
/*	margin: 0 auto; */
}
main {
	width: 96%;
	height: auto; 
	max-width: 600px;
	margin: 0 auto;
}
.content {
	background-color: #fff;
	color: #555f64;
	margin-top: 35px;
}
.content h1 {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 28px;
	margin-bottom: 25px;
}
.content h2 {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 22px;
	margin-top: 25px;
	margin-bottom: 15px;
}
.content p {
	margin-bottom: 15px;
}
.content a {
	text-decoration: none;
	color: #96254f;
}
.content a:hover {
	color: #555f64;
}
.content p span {
	display: inline-block;
	width: 60px;
}



