/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.quicklaunch, .quicklaunch ul {
 position: relative;
 margin: 0;
 padding: 0;
 list-style: none;
 background-color: #fff;
 z-index: 9999;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.quicklaunch ul {
 position: relative;
 display: none;
 position: absolute;
 top: 1.4em; 
 margin-top: 8px; /* I'm using ems and px to allow people to zoom their font */
 left: 0px;
 width: 165px;
 text-align: left;
 z-index: 99;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.quicklaunch li {
  float: left;
  display: block;
  color: Black;
  position: relative;
  width: 165px;
  font-weight: bold;
  margin: 0px;
  z-index: 99;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.quicklaunch ul li {
 float: none;
 margin-right: 0;
 margin-top: -2px;
 background-color: #dbdbdb;
 width: 166px;
 
 /* border: 1px solid Black;*/
 /*background-image: url(../images/blank.gif);*/
}
.quicklaunch ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.quicklaunch a {
 font-size: 1.0em;
 display: block;
 margin: 2px 0 2px 0;
 padding: 0 0 0 5px;
 text-decoration: none;
 font-weight: bold;
 color: #14618f;  /* LK-Blau */
}

.quicktop {
 position: relative;
 /*background-color: #d3e0e9;  /* Hellblau */
 border-right: 1px solid #14618f;  /* LK-Blau */
 z.index: 9999;
}

.quicklaunch ul li a {
 color: Black;
 font-weight: normal;
 z-index: 100;
 /*border-right: 0 hidden #dbdbdb;*/
} 

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.quicklaunch a:hover, .quicklaunch a.highlighted:hover, .quicklaunch a:focus {
 color: White;
 background-color: #14618f;  /* LK-Blau */
 /*background-image: url(../images/fade_grey.jpg);*/
}
.quicklaunch a.highlighted {
 color: White;
 background-color: #14618f;  /* LK-Blau */
 /*background-image: url(../images/fade_grey.jpg);*/
}


/* Only style submenu indicators within submenus. */
.quicklaunch a .subind {
 display: none;
}
.quicklaunch ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.quicklaunch a {
 float: left;
}
.quicklaunch ul a {
 float: none;
}
/* \*/
.quicklaunch a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*+html .quicklaunch ul li {
 float: left;
 height: 1%;
}
*+html .quicklaunch ul a {
 height: 1%;
}
* html .quicklaunch ul li {
 float: left;
 height: 1%;
}

* html .quicklaunch ul a {
 height: 1%;
}
/* End Hacks */