/************************************************/
/* (nested) lists: */
/************************************************/
/* 
 * for any <ul>:
 */
#navbarpos ul {
	list-style-type:none;
}

/*
 * positining arguments for the ROOT list element.
 */
#navbarpos ul#navlistroot {
	padding:2px 17px 2px 17px;
	margin-left:-10px;
/*	padding:2px 17px 2px 0px;
	margin-left:8px;*/
}

/*
 * Any nested <ul> needs a background and a border.
 * Furthermore, it needs indentation:
 */
#navbarpos ul ul { /*bezieht sich auf das PopUp-Menü*/
	/*
	 * margin:0px;
	 * padding:0px;
	 */
  	padding-left:-50px;
  	padding-right:0px;
}

#navbarpos a { /*bezieht sich auf die Links im Linkmenü*/
    font-family:"bitstream vera sans",sans-serif;
    text-decoration:none;
	font-weight:bold;
	font-size:10pt;
	color:white;
}

/* This here provides *only* the positioning styles
 * for the <li> elements.
 * They should have the same width - and they *need* position!=static
 * such that the position:absolute of nested <ul> elements is relative to the <li>-parent.  */
 
#navbarpos li { /*bezieht sich auf die Schrift im Linkmenü, die kein Link ist*/
	list-style-type:none;
	list-style-image:none;
	margin:0px;
	padding:2px;
	margin-left:2px;
	padding-left:0px;
	color:white;
}

/*
 * Style for a simple marker at the right end which indicates "here exists a sub-list".
 * To be used like
 * <ul>
 * <li><div class="expandable"></div>
 * 		<ul>
 * 			....
 * 		</ul>
 * </ul>
 */
#navbarpos li .expandable {
}

#navbarpos li#mark {
	display:list-item;
	/*	list-style-image:url(../img/pfeil2.gif); */
}

/* do not display sub-lists per default: save space */
#navbarpos li ul {
	display:none;
}
#navbarpos li ul.opened {
	display:block;
	margin-left:10px;
	padding-left:10px;
}


