/* Navbar */
#navbar li:first-child {
	margin-left: 353px; /* Normaler Browser 17px Scrollbar; Normales Margin: 260px*/
}

/* Information panel */
.information-panel {
	position: fixed;
}

/* Left navigation */ 
.leftNavigation {
	min-height: 310px;
}

#leftNavigation ul {
	padding: 0;
	margin-top: 20px;	
	width: 95%;
	height: 100%;
	list-style-type: none;
	overflow-y: auto;
}

#leftNavigation li {
	border: 0px;
	border-top: 1px;
	border-color: white;
	border-style: solid;
}

#leftNavigation li a {
	text-decoration: none; 
	font-size: 18px;
	color: white;
	cursor: pointer;
	display: inline-block;
	width: 100%;
	background-color: #000099;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	border-width: 0px;
	border-top-width: 10px;
	border-bottom-width: 10px;
	border-style: solid;
	border-color: #000099;
}

#leftNavigation li a:hover {
	background-color: blue;
	border-color: blue;
}

/* Dropdown (left navigation) */
.dropbtn {
	background-color: #000099;
	border-color: #000099;
	border-width: 0px;
	border-bottom-width: 10px;
	border-style: solid;
	border-top-width: 10px;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	height: 100%;
	line-height: 20px;
	list-style-type: none;
	overflow-y: auto;
	padding-bottom: 5px;
	padding-top: 5px;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.dropbtn:hover, .dropbtn:focus {
	background-color: blue;
	border-color: blue;
}

.dropdown {
	border: 0px;
	border-top: 1px;
	border-color: white;
	border-style: solid;
}

.dropdown a:hover {
	background-color: blue;
}

.dropdown-content {
	background-color: #000099;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	display: none;
	margin-left: 20px;
	overflow: auto;
	position: relative;
	width: 227px;
	width: calc(95% - 20px);
	z-index: 1;
}

.dropdown-content a {
	border: 0px;
	border-color: white;
	border-bottom: 1px;
	border-style: solid;
	color: white;
	cursor: pointer;
	display: block;
	padding-bottom: 15px;
	padding-top: 15px;
	text-align: center;
	text-decoration: none;
}

.dropdown-content a:first-child {
	border-top: 1px;
	border-style: solid;
}

.dropdown-content a:last-child {
	border-bottom: 0px;
}

.show {
	display: block;
}

/* PhotoMap */
.photoMapImgParent, .photoMapImgVisible, .photoMapImgInvisible {
	height: auto;
	max-width: 100%;
	margin: 0px;
	margin-bottom: 5px;
	margin-top: 5px;
	position: relative;
	width: auto\9; /* IE8 */
	z-index: 1;
}

.photoMapImgVisible, .photoMapImgInvisible {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
}

.photoMapImgVisible {
	visibility: visible;
}

.photoMapImgInvisible {
	visibility: hidden;
}

/* Dynamic content technical (PhotoMap) */
.dynamicContentShow {
	display: block;
}

.dynamicContentHide {
	display: none;
}

/* Dynamic content (PhotoMap) */
.imageHolder {
	width: 590px;
	height: 100%;
	display: inline-block;
}

.imageHolder img {
	width: 100%;
	height: 100%;
}

.imageSequence {
	width: 100%;
	height: 300px;
	background-color: #f5f5f5;
	margin-top: 30px;
	margin-bottom: 30px; 
	display: inline-block;
}

.textHolder {
	position: relative;
	float: right;
	display: inline-block;
	width: 320px;
	top: 15%;
	margin-right: 5px;
}

.textHolder p {
	clear: both;
	text-align: center;
	font-family: "Arial";
	font-size: 18px;
	color: #442424;
	margin: auto;
}

/* Content */
.content {
	max-width: 1200px;
	font-family: "Arial";
	height: 100%;
}

.rightContainer {
	float: right; 
	width: 920px; 
	height: 100%;
}

h1 {
	margin-top: 30px;
	display: block;
	overflow: visible;
}

/* Screen resolutions */
@media only screen and (max-width: 1400px) {

	/* Navbar */
	#navbar li:first-child {
		margin-left: 0px;
	}
}

@media only screen and (max-width: 1200px) {

	/* Information panel */
	.information-panel {
		position: relative;
		float: none;
		display: block;
		margin: 0 auto;
	}

	#logo {
		margin-bottom: 20px;
	}

	/* Left Navigation */
	#leftNavigation ul {
		width: 100%;
	}

	/* Content */
	.rightContainer {
		float: none;
		margin: auto;
	}

	hr {
		display: none;
	}
}

@media only screen and (max-width: 950px) {

	/* Information panel */
	.information-panel {
		position: relative;
		float: none;
		display: block;
		margin: 0 auto;
	}

	#logo {
		margin-bottom: 20px;
	}

	/* Left navigation */
	#leftNavigation ul {
		width: 100%;
	}

	/* Dynamic content (PhotoMap) */
	.imageHolder {
		width: 100%;
		height: auto;
		display: inline-block;
	}

	.imageHolder img {
		width: 100%;
		height: auto;
	}

	.imageSequence {
		display: inline-block;
		height: auto;
	}

	.textHolder {
		position: relative;
		top: 0;
		float: none;
		display: inline-block;
		width: 100%;
		padding-bottom: 15px;
		background-color: #f5f5f5;
	}

	.textHolder p {
		width: 100%;
		display: inline-block;
		clear: both;
		text-align: center;
		font-family: "Arial";
		font-size: 18px;
		color: #442424;
		margin: auto;
	}

	/* Content */
	.content {
		width: 90%;
		padding-top: 0px;
	}

	.rightContainer {
		width: 100%;
		margin: auto;
	}

	h1 {
		overflow: visible;
		/*margin-top: 250px; Auskommentiert da Karte nun unten*/
	}
}

@media only screen and (max-width: 850px) {
	
	/* Content */
	h1 {
		/*margin-top: 200px; Auskommentiert da Karte nun unten*/
	}
}

@media only screen and (max-width: 750px) {

	/* Content */
	h1 {
		/*margin-top: 150px; Auskommentiert da Karte nun unten*/
	}
}

@media only screen and (max-width: 650px) {

	/* Content */
	h1 {
		margin-top: 20px;
	}
}
/*
@media only screen and (max-width: 550px) {
}

@media only screen and (max-width: 350px) {
}*/