﻿/*reset */
* {
	margin:0;
	padding:0;
}

/* global */
body {
 	background-image: -ms-linear-gradient(top, #EFEFEF 0%, #888888 100%);
	background-image: -moz-linear-gradient(top, #EFEFEF 0%, #888888 100%);
	background-image: -o-linear-gradient(top, #EFEFEF 0%, #888888 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #EFEFEF), color-stop(1, #888888));
	background-image: -webkit-linear-gradient(top, #EFEFEF 0%, #888888 100%);
	background-image: linear-gradient(to bottom, #EFEFEF 0%, #888888 100%);

	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:1.3em;
	color:#010025;
}
h1 {
	font-size:36px;
	margin-bottom:20px;
}
p {
	margin: 10px 0;
}
a {
	color:#00A3EF;
	text-decoration:none;
}
a:hover {
	color:#777777;
}
a.reset {
	color:inherit;
}
/* classes */
.top {
	background:#e2e2e2;
	background:-moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #e8e8e8 100%);
	background:-webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#e8e8e8 100%);
	background:linear-gradient(to bottom, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#e8e8e8 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#e8e8e8',GradientType=0 );
	height:35px;
}

.wrapper {
	width: 100%;
	min-height:600px;
	background-color:#fefefe;
}
.header-index {
	width:auto;
	height:500px;
	background-image:url('images/header5.jpg');
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}
.header-datenschutz {
	width:auto;
	height:500px;
	background-image:url('images/header3.jpg');
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}
.header-impressum {
	width:auto;
	height:500px;
	background-image:url('images/header4.jpg');
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}


.content-left {
	width: 410px;
	padding:50px 20px 0 0;
	float:left;
	text-align:right;
}

.content-right {
	width: 410px;
	float:left;
	padding:45px 0 0 20px;
}

@media (min-width: 900px) {
	.content {
		width: 900px;
		margin:auto;
	}
	.content-full {
		clear:both;
		width:75%;
		margin: 0 auto;
		padding:50px 20px;
	}
}

@media (max-width: 899px) {
	.content {
		width: 90%;
		margin:auto;
	}
	.content-left {
		padding:50px 0 0 20px;
		float:none;
		text-align:left;
	}
	.content-full {
		clear:both;
		width:100%;
		padding:50px 0;
	}
}

/* helper */
.no-padding-top {
	padding-top: 0 !important;
}
.text-center{
	text-align:center;
}
.text-medium {
	color:#363636;
	font-size:0.9em;
}
.text-small {
	color:#363636;
	font-size:0.8em;
	line-height:1.2em;
}
.text-center {
	text-align:center;
}



.form-link{
	clear: both;
	padding: 1rem 20px;
}
.form-link--smallscreen{
	padding-left: 0;
	padding-right: 0;
}
.form-link--largescreen{
	text-align: center;
	display: none
}
@media only screen and (min-width: 900px){
	.form-link--largescreen{
		display: block;
	}
	.form-link--smallscreen{
		display: none;
	}
}
.button{
	display: inline-block;
	padding: 0.5em 1em;
	line-height: 1em;
	text-transform: uppercase;
	border: 1px solid #00A3EF;
	transition: background-color 0.3s, color 0.3s;
}
.button:hover,
.button:focus{
	background-color: #00A3EF;
	color: #fff;
	text-decoration: none;
}
