/*---------
Allgemeines
---------*/

@font-face {
	font-family: 'Entypo';
	src: url('fonts/entypo.eot?') format('eot'), url('fonts/entypo.woff') format('woff'), url('fonts/entypo.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Aurulent';
	src: url('fonts/aurulent.eot?') format('eot'), url('fonts/aurulent.woff') format('woff'), url('fonts/aurulent.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
}

body:before {
	content: "";
	position: fixed;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.8);
		-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
		-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
	z-index: 100;
}

body {
	width: 960px;
	margin: 0 auto;
	background: url('img/bg.png');
	font-family: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
	font-size: 1rem;
	-webkit-tap-highlight-color: rgba(255,200,0,0.5);
}

::selection {
	background: #ffc800;
	color: #fff;
}

::-moz-selection {
	background: #ffc800;
	color: #fff;
}

::-webkit-selection {
	background: #ffc800;
	color: #fff;
}

img {
	margin: 15px 0 0 14px;
}

.thumb {
	float: left;
	padding-right: 10px;
}

.clear {
	clear: both;
}

/*-------
Textstile
-------*/

@media (max-width: 980px) {
	body {
		width: 100%
	}
}

h1 {
	font-family: 'Aurulent';
	font-weight: normal;
	font-size: 2.5rem;
}

@media (max-width: 320px) {
	h1 {
		font-size: 2.4rem;
	}
}

h1 a {
	color: #000;
}

h1 a:hover  {
	text-shadow: 1px 1px 1px #999;
}

h1 a:visited {
	color: #000;
}

h2 {
	padding: 15px 0 0 14px;
	font-family: 'Aurulent';
	font-weight: normal;
	font-size: 1.75rem;
}

h3 {
	padding: 15px 0 0 14px;
	font-family: 'Aurulent';
	font-weight: normal;
	font-size: 1.35rem;
}

h4 {
	padding: 0 0 0 15px;
	font-family: 'Aurulent';
	font-weight: normal;
	font-size: 1rem;
	text-decoration: underline;
}

b {
	font-weight: bold;
}

p {
	padding: 10px 17px;
	line-height: 1.3rem;
}

a {
	color: #10b;
	text-decoration: none;
	transition: all 0.2s ease;
			-moz-transition: all 0.2s linear;
			-webkit-transition: all 0.2s linear;
			-o-transition: all 0.2s linear;
			-ms-transition: all 0.2s linear;
}

a:visited {
	color: #10b;
}

ul {
	margin: 10px 34px;
}

/*------------
Header und Nav
------------*/

#header {
	width: 100%;
	margin-top: 20px;
	border-bottom: 3px solid #10b;
}

#nav {
	float: left;
	width: 150px;
	margin-top: 20px;
}

#nav ul {
	margin: 0;
	list-style-type: none;
}

#nav li {
	text-align: center;
}

#nav a {
	display: block;
	padding-bottom: 5px;
	color: #10b;
}

#nav a:hover {
	color: #ff8c00;
}

@media (max-width: 980px) {
	#nav {
		width: 100%;
		margin-top: 20px;
	}
	
	#nav li {
		float: left;
		width: 16.6666667%;
	}
}

@media (max-width: 620px) {
	#nav {
		width: 100%;
		float: left;
	}

	#nav li {
		width: 33.33333333%;
		text-align: center;
	}
}

.icon {
	font-family: 'Entypo';
	font-size: 3.5rem;
	color: #999;
}

.aktiv {
	color: #b2b2b2;
	text-shadow: 0 -1px 1px #666666, 0 1px 1px #FFFFFF;
	cursor: default;
}

/*-----
Content
-----*/

#content {
	float: right;
	width: 810px;
	margin: 20px 0;
	min-height: 450px;
	background: rgba(178,178,178,0.3);
	border-radius: 5px;
}

@media (max-width: 980px) {
	#content {
		width: 100%
	}
}

.article {
	margin: 20px;
	padding-bottom: 10px;
	min-height: 410px;
	background: #fcfcfc;
	border-radius: 5px;
}

.links {
	float: left;
	width: 385px;
	margin-top: 40px;
}

.rechts {
	float: right;
	width: 385px;
	margin-top: 40px;
}

@media (max-width: 825px) {
	.links {
		float: none;
		width: 100%;
	}
	
	.rechts {
		float: none;
		width: 100%;
	}
}

/*-----
Buttons
-----*/

.button {
	width: 275px;
	height: 50px;
	margin: 15px auto;
	background: #999;
	border-radius: 5px;
}

	.dl {
		position: relative;
	}

.button a {
	display: block;
	font-size: 1.2rem;
	color: #fcfcfc;
}

	.dl a {
		padding: 12px 0 21px 51px;
	}
	
	.mg a {
		padding-top: 12px;
		text-align: center;
	}

.button a:hover {
	color: #ffc800;
}

.button span {
	position: absolute;
	top: -0.75rem;
	left: 0.75rem;
	font-family: 'Entypo';
	font-size: 3rem;
	transition: all 0.2s ease;
			-moz-transition: all 0.2s linear;
			-webkit-transition: all 0.2s linear;
			-o-transition: all 0.2s linear;
			-ms-transition: all 0.2s linear;
}

.button span.umwelt:hover {
	color: #008000;
}