/*
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
*/

body {
	background-image: url(/images/background.jpg);
	background-repeat: no-repeat;
	background-color: black;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.Top {
	height: 140px;
	width: 1200px;
	margin: 100px auto;
	background-image: url(/images/top.jpg);
	border-style: solid;
	border-color: black;
}

.TopHeader {
	color: LightGrey;
	font-size: 30px;
}

.Header {
	color: WhiteSmoke;
	font-size: 30px;
}


/*****************Menüleiste****************/
ul {
    list-style-type: none;
    margin-top: 0px;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #9d09bd;
}
/*****************Ende Menüleiste**************/


/**********************Dropdown***********/
.container {
    overflow: hidden;
    background-color: #000;
    font-family: Arial;
}

.container a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
}

.container a:hover, .dropdown:hover .dropbtn {
    background-color: 9d09bd;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #9d09bd;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/***********************Ende Dropdown*****************/

.Main {
	min-height: 70px;
	width: 1140px;
	margin: -80px auto;
	background-color: black;
	border-style: solid;
	border-color: black;
	color: WhiteSmoke;
	padding: 30px;
}