﻿/* Layout (global rules for all sizes) */

body {
	margin:0;
	padding:0;
}

header a.logo {
	display:block;
	position:absolute;
	background-position: 0px 0px;
	background-repeat:no-repeat;
}

/*Dieses nav ist für die Titelleiste (Home usw...) */
nav {
	width:100%;
	display:block;
	position:absolute;
	background-color:#800000;    
}

/*Layout Large Screens*/

header {
	height:275px;
	background:url(../img/buch_275_980.jpg) no-repeat right 0px;
}

header a.logo {
	width:150px;
	height:85px;
	top:28px;
	left:30px;
	background-image:url(../img/logo_buch.png);
}

/* Der Willkommenstext steht hier */
article {
	color:white;
	padding:60px 20px 10px 20px;
}

.promo_container {
	padding:0px 0px 15px 20px;
}

.promo_container .promo {
	width:33%;
	float:left;
	background-position:0px 3px;
}

.promo_container .promo .content {
	padding:0px 30px 0px 100px;
}

nav {
	top:275px;
}

/*nav a {
	margin:12px 0px 10px 20px;
} */

@media screen and (max-width:1000px) {
	footer { padding-left:20px; }
}


/* 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: 10em;
	margin: 5px;
	/* Mit Float kann auch ein horizontales Menü erstellet werden */
	float: left;
	text-align: center;
	font-size: 12px;
}

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ü */
