table.minimalistBlack td, table.minimalistBlack th {
  border: 0px solid #000000;
  padding: 5px 4px;
}

/* Remove default bullets */
ul, #myUL {
  list-style-type: none;
  margin-left: 20px;
}

/* Remove margins and padding from the parent ul */
#myUL {
  margin: 0;
  padding: 0;
}

/* Style the caret/arrow */
.caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
  content: "\25B6";
  color: black;
  display: inline-block;
  
  
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
  transform: rotate(90deg);
  margin-right: 10px;
  margin-top: 20px;
  
}

/* Hide the nested list */
.nested {
  display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
  display: block;
}

A{
text-decoration: none;
color: #FF0000;
}

/* List Bold*/
li{
 font-weight: normal;
 
}

html {
	box-sizing: border-box;
}


::before,
::after {
	box-sizing: inherit;
}

body {
	margin: 10px auto;
	max-width: 90em;
	font-family: sans-serif;
	color: #333333;
}

header,
nav,
nav a,
main,
article,
section,
aside,
footer {
	border-radius: 0px 0.5em 0.5em;
	border: 1px solid;
	padding: 10px;
	margin: 10px;
}

header {
	background: #F1F3F4;
	border-color: #d5d5d5;
}

header img {
	#width: 13em;
	margin-top:-10px;
	margin-right: 50px;
	float: left;
}

nav {
	font-size: 0.91em;
	padding: 0;
	line-height: 1.5;
	background: #fffbf0;
	border-color: #e7c157;
}

nav ul {
	padding: 0;
}

nav li {
	list-style: none;
	margin: 0;
	padding: 0.5em;
	font-weight: bold;
}

nav a {
	display: ;
	padding: 0.1em 2px;
	font-weight: bold;
	text-decoration: none;
	background-color: #fgffff;
	color: #333;
	font-size: small;
}

nav ul a:hover,
nav ul a:active {
	color: #fffbf0;
	background-color: #dd0000;
	;
}


main {
	display: block;
	background: #c4ced3;
	border-color: #8a9da8;
	min-width: 16em;
	/* Mindestbreite (der Ueberschrift) verhindert Anzeigefehler in modernen Browsern */
}

section {
	background: #F1F3F4;
	border-color: slateblue;
}

article {
	background: #ffede0;
	border-color: #df6c20;
}

aside {
	background: #ebf5d7;
	border-color: #8db243;
}

footer {
	background: #e4ebf2;
	border-color: #8a9da8;
}

footer p {
	float: right;
	margin: 0;
}

@media (min-width: 32em) {
	/* mehrspaltiges Layout für breitere Viewports */
	
	nav {
		float: left;
		width: 15em;
	}
	main {
		margin-left: 15em;
	}
}