body {
/*	background: #333; */
}
/*Strip the ul of padding and list styling*/
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative; /*absolute*/
	left: 0px;
	top: 0px; /*668px*/
}
/*Create a horizontal list with spacing*/
nav li {
	display: inline-block;
	float: left;
	margin-right: 1px;
}
/*Style for menu links*/
nav li a {
	display: block;
	min-width: 156px; /* 140*/
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #333;
	text-decoration: none;
}
/*Hover state for top level links*/
nav li:hover a {
	background: #ff6600; /* mittelgrau 666 orange ff6600 neu 19c589 */
}
/*Style for dropdown links*/
nav li:hover ul a {
	background: #ccc; /*f3f3f3*/
	color: #333; /*2f3036*/
	height: 40px;
	line-height: 40px;
}
/*Hover state for dropdown links*/
nav li:hover ul a:hover {
	background: #ff6600; /*orange bei hover untermenü*/
	color: #fff;
}
/*Hide dropdown links until they are needed*/
nav li ul {
	display: none;
}
/*Make dropdown links vertical*/
nav li ul li {
	display: block;
	float: none;
}
/*Prevent text wrapping*/
nav li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}
/*Display the dropdown on hover*/
nav ul li a:hover + .hidden, .hidden:hover {
	display: block;
}
/*Style 'show menu' label button and hide it by default*/
 .show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
/*	font-size: 1.5em;*/
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	background: #333; /* Original grün: #19c589 */
	text-align: left; /* Original: center */
	padding: 10px 0;
	display: none;
	text-indent: 1em; /* im Original gar nicht drin */
}
/*Hide checkbox*/
 input[type=checkbox] {
	display: none;
	-webkit-appearance: none;
}
/*Show menu when invisible checkbox is checked*/
 input[type=checkbox]:checked ~ #menu {
	display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 1000px) {
/*Make dropdown links appear inline*/
nav ul {
	position: static;
	display: none;
}
/*Create vertical spacing*/
nav li {
	margin-bottom: 1px;
}
/*Make all menu links full width*/
nav ul li, li a {
	width: 100%;
}
/*Display 'show menu' link*/
 .show-menu {
	display: block;
}
}
#content {
	clear: both;
	float: left;
	margin-left: 2.5%;
	width: 95%;
	height: auto;
	display: block;
	background: #fff;
	border: 2px;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0%;
	width: 98%;
	height: auto;
	display: block;
	background-color: #ccc;
	text-indent: 2.5%;
}
#logo {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	margin-top: 0px; /*manuell gesetzt damit das Logo nicht so weit oben dran klebt */
}
#content table tr td {
 color: #000;
}
