ul.Menu{
	width: 986px;                 /* sets the size of the menu blocks */
	padding-left: 0px;            /* stops the usual indent from ul */
	cursor: default;             /* gives an arrow cursor */
	margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
	text-align:right;
	z-index: 10;
}
ul.Menu li {
	list-style:none;
	margin:0px 0px 0px 17px;
	padding:0;  
	float:left;
	position: relative;
	z-index: 10;
	width:70px;
	text-align:center;

}
ul.Menu li a {
	color: #000;
	display: block; 
	width: 100%;
	text-decoration: none;
	z-index: 10;
}
ul.Menu li a div {
	padding:0;
	z-index:10; 
	margin:0;
}
/* IE */
ul.Menu li a:hover, ul.Menu li a.CSStoHighLink { 
	color:#FFFFFF;
	display: block;
	z-index:10;
}
ul.Menu li:hover, ul.Menu li.CSStoHighlight {
	  background-color: #862931;      /* gives the active menu items a yellow background */
	  color: #FFFFFF;                 /* makes the active menu item text black */
	  z-index: 10;
	 background-image:url(/media/templatedata/pfeil.gif);
	background-repeat: no-repeat;
	background-position: bottom center;
}
/* ff */
ul.Menu li:hover > a { 
	color:#FFFFFF;
	display: block;
	z-index:10;
} /* supports links in branch headings - should not be display: block; */

/******* U n t e r   S E I T E N   ***************/
ul.Menu li ul {
  width: 100%;                 /* sets the size of the menu blocks */
 			       /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  z-index:100;
  text-align:left;
}
ul.Menu li ul li ul {
  width: 190px;                 
  text-align:left;
  z-index:100;

}
ul.Menu li ul li ul li{
  width: 190px;                 
  text-align:left;
  z-index:100;
}
ul.Menu li ul li {
   width:130px;
   padding:0;
   margin:0;
}
/*st*/
ul.Menu li ul li a {
	color: #FFFFFF;
	background-color:#862931;
}
ul.Menu li ul li a div {
	padding:5px;
	background-image: none;
	background-color:#862931;
}
/*die Left steels bestimmt wie weit die unterseiten von dem Vater menü stehen sollen. Die Width sollte gleich wie des Left Steels.*/
ul.Menu li >ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	  display: none;               /* hides child menu blocks - one of the most important declarations */
	  position: absolute;          /* make child blocks hover without leaving space for them */
	  
	  top: 0px;                    /* position slightly lower than the parent menu item */
	  left: 0px;                  /* this must not be more than the width of the parent block, or the mouse will
					  have to move off the element to move between blocks, and the menu will close */
	  text-align:left;
	  margin:26px 0px 0px 0px;
	  z-index:100;
	  width:600px;
	  padding-top:10px;
	  height:17px;
	  background-color:#862931;
}
/*die Left steels bestimmt wie weit die unterseiten von dem Vater menü stehen sollen. Die Width sollte gleich wie des Left Steels.*/
*html ul.Menu li ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	  display: none;               /* hides child menu blocks - one of the most important declarations */
	  position: absolute;          /* make child blocks hover without leaving space for them */
	  
	  top: 0px;                    /* position slightly lower than the parent menu item */
	  left: 0px;                  /* this must not be more than the width of the parent block, or the mouse will
					  have to move off the element to move between blocks, and the menu will close */
	  text-align:left;
	  margin:26px 0px 0px 0px;
	  z-index:100;
	  width:600px;
	  padding:0;
	  background-color:#862931;
}
/* Die nächste zwei steels zeigen die Unterseiteblöcke*/
ul.Menu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
	display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.Menu li:hover > ul {    
	display: block;				/* one of the most important declarations - the browser must detect hovering over arbitrary elements*/
	background-color:#862931;              /*                   the > targets only the child ul, not any child uls of that child ul */
               				/* makes the child block visible - one of the most important declarations */
}
*html ul.Menu li:hover {    
	display: block;				/* one of the most important declarations - the browser must detect hovering over arbitrary elements*/
	background-color:#862931;              /*                   the > targets only the child ul, not any child uls of that child ul */
               				/* makes the child block visible - one of the most important declarations */
}
/* ff */
ul.Menu li ul li:hover > a { 
	color: #fff;
	display: block;
	background-color:#862931;
	z-index:100;
	
} /* supports links in branch headings - should not be display: block; */

