﻿/* Layout Medium Screens (501 - 800px) */

header {
	height:200px;
	background:url(../img/buch_200_980.jpg) no-repeat 90% 0px;
}

header a.logo {
	width:115px;
	height:70px;
	top:20px;
	right:20px;
	background-image:url(../img/logo_buch_115_70.png);
}

nav {
	top:200px;
}

nav a {
	margin-right:20px;
}

.promo_container {
	padding:0px 20px 15px 20px;
}

.promo_container .promo {
	background-position:0px 0px;
}

.promo_container .promo .content {
	padding:100px 30px 0px 0px;
}

body {
	background-image:none;
}

/* Styling für das Navigationsmenü */

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: auto;
}

/* Menü horizontal ausrichten */
li {
	/* display: table-cell; */ 
	display: inline-block;
	vertical-align: top;
	width: 9em;
	margin: 5px;
	/* Mit Float kann auch ein horizontales Menü erstellet werden */
	float: left;
	text-align: center;
	font-size: 10px;
}

li a {
	text-decoration: none;
	color: white;
	display: block;
	background-color: maroon;/*#dedede; */	
	margin: 0;
	padding: 0.2em 0.6em;
	border: 1px solid #000;
}

li a:hover {
	background-color: #ef0000;
	color: #fff;
}

/* Das Menü auserhalb verstecken */
li ul {
	position: absolute;
	width: 15em;
	left: -999em;
}

/* Das Menü anzeigen/herholen wenn mit der Maus darüber gefahren wird */
li:hover ul {
	left: auto;
	margin-left: 0em;
	margin-top: 0;
	width: 10em,
}

/* Das Menü muss noch genau ausgerichter werden */
li:hover ul li:first-child {
	margin-top: 0;	
	margin-left: 0;
}

li:hover ul li {
	margin-top: -5px;	
	margin-left: 0;		
}

/* Ende Styling Navigationsmenü */

