

/*fonts = Zeichensätze
 font-style: normal (italic = kursiv; bold = fett; )
 font-variant: normal (small-caps = nur Kleinbuchstaben; )
 font-variant-caps: normal | small-caps | all-small-caps  | petite-caps | all-petite-caps | unicase | titling-caps
 font-weight: normal (bold = fett; )
 font-size: 150%
 font-family: Arial; Trebuchet, Verdana
 color: red
*/
/*Text
 test-indent: (=einrücken in Pixel) 30px
 text-align: (=Ausrichtung rechts, mittig, links, Blocksatz) right, center, left, justify
 text-decoration: (Dekorieren, Effekte hinzufügen: unterstreichen, durchstreichen, überstreichen) underline, line-through, overline
 letter-spacing: (Laufweite in Pixel) 3px 
 text-transform: (Groß- und Kleinschreibung: Erster Buchstabe groß, alle groß, alle klein, keine Änderung) capitalize, uppercase, lowercase, none
 a:text-align: center
*/
/*Pseudoklassen
 a:link (unbesuchte Links) {color: blue}
 a:visited (besuchte links)  {color: red}
 a:active (gerade angeklickte links)  {color: red}
 a:hover (mit dem Mauszeiger überfahrene links)  {color: red}
*/

/* html, body {
	background:url(image/Hintergrund_Startseite.jpg);    background-size: auto;
	/* font: 80% Verdana, Arial, Helvetica, sans-serif;
	color: #ff0000; */
/* }
width: 900px;
*/

 
/* ------------------------------------------------------------ */
/* HEADER														*/
/* ------------------------------------------------------------ */

/*	#header {
	margin-left: 10em; /* 150px; -195px;  */
/*	margin-right: -10em; /*-195px;  */
/*	margin-top: 0em; 
	margin-bottom: 5em; 
	} 
*/


.Hintergrund {
	background-size: 50px; /*cover; auto;*/
	background-repeat: no-repeat;
}

html, header {
	margin: 0 auto;
	}
	
html, body {
	margin: 0 auto;
	}

.bild {
	max-width: 100%;
	height: auto;
}

.bild_2 {
	max-width: 100%;
	height: auto;
}

/*100% position: relative; max-width: 100%;*/

h2 {font-style: normal;  /*normal;*/
	font-variant: normal; 
	font-weight: bold; /* normal; */
	font-size: 100%; 
	font-family: Arial, Trebuchet, Verdana; 
	color: red; 
	background: yellow;
	padding: 0.5em 0.5em 0.5em 0.5em;
	border-width: thick;
	border-style: dotted;
	border-color: gold}
     /* Kommentartext */
 
 /* h3 für Erklärende Texte neben Images */
 h3 {font-style: normal;  /*normal;*/
	font-variant: normal; 
	font-weight: bold; /* normal; */
	font-size: 100%; 
	font-family: Arial, Trebuchet, Verdana; 
	horizont-align: middle  
 }
 
 a:link  {color: blue}
 a:visited {color: black}
 a:active {color: yellow}
 a:hover {color: blue}
 
 #Figurentheater {background: none; color: green}
 
 /*div.box id="Figurentheater"> */
 #figurentheaterbox {
	height:800px;
	width: 50;
	padding: 10px 10px 10px 10px;
	border: 2px solid black;
	background: orange}
 /*div.box id="Figurentheater"> */
 

/* ------------------------------------------------------------ */
/* Test Dynamische Navigation bar  ANFANG                       */
/* ------------------------------------------------------------ */
	
/* Main Navigation */

/* Test vom 23.09.2017 Main Navigation */









/* Alte Programmierung */
#nav {
    position: relative;
    width: auto; /*620px; */
    max-width:1024px; /* für 17 Zoll Desktopbildschirme*/
	min-width:320px; /* für Smartphones hochfomat*/    margin:0 auto;
    height:auto;
	margin-left: -40px; /* 0px; */
	margin-right: 40px;
    margin-top:0px;
    padding:0px;
	/*margin-bottom:7px; */
}
  
ul#navigation {
    margin:0px auto;
    position: relative; 
    float:left;
    border-left:1px solid #c4dbe7;
    border-right:1px solid #c4dbe7; 
}
  
ul#navigation li {
    display:inline;
    font-size:14px;
    font-weight:bold;
    margin:0;
    padding:0;
    float:left;
    position:relative;
    border-top:1px solid #c4dbe7;
    border-bottom:2px solid #c4dbe7;
}

