/* -----------------------------------------------------------------------------
  Version 2.0 Horizontale Navigationsleiste.              Hans Strodl 06.01.2011
  Komplett auf CSS-Funktionalität umgestellt
----------------------------------------------------------------------------- */

div#hnav ul {
  float: right;
  padding:    0;
  list-style: none;
  font-size: 100%;
  line-height: 130%;
  border-left: 0px dashed blue;
}


/* -----------------------------------------------------------------------------
  Ebene 1
------------------------------------------------------------------------------*/

div#hnav ul li {
   position: relative;
   float: left;
   margin:0;
   list-style: none;
   background: transparent; _#cfe3b6;
   __border-right: 1px solid #aaa;
}

div#hnav ul li:hover {
   _background: #b6d3a6;
   border-bottom: 2px solid red;
}

div#hnav ul li a {
  display: block;
  padding: 4px;
  text-decoration: none;
  color: white;
}

/* -----------------------------------------------------------------------------
  Ebene 2
------------------------------------------------------------------------------*/

div#hnav ul ul
{
   position: absolute;
   display: none;
   text-align: left;
   margin:0;
   list-style: none;
   font-size: 100%;
}

div#hnav ul ul li
{
   width: 100%;
   margin:0;
   list-style: none;
   border-bottom: 1px solid #aaa;
   background: #d7e6e6;
}

div#hnav ul li:hover ul
{
   display: block;
}

div#hnav ul ul li:hover
{
   background: #c0d6e6;
}
