/*
Dummy CSS (without any design),
assuming there is a <div id="wegbereiter_nav">
 around the navigation
*/

#wegbereiter_nav {
	position: absolute;
	left: -35px;
}

#wegbereiter_nav ul {
/* display: inline;  <= Der Workaround */
	position: relative;/* fuer IE */
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-variant: small-caps;
	font-size: small;
	text-decoration: none;	
	/* list-style-position: inside; */
}
#wegbereiter_nav ul li {

	
}
#wegbereiter_nav ul li a {
	background: #e5b460;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 3px;
	padding-right: 3px;
	display: block;
	width: 129px;
}
#wegbereiter_nav ul li a:link,
#wegbereiter_nav ul li a:visited {
	text-decoration: none;
	color: #364c17;
	padding-bottom: 5px;
	padding-top: 5px;
}
#wegbereiter_nav ul li a:hover,
#wegbereiter_nav ul li a:active,
#wegbereiter_nav ul li a:focus {
}
/* highlighted current element */
#wegbereiter_nav ul li strong {
	background-color: #f2daaf;
	color: #9f0f3b;
	padding-bottom: 5px;
	padding-top: 5px; 
	padding-left: 3px;
	padding-right: 3px; 
	display: block;
	font-weight: normal;
	width: 129px; 
	
}

#wegbereiter_nav ul li em a {
	font-style: normal;
}
#wegbereiter_nav ul li strong em a {
	padding-bottom: 5px;
	padding-top: 5px; 
	font-style: normal;
	position:relative;
	-position: static;
	-margin-left:-10px;
	left: -3px;
	background-color: #f2daaf;
	display: block;

}
#wegbereiter_nav ul li strong a {
}

/* second level */
#wegbereiter_nav ul ul {
	list-style-type: none;
	position: relative;
	left:-40px;
	*left: 0px;
	*margin:0;
}
#wegbereiter_nav ul ul li {
}
#wegbereiter_nav ul ul li a {
	background: white;
	/* display: block; */
	width: 129px;
	
}
/* highlighted current element */
#wegbereiter_nav ul ul li strong {
	background: white;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 3px;
	padding-right: 3px; 
	display: block;
	font-weight: normal;
	width: 129px; 
	color: #663300;
	
}
/* and so on ... */
