/* www.modulpark.ch, www.infofactory.ch
   Funktion 1: Gestaltung der Menu-Ausgabe in individuellen Layouts
	Funktion 2: Moeglichkeit ind. Classes zu definieren (siehe Handbuch Modulpark)
*/

/* Die Classes fr die menuEarstellung sind wie folgt aufgebaut:
menuB_e1_active 

menu = Bezeichnung fr alle Classes fr die menuEarstellung
A = Name der Menuart 
e1 = Ebene (e1 bis e3)
active = Unterscheidung ob aktiv oder nicht. Fllt bei Zustand nicht aktiv weg.
*/

/* Ausgabe fuer menuA, Ebene 1 - 3 */
.menuA_e1, a.menuA_e1:link {
	color: #989898;
	font-size: 16px;
	line-height: 22px;
	font-family: Verdana, sans-serif;
	text-decoration: none;
 }

a.menuA_e1:visited {color: #989898; text-decoration: none;}	
a.menuA_e1:hover {color: #FFFFFF; text-decoration: none;}		

/* Ausgabe fuer menuA, aktive Ebene 1 - 3   (_active) */
.menuA_e1_active, a.menuA_e1_active:link {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 22px;
	font-family: Verdana,  sans-serif;
	text-decoration: none;
 }
 
a.menuA_e1_active:visited {color: #FFFFFF; text-decoration: none;}	
a.menuA_e1_active:hover {color: #FFFFFF; text-decoration: none;}


/* Layered menu styles */
/* Menu Level 1 */
/* The whole menu first level area */
.menuLevel1General {
	cursor: default;
	background-color:#010101;
	/*border:0.1cm solid black;*/
}
/* Normal */
.menuLevel1 {
	color: #989898;
	font-size: 16px;
	line-height: 22px;
	font-family: Verdana, sans-serif;
	text-decoration: none;
	letter-spacing: 0.5px;
}
/* Mouse over */
.menuLevel1Over {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 22px;
	font-family: Verdana, sans-serif;
	text-decoration: none;
	letter-spacing: 0.5px;
}
/* Menu Level 2 */
/* The whole menu second level area */
.menuLevel2General {
	cursor: default;
	background-color:#000000;
	font-family:Verdana;
	font-size:14px;
	line-height:18px;
	z-index:100;
	color: #989898;
	border:1px solid #989898;
	width:100%;
	position:relative;
	left:-5px;
}
/* Normal menu entries */
/* Normal */
.menuLevel2 {
	text-decoration: none;
	width:100%;
}
/* Mouse over */
.menuLevel2Over { 
	color: #FFFFFF;
	text-decoration: none;
	width:100%;
}

/* Menu Level 3 */
/* The whole menu third level area */
.menuLevel3General {
	cursor: default;
	background-color:#000000;
	font:normal 14px Verdana;
	line-height:18px;
	z-index:100;
	color: #989898;
	border:1px solid #989898;
	position:relative;
	left:-6px;
	/*border:0.1cm solid black;*/
}
/* Normal menu entries */
/* Normal */
.menuLevel3 {
	text-decoration: none;
	width:100%;
}
/* Mouse over */
.menuLevel3Over { 
	color: #FFFFFF;
	text-decoration: none;
	width:100%;
}


