
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.layout-gesamt {
	display: table;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px) {
	.layout-gesamt {
		width: 100%;
	}
}
@media (min-width: 768px) and (max-width: 1199px) {
	.layout-gesamt {
		width: 748px;
	}
}
@media (min-width: 1200px) and (max-width: 1399px) {
	.layout-gesamt {
		width: 1180px;
	}
}
@media (min-width: 1400px) {
	.layout-gesamt {
		width: 1380px;
	}
}
.layout-kopfzeile {
	display: table-row;
}

.layout-separatorzeile {
	display: table-row;
	height: 10px;
	background-color: #000000;
}

.layout-hauptbereichzeile {
	display: table-row;
	height: 100%;
}
.layout-hauptbereich {
	display: table;
	height: 100%;
	width: 100%;
}
.layout-hauptbereich-innen {
	display: table-row;
	height: 100%;
}

.navigationsleiste {
	display: table-cell;
	position: relative;
	background-color: #dddddd;
}

.seitenleistebereich {
	height: 100%;
	padding: 25px;
	padding-top: 40px;
	vertical-align: top;

	background-color: #f0f0f0;
}
@media (max-width: 1199px) {
	.seitenleistebereich {
		width: 0;
		display: none;
	}
}
@media (min-width: 1200px) {
	.seitenleistebereich {
		width: 25%;
		display: table-cell;
	}
}

.inhaltsbereich {
	display: table-cell;
	height: 100%;
	padding: 25px;
	padding-top: 40px;
	vertical-align: top;
	
	border-right-width: 1px;
	border-right-color: #f0f0f0;
	border-right-style: solid;
	background-color: #ffffff;
}
/*
	background-image: url(images/main.jpg);
	background-repeat: no-repeat;
	background-position: center;
*/
@media (max-width: 1199px) {
	.inhaltsbereich {
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.inhaltsbereich {
		width: 75%;
	}
}

.seitenleiste {
	display: none;
}
.seitenleiste-aktiviert {
	display: block;
}	

.inhalt {
	display: none;
}
.inhalt-aktiviert {
	display: block;
}	
