/* Allgemeines & Resets
------------------------*/

	html, body {
		font-family: 'Roboto', sans-serif;
		font-size: 14px;
		color: #424242;
		background-color: #eff1f3;
	}

	* {
		padding: 0;
		margin: 0;
		box-sizing: border-box;
		text-decoration: none;
		list-style-type: none;
	}

	small {
		font-size: 12px;
	}

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

	section {
		position: relative;
	}

/* Clear
---------*/

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

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

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

	a {
		color: #009cdf;
	}

	a:hover {
		color: #009cdf;
	}

	a:focus {
		outline: 0;
	}

/* Bild
--------*/

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

/* Tabelle
-----------*/

	table {
		width: 100%;
		border-collapse: collapse;
		border-spacing: 0;
	}

	th, td {
		text-align: left;
		vertical-align: top;
	}

/* Container
-------------*/

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

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