// zu tun:
// Link-Farbe 3x grau
// Menü eigene Seite einbinden


<style type="text/css">

acronym {
    padding-bottom:0px;
    border-bottom: -1px dotted #8B8060;
    font-weight:bold;
    cursor:help; 
} 

body {
	font: 100% Verdana, Arial, Verdana, Helvetica, sans-serif;
	background-color: #000000;
	color: #FFFFFF;
//	padding:2%;
	// link color
}

div.main {
        background-color: #000000;
		link-color: #000034;
		color: #FFFFFF;
}

// Links
    a:link {color:#999999; }
    a:visited {color:#555555; }
    a:link {color:#999999; }
    

#oben {
//	background:url(../img/general.jpg) no-repeat center top; background-size: 80%;
	background: transparent; 
	padding: 6%;
	padding-bottom: 18%;
	padding-left: 34%;
	top: 8%;
	position: absolute;
	text-align: center;
}
#set_links {
	background: transparent; 
	padding-left: 0px;
	padding-top: 5%;
	width: 20%;
	height: 70%;
	position: absolute;
}
#set_main {
	background: transparent; 
	padding-left: 20%;
	width: 70%;
	height: 70%;
}

//* Dropdown
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
   // min-width: 160px;
   // box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   // z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
} 
</style>


