@charset "utf-8";
/* CSS Document */

#submenue {
	display:none;
	position:absolute;
	height:16px; /* vorher 16px / (21px) */
	width:698px;
	left:-1px;
	top:31px;
	background-color:#B8F0FE;
	cursor:default;
	border-top-width:1px;
	border-right-width:1px;
	border-bottom-width:1px;
	border-left-width:1px;
	border-top-style:solid;
	border-right-style:solid;
	border-bottom-style:solid;
	border-left-style:solid;
	border-right-color:#666666;
	border-bottom-color:#666666;
	border-left-color:#666666;
	padding:1px 0px 0px;
	margin:0px;
	z-index:9;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert */
}	
#submenue:hover {
	display:block;
}
#submenue > li {	/* Waagerechte Kapitel-Nummern (Listenelemente als Inline-Elemente), nur aktuelle li-Listenebene */
	display:inline;
	height:15px; /* vorher 15px / (23px) */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:0.8em;
	color:#000000;
	padding:1px 12px 2px;
	list-style-type:none; /* nicht notwendig (?) */
	vertical-align:top;
	background-color:#F2FDFF;
	margin:0px -1px -2px;
	/* cursor:default; */
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert */
}
#submenue > #hover_off {	/* Abstand links zum Text "Kapitel" vergrößern */
	font-size:0.8em;
	padding-left:86px;
	margin-left:0px;
	background-color:#B8F0FE;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert */
}
#submenue > #hover_off:hover {	/* Hover für Text "Kapitel" verhindern */
	background-color:#B8F0FE;
}
#submenue > li:hover {	/* Hover nur für aktuelle li-Listenebene (verhindert Vererbung!) */
	background-color:#FEEDDA;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert 09.04.17 */
}
#submenue li + ul {	/* Fenster für Anzeige des jeweiligen Kapitelinhaltes */
	position:absolute;	/* Browser "Opera" erwartet bei Angabe der absoluten Position */
	left:0px;			/* auch die Angabe der Positionsparameter (hier "left:0px;" und "top:16px;") */
	top:17px; /* vorher 17px / (26px) */
	display:none;
	height:auto;
	width:698px;
	padding:15px 0px;
	margin-top:-1px;
	margin-left:-1px;
	background-color:#F2FDFF;
	border-right-width:1px;
	border-bottom-width:1px;
	border-left-width:1px;
	border-right-style:solid;
	border-bottom-style:solid;
	border-left-style:solid;
	border-right-color:#666666;
	border-bottom-color:#666666;
	border-left-color:#666666;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#666666;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert */
}
#submenue li:hover + ul {	/* Mouseover über Kapitel-Nr. blendet dazugehörigen Kapitelinhalt ein */
	display:block;
	overflow:auto;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert 09.04.17 */
}
#submenue li + ul:hover {	/* Stellt sicher, dass Fenster für Kapitelinhalt nach Verlassen der Kapitel-Nr. angezeigt bleibt */
	display:block;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert 09.04.17 */
}
#submenue li + ul li {	/* kann entfallen, wenn normal.css verwendet wird */
	list-style-type:none;
	margin:0px 0px;
}
#submenue li + ul li a {	/* Entfernt Link-Farbe und Unterstreichung des <a>-Tags */ 
	color:#000000;
	text-decoration:none;
}
#submenue li + ul li h2:hover {	/* Mouseover auf Überschrift h2 bewirkt Änderung der Hintergrundfarbe */
	background-color:#FEEDDA;
}
#submenue li + ul li h3:hover {	/* Mouseover auf Überschrift h3 bewirkt Änderung der Hintergrundfarbe */
	background-color:#FEEDDA;
}

/********************************************************/
/* Formatierung der Kapitel und Abschnittsüberschriften */
/********************************************************/

#submenue h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10pt;
	color:#000000;
	font-weight:bold;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#000000;
	margin:0px 20px 5px;
	padding:0px 0px 2px;
}
#submenue h2 {
	position:static;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:9pt;
	color:#000000;
	font-weight:bold;
	padding:5px 10px 2px;
	margin:0px 10px;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert */
}
#submenue h3 {
	position:static;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:9pt;
	color:#000000;
	font-weight:normal;
	text-indent:26px;
	padding:2px 10px;
	margin:0px 10px;
	cursor: pointer; /* für iOS, damit hover bei Iphone und Ipad funktioniert */
}	

#site_hl_e_grundlagen:hover ul#submenue {
	display:block;
}