body {
	/*background-color: #fdfffd;*/
	color: #121;
	padding: 0.5rem 0.5rem;
	font-size: 1.1rem;
	font-family: Times New Roman;
	text-align: center;
	
}
/* centered container for everything inside body */
#all {
	min-width: 465px;
	max-width: 1180px;
	margin: 0 auto;
	text-align: left;
}
h1,h2 {
	font-family: Arial;
}
#definitionen h2 {
	font-family: Times New Roman;
}
#nav,#subnav {
	font-family: Arial;
}

/* colors
color range from 6c4 to 170
dark green for links: 280
hover green for links: 3a1
*/

a {
	color: #270;
	text-decoration: none;
}

/* "banner picture" */
#banner {
  padding: 40px;
  text-align: center;
  background-image: linear-gradient(150deg, #6c4, #170);
  color: white;
  font-size: 3rem;
  text-shadow: 1px 1px 2px #050;
}

/* primary navigation */
#nav {
	border-bottom:2px solid #280;
}
#nav ul {
	margin: 0.5rem 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	text-align: center;
	font-size: 1.5rem;
}
#nav li {
	display: inline;
}
#nav li a {
	text-align: center;
	padding: 0 1.2rem;
	white-space: nowrap;
}
#nav .active a {
	color: #130;
}
#nav li a:hover {
	color: #3a1;
}

/* secondary navigation */
#subnav ul {
	padding: 0;
	overflow: hidden;
}
#subnav li {
	/*background-color: #333;*/
	/*border-right: 1px solid #000;*/
	display: inline;
}
#subnav li a {
	font-size: 90%;
	margin-right: 0.5rem;
	/*border-bottom: 1px dotted #270;*/
	text-decoration: underline;
	white-space: nowrap;
}
#subnav .active a {
	color: #130;
}
#subnav li a:hover {
	color: #3a1;
	text-decoration: underline;
}

#footer {
	text-align: center;
	font-size: 1rem;
}

/* forms for report */
form div {
	/*padding-bottom: 10px;*/
}
/* radio inputs on forms (and button) */
form input {
	height: 1.1rem;
	width: 1.1rem;
	margin-bottom: 1.5rem;
}
/* button on forms */
.button {
	background-color: #290;
	color: white;
	border: 1px solid #280;
	border-radius: .375rem;
	height: 1rem;
	width: 1rem;
	font-size: 1.25rem;
	text-shadow: 0 0 3px #130;
	padding: 1.125rem 2.25rem;
	height: auto;
	width: auto;
	margin-bottom: 0;
	font-weight: 700;
}
.button:hover {
	background-color: #3a1;
}
/* download button on report */
.downloadlink {
	padding-top: 0.2rem;
	text-align: center;
}
.downloadlink a {
	background-color: #290;
	color: white;
	border: 1px solid #280;
	border-radius: .375rem;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 0.75rem 1.5rem;
}
.downloadlink a:hover {
	background-color: #3a1;
}

/* text content */
.summary {
	font-weight: bold;
	border: 0.1rem solid #280;
	border-radius: .375rem;
	padding: 0 1rem;
}

/* general */
.line {
	border:0;
	border-top: 0.12rem dotted #280;
	margin: 1.5rem auto;
}
.fett {
	font-weight: bold;
}
.mittig {
	text-align: center;
}