#wrapper {
	margin-right: auto;
	margin-left: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Seite 960px groß, mittig, Text mittig ausrichtern, Schriftart */
body {
	max-width: 960px;
	margin: auto;
	text-align: center;
	font-family: 'Inconsolata', monospace;
	font-size: 1em;
}

/*Andere Gerätegröße */
@media only screen and (max-width: 479px) {
	body {
		width: 320px;
		font-size:0.5em;
	}
}

@media only screen and (max-height: 350px) {
	body {
		width: 480px;
		font-size:0.5em;
	}
}

/* Textgröße, Höhe Hauptseite */
section div {
	font-size: 1.5em;
	text-align: left;
}

section div a {
	text-decoration: none;
	color: #74a58d;
}

section div a:hover {
	text-decoration: none;
	color: black;
}

/* index.php zentrieren */
section div.center {
	text-align: center;
}
section div.center a {
	text-decoration: none;
	color: black;
}
section div.center a:hover {
	color: #74a58d;
}

/* impressum.php Textgröße */
section div.impressum {
	font-size: 1em;
}

/* Tabllen formatieren */
section table {
	font-size: 1em;
	text-align: left;
}

/* Zellen formatieren */
section td {
	padding: 10px;
}

/* Text klein, Link nicht unterstreichen */
footer p a {
	font-size: 0.75em;
	color: black;
	text-decoration: none;
}

/* Dropdown Menu */
nav {
	font-size: 1.25em;
}
/* Dropdown Menu */
nav ul {
	/*font-size: 1.25em;*/
	list-style: none;
	padding: 0;
	margin: 0;
	background: black;
}

nav ul li {
	/*font-size: 0.75em;*/
	display: block;
	position: relative;
	float: left;
	background: black;
}

/* This hides the dropdowns */
nav li ul {
	display: none; }

nav ul li a {
	display: block;
	padding: 15px;
	text-decoration: none;
	white-space: nowrap;
	color: #fff;
}

nav ul li a.symbol {
	padding: 2px;
}

/* Andere Gerätegröße */
@media only screen and (max-width: 479px) {
	nav ul li a img.resize {
		height: 38px;
		width: 38px;
	}
}

@media only screen and (max-height: 350px) {
	nav ul li a img.resize {
		height: 38px;
		width: 38px;
	}
}

nav ul li a:hover { background: #74a58d; }

/* Display the dropdown */
nav li:hover > ul {
	display: block;
	position: absolute;
}

nav li:hover li { float: none; }

nav li:hover a { background: black; }

nav li:hover li a:hover { background: #74a58d; }

nav.main-navigation li ul li { border-top: 0; }

/* Simple clearfix */
nav ul:before,
nav ul:after {
	content: " "; /* 1 */
	display: table; /* 2 */
}

nav ul:after { clear: both; }
