@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: Positionierung und Grösse

 *******************************************************************************/

/* Positionierung der gesamten Navigation */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: 432px;
	height:23px;
}
/* IE Hack für die Aktive Menuleiste http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Positionierung des Hauptmenus Level 1 */
ul.MenuBarHorizontal li
{
	margin-right: 5px;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 139px;
	float: left;
}
/* Ein- und Ausblenden der Untermenus */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width:134px;
	position: absolute;
	left: -1000em;
}
/* Positionierung des Untermenu Level 2  */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto; /* mit auto wird das Untermenu Level 2 direkt unter dem Hauptmenu Level 1 positioniert */
}
/* Styles des Untermenüs */
ul.MenuBarHorizontal ul li
{
	width: 139px;  /* Breite des Untermenü Containers */
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: Gestaltung der Navigationen, Farben, Grösse, Ränder, Hintergründe

 *******************************************************************************/

/* Untermenu Container Hintergrund */
ul.MenuBarHorizontal ul
{
background-color:#252A2E; /* IE 6.0 Hack */
}

/* Hauptmenu Style Level 1 */
ul.MenuBarHorizontal a
{
	display: block;
	font-size:12px;
	font-weight:bold;
	cursor: pointer;
	background-color: #0495d6;
	padding-left: 7px;
	padding-top:4px;
	padding-bottom:5px;
	padding-right:3px;
	color: #ffffff;
	text-decoration: none;
}
/* Untermenu Style Level 2 */
ul.MenuBarHorizontal2 a
{
	display: block;
	font-size:11px;
	font-weight:normal;
	cursor: pointer;
	background-color:#FFFFFF;
	padding-left: 6px;
	padding-top:4px;
	padding-bottom:5px;
	color: #232a30;
	text-decoration: none;
	border-bottom:1px solid #0495d6;
	border-left:1px solid #0495d6;
	border-right:1px solid #0495d6;
}
/* Hauptmenu Style Level 1 hover */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
background-image:url(../images/navigation/hauptnavigation-innenseite-hover.gif);
}

/* Untermenu Style Level 2 hover */
ul.MenuBarHorizontal2 a.MenuBarItemSubmenu2:Hover, ul.MenuBarHorizontal2 a.MenuBarSubmenu2Visible
{
background-color:#e5e5e5;
}


/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}





















