body {
	background-color: #FFCC66;
/*
	background-image: url("hohenzollernbr_klein.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: right bottom;
	background-image: url("image003.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: left top;
*/
	font-size: 20px;
	font-family: arial, sans-serif;
	margin-left:1em;
	width: 1010px;
	/* border: 1px solid blue; */ }

h1 {
	color: #990000;
	padding: 2px 20px 2px 1px;
	text-align: center;
	font-size: 300%;
	/* border: 1px solid green; */
}

h2 {
	color: #990000;
	padding: 2px 20px 2px 1px;
	text-align: center;
	font-size: 200%;
	/* border: 1px solid green; */
}

h3 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px; }

 h4 {
	color: #000066;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px; }
 
p {
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	font-family: arial, sans-serif;
 	/* border: 1px solid black; */ }

.center {
	text-align: center;
}

#info-box-01 { 
	position: absolute;
	top: 140px; left: 12em; width:40em;
	border: 1px solid red; }

#info-box-02 { 
	position: absolute;
	top: 360px; left: 12em; width:40em; height:15em;
	border: 1px solid yellow; }

#img-box-01 {
	position: absolute;
	top:-10px; left:10px; width:190px; height:230px;
	/* border: 1px solid yellow; */ }


/* Bilderblock definieren */
/*
http://wiki.selfhtml.org/wiki/CSS/Anwendung_und_Praxis/Bilder_pr%C3%A4sentieren#Der_Hover-Effekt
*/

figure,
figcaption {
	margin: 0;
	padding: 0;
}

figure.einzel5 {
	position: relative;
	display: inline-block;
	width: 17.9%;
}

figure.einzel6 {
	position: relative;
	display: inline-block;
}

figcaption {
	position: absolute;
	bottom: 0;
	padding: 10px;
	text-align: center;
	width: 100%;
	color: white;
	opacity: 0.5; }


/* NavigationsMenü definieren */
/*
http://wiki.selfhtml.org/wiki/CSS/Anwendung_und_Praxis/Men%C3%BCs#Men.C3.BCs_mit_mehreren_.28geschachtelten.29_Ebenen
*/
nav {
	background-color: silver;
	border: 1px solid black;
	border-radius: 10px 10px 0 0;
	height: 2em;
	padding: 0.8em;
	width: 50em;
}
nav ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

nav li {
	float: left;
	list-style: none;
	margin: 0.4;
	padding: 0.07em;
	position: relative;
}

nav ul ul {
	margin: 0 0 0 1em;
	padding: 0;
	width: 7em;
	border: none;
	position: absolute;
	top: 2.2em;
  	font: 0/0 serif; /* Unternavigation ausblenden */
  	z-index: -1;
}

nav ul li:hover ul {
  	font: inherit;
  	z-index: auto;   /*  Unternavigation einblenden */
}

nav ul ul li {
	margin: 0.1em 0;
	width: 7em;
}

nav a,
nav span {
	background-color: grey;
	border: 1px solid blue;
	border-radius: 10px 10px 0 0;
	box-shadow: 0px 5px 10px white inset;
	color: black;
	display: block;
	font-weight: bold;
	margin: 0.6em 0 0 0;
	padding: 0.4em;
	text-decoration: none;

	/* Breite den in li enthaltenen Elementen zuweisen */
	width: 8.9em;
	transition: all 0.5s;
}

nav a:focus,
nav a:hover,
nav span {
	color: blue;
	background-color: orange;
}

nav a:focus,
nav a:hover {
	margin-top: 0;
	padding: 1em 0.4em 0.4em;
}
