/* CSS Document */

/* style the outer div to give it width */
.menu {
  width:auto; 
  font-family: Arial;
  font-size:12px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
  font-family: Arial;
  font-size:12px;
  padding:0;
  list-style-type:none;
  margin:-4px 0px 0px -4px;
}
.menu ul ul {
  width:120px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
  font-family: Arial;
  color:#FFFBDB; 
  font-size:12px;
  float:left;
  border:0px solid #FF9725; 
  border-width:0px 0px 0px 0px; 
  width:auto;
  position:relative;
  margin: -2px -2px 0px 0px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
  font-family: Arial;
  font-size:12px;
  color:#FFFBDB;
  display:block;
  text-decoration:none; 
/*  color:#666666; */
  width:auto; 
  height:auto; 
  background:#A8161F; 
  padding-left:4px; 
  padding-right:4px; 
  padding-top:1px; 
  padding-bottom:2px; 
  line-height:25px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
  width:120px;
  width:39px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
  background:#A8161F url(../_images/dpfeil-r.png) no-repeat 180px 8px;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
  background:#FF9725;
}
.menu ul ul :hover > a.drop {
  background:#FF9725 url(../_images/dpfeil-r.png) no-repeat 180px 8px;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
  background:#A8161F;
  margin:0px 0px 1px 4px;
}
/* style the third level hover */
.menu ul ul ul a:hover {
  background:#A8161F;
}
.menu ul ul ul :hover > a {
  background:#FF9725;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
  visibility:hidden;
  position:absolute;
  height:0;
  top:34px;
  left:0; 
  width:120px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
  top:35px;
}
/* position the second level flyout menu for a left flyout */
.menu ul ul.left {
  left:-150px;
}
/* position the third level flyout menu */
.menu ul ul ul {
  left:198px; 
  top:6px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
  left:-198px;
  margin:-4px 0px 0px 4px;
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
  position:absolute;
  top:0;
  left:0;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
  background:#A8161F; 
  height:auto; 
  line-height:14px; 
  padding:5px 8px; 
  margin:0px 0px 0px 4px;
  width:178px;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
  width:120px;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
  color:#FFFBDB; 
  background:#FF9725;
  border:0px solid #FF9725; 
  border-width:0px 0px 0px 0px; 
}
.menu :hover > a, .menu ul ul :hover > a {
  color:#FFFBDB;
  background:#FF9725;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
  visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
  visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
  visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
  visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
  visibility:visible;
}

/* Menü soll nicht durch Diashow oder anderes verdeckt werden: */
.menu * {
	z-index: 1000;
}
