/* --------------------------------------------------------------------------- */
/*  Copyright 2009 by Object dynamiX AG                                        */
/*                                                                             */
/*  Beschreibung: Beinhaltet alle Klassen und IDs für die Hauptnavigation      */
/*                                                                             */
/* --------------------------------------------------------------------------- */


#nav, #nav ul { /* all lists */
	margin-left: 0px;
	
	
	/*padding: 0;
	margin: 0;
	list-style: none;
	border: none;*/
}

#nav li { /* all list items */
	width: 146px;
	height:20px;
	
	/*position : relative;*/
	/*line-height : 14px;*/
	/*margin-bottom : -1px;*/
}

#nav li ul { /* second-level lists (ausblenden, damit sie nur bei hover angezeigt werden */
	display: none;
	margin-left: 146px;
	margin-top: -20px;
	border: 1px solid #a9a9a9;
	background: #f4f4f4;
	width: 146px;
	
	/*position : absolute;*/
	/* left: -999em; */
	/* top: 999em; */
}

#nav li ul ul { /* third-and-above-level lists (ausblenden, damit sie nur beo hover angezeigt werden) */
	display: none;
	
	/*left: -999em;*/
	/*top: 999em;*/
	/*height:0px;*/
}

#nav li a {
	width: 140px;
	display : block;
	color : black;
	font-weight : normal;
	text-decoration : none;
	padding: 3px;
}

.navParent{
	background: url('../icons/menu_bullet.gif') no-repeat right;
}

.navParent:hover{
	background: #cccccc url('../icons/menu_bullet.gif') no-repeat right;

}

#nav li a:hover {
	color : white;
	
/*	padding:0px;
	margin:0px;*/
}
	
/*hoverstaystuff*/
#nav li:hover, #nav li.sfhover{
	background: #cccccc;

	
/*	padding:0px;
	margin:0px;*/
	/*width: 116px;*/
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	/* (ausblenden, damit sie nur beo hover angezeigt werden) */
	display: none;
	
	/*left: -999em;*/
	/*height:0px;*/
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul
 { /* lists nested under hovered list items */
	/* (jetzt einblenden, damit sie bei hover angezeigt werden) */
	display: block;
	/*position :absolute; */
}


.navSelectedNode
{
	background: #e5e5e5;
	/*position: absolute;*/
}

.navExpandedNode{
	background: #e5e5e5;
	/*position: absolute;*/
}

.navExpandedNode>a{
	/*color: #eb9e2f;*/
}

/* /Hover Navi --------------------------------------------------------------------------<*/