ul#navigation li a {
    padding: 5px 20px;
    color:#616161;
    text-shadow:1px 1px 0px #fff;
    text-decoration:none;
    display:inline-block;
    border-right:1px solid #000000;
    border-left:1px solid #C2C2C2;
    border-top:1px solid #fff;
    background: #f5f5f5;
 
    -webkit-transition: color 0.2s linear, background 0.2s linear;
    -moz-transition: color 0.2s linear, background 0.2s linear;
	-o-transition: color 0.2s linear, background 0.2s linear;
    transition: color 0.2s linear, background 0.2s linear;
}

ul#navigation li a:hover {
    background:#f8f8f8;
    color:#282828;
}
 
ul#navigation li a.first {
    border-left: 0 none;
}
 
ul#navigation li a.last {
    border-right: 0 none;
}
 
ul#navigation li:hover > a {
    background:#fff;
}

/* Drop-Down Navigation */

ul#navigation li:hover > ul
{

/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */

    visibility:visible;
    opacity:1;
}
 
ul#navigation ul, ul#navigation ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;

	/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */

    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999;
    width:180px;
    background:#f8f8f8;
    box-shadow:1px 1px 3px #ccc;

	/* css3 transitions for smooth hover effect */

   -webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear;
    -o-transition:opacity 0.2s linear, visibility 0.2s linear;
    transition:opacity 0.2s linear, visibility 0.2s linear;
}
 
ul#navigation ul {
    top: 32px; /* 43px; */
    left: 1px;
}
 
ul#navigation ul li ul {
    top: 33px;		/* "0" Höhenunterschied des 2. Untermenüpunktes zum 1. Untermenü */
    left: 40px; /* "180" horizontaler Abstand zum 1. Untermenü width:180px; from above */
}
 
ul#navigation ul li {   /* Linien zwischen den Menüpunkten im 1. Untermenü" */
    clear:both;
    width:100%; /* width:100%; */
    border:0 none;
    border-bottom:1px solid #c9c9c9;
}
 
ul#navigation ul li a 
{
    background:none;
    padding:7px 15px;
    color: rgb(97,97,97); /* #616161; */
    text-shadow:1px 1px 0px #fff;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:150px;    /*width:150px;*/
}


	/* ------------------------------------------------------------ */
	/* Test Dynamische Navigation bar  ENDE							*/
	/* -----------------------------------------------------------  */	

	
	
	
	
	/* ------------------------------------------------------------ */
	/* Navigation bar												*/
	/* ------------------------------------------------------------ */
	

	/* Main Menu */

	#header ul
	{
	clear:left;
	float:left;
	position:relative;
	top: 2em; /* 18px */
	left:0; /* 50%; */
	text-align:left;          /*center; */
	padding:0em;
	margin:0em;
	z-index: 2;
	}

	#header ul li
	{
	list-style: none outside none;
	float:left;
	position:relative;
 	right:50%;
	min-width: 7em;
	width: 7em;
	text-align: center;
	font-weight: bold;
	font-size: 0.9em;
	border: 1px solid #000000;
	margin: 0em 0.15em 0em 0.15em; /*Abstand der Auswahlkästen*/
	padding: 0;
	}

	#header ul li a 
	{
	display:block;
	background: rgb(198,211,239); /*#c6d3ef;*/
	text-decoration: none;
	color: #039;
	padding: 0.15em 0em 0.15em 0em;
	}

	#header ul li.selected a 
	{
	background: rgb(253,169,42); /* #fda92a; */
	padding: 0.15em 0em 0.15em 0em;
	color: #039;
	}
	
/*  
	#header ul li.selected 
	{
	border-bottom: 1px solid #fda92a;
	}

	#header ul li.selected a 
	{
	background: #fda92a;
	padding: 0.15em 0em 0.15em 0em;
	color: #039;
	}
*/	
	
  
 
 body {
	 background-color: rgb(255,221,171); /*orange*/
	 
	 margin-bottom:7px; 
        max-width:1024px; /* für 17 Zoll Desltopbildschirme*/
		min-width:320px; /* für Smartphones hochfomat*/
        height:auto;
 }
/**/ 
.normal {
	white-space: normal;
}

.pre {
	white-space: pre;
	font-family: monospace;
}

.pre-wrap {
	white-space: pre-wrap;
}

.pre-line {
	white-space: pre-line;
}

.nowrap {
	white-space: nowrap;
}
/*	 margin-top:50px; 
	 margin-right:400px; 
	 margin-bottom:10px; 
	 margin-left:50px} */
 
 p {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
	 