/* Sitemap */
.boxmap1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.boxmap2 {
	align-self: center;
}
.level1 {
	list-style-type: circle;
	margin: 0;
	padding: 5;
  	font-size: 0.8rem;
	font-weight: normal;
	font-style: normal;

}
.level2 {
    list-style-type: square;
	margin: 0;
	padding: 10;
  	font-size: 0.8rem;
	font-weight: normal;
	font-style: normal;
}
.level3 {
	list-style-type: disc;
	margin: 0;
	padding: 15;
  	font-size: 0.8rem;
	font-weight: normal;
	font-style: normal;
}

/* Listen (Navigation) */
/* z_index: 999 -> oberste Ebene, überlappend -> für Liste ohne Verschieben */
.navbar { 
	z-index: 999;
	position: relative;
	background-color: transparent;
	color: black;
	text-align: center;
	font-size: 0.8rem;
	font-weight: normal;
	font-style: normal;
}
.navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.navbar li {
	display: inline-block;
}
.navbar li a:hover {
	padding: 2px;
	text-decoration: none;
}
.navbar li a:hover {
	background-color: greenyellow;
}
/* dropdown menu */
.navbar ul ul {
	display: none;
	position: absolute;
	list-style-type: none;
	top: 100%;
}
.navbar ul ul li {
	display: block;
}
.navbar li:hover ul {
	display: block;
}
.navbar ul ul li a:hover {
	background-color: greenyellow;
}