/* positioniert ein element auf der rechten seite des monitors */
.fright {
	float: right;
}
/* positioniert ein element auf der linken seite des monitors */
.fleft {
	float: left;
}

#helperIconDummy {
	height: 120px;
	width: 250px;
	background-color: yellow;
}

#container {
	width: 90%;
	margin: 5em auto;
	max-width: 1100px;
	min-width: 300px;
}

#header {
	padding-bottom: 1em;
}
/* Entferne das typischen Listen (ul & ol) Layout */
ul,ol {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}

footer {
	float: left;
	width: 100%;
	height: 60px; /* Height of the footer */
	/* 	background: #6cf; */
	border-top: 1px solid #DDD;
	margin-bottom: 1em;
}

#footerlinks {
	padding-top: 1em;
}

footer li {
	clear: right;
	float: left;
	padding-right: 1em;
}

header {
	float: left;
	clear: left;
	margin-bottom: 1em;
	width: 100%;
	border-bottom: 1px solid #999;
	width: 100%
}

content {
	float: left;
	clear: left;
	width: 100%;
	padding-bottom: 2em;
}

header nav {
	margin-bottom: 1em;
}

nav a {
	text-decoration: none;
	color: #555;
}

/* Darstellung der Navigations (ul) punkte nebeneinander */
header nav ul {
	clear: right;
	float: left;
	padding-right: 1em;
}

#leftContent {
	width: 70%;
}

#rightContent {
	width: 30%;
}

header nav li {
	padding-left: 1em;
	border-left: 1px solid #DDD;
	padding-bottom: 5px;
	padding-top: 5px;
}

/* einzeilige menüdarstellung nur auf kleinen displays */
@media only screen and (max-width: 48em) {
	header nav li {
		clear: right;
		float: left;
		padding-right: 1em;
	}
}