/* CSS-Reset
-------------*/

	* {
		box-sizing: border-box;
		font-size: inherit;
		font-family: 'Open Sans', 'Arial', sans-serif;
	}

	html, body {
		padding: 0;
		margin: 0;
		color: #424242;
		font-size: 15px;
		background-color: #FFFFFF;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	section {
		position: relative;
	}

	small * {
		font-size: inherit;
		color: inherit;
	}

/* Layoutelemente
------------------*/

	.container {
		position: relative;
		width: 1100px;
		margin: 0 auto 0 auto;
	}

	@media screen and (max-width: 1200px) {
		.container {
			width: 100%;
			margin-right: 0;
			margin-left: 0;
			padding: 0 20px 0 20px;
		}
	}

/* Links
--------*/

	a {
		color: #89B423;
		text-decoration: none;
	}

	a:hover {
		color: #000000;
		opacity: 0.8;
	}

	a:focus {
		outline: 1px solid #89B423;
	}

/* Eingabefelder
-----------------*/

	input, select, textarea {
		font-family: inherit;
	}

/* Floatclear
--------------*/

	.clear {
		clear: both;
		line-height: 0;
		height: 0;
		font-size: 0;
	}

	.clearfix:after {
		content: '';
		clear: both;
		display: table;
	}