﻿﻿﻿/* VERTICAL FREESTYLE MENU LAYOUT */

.menulist{
position: absolute;
z-index: 1000;
top: 162px;
}
/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 170px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 /* left: 172px; */
 left: 190px;
 z-index: 1000;
}

/* aufgeklappte 2. ebene der aufklappmenüs */
.menulist ul ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 /* left: 172px; */
 left: 170px;
 z-index: 1000;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
 position: relative;
 background:url(../bilder/button.gif) no-repeat 0px 5px;
 margin-bottom: -1px;
 height: 30px;
 text-align: right;

}

/* ERGÄNZUNG ZUM HAUPTMENU LINKS */
/*
.menulist li a.active{
    position: relative;
    background:url(../bilder/button_f2.gif) no-repeat 0px 5px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: -1px;
    height: 30px;
    text-align: right;
}
*/
.menulist li a{
    color : #0000cc ;
}
.menulist li a.active{
    background:url(../bilder/button_f2.gif) no-repeat 0px 5px;
}
.menulist li a.active, .menulist li a:hover{
    color: #ff6600;
    font-weight: bold;
}
/* ERGÄNZUNG ZUM HAUPTMENU LINKS ENDE */

/* Zweite Menuebene */
.menulist ul li, .menulist ul ul li{
    border: 1px solid #666666;
    height: auto;
    background: #eeeaff;
    text-align: left;
    font-weight: normal;
    font-size: 12px;
}

.menulist ul a:hover, .menulist ul ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus, .menulist ul li a:hover, .menulist ul a.highlighted {
 color: #0000cc;
 font-weight: normal;
 background: #d5ceff;
 font-weight: bold;
 font-size: 11px;
}

.menulist ul li a {
 color: #333333;
 font-weight: normal;
 font-size: 12px;
}

/* Ende zweite Ebene */

.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 color: #999999;
 font-weight: bold;
 text-decoration: none;
 padding: 3px;
}

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ff6600;
 background:url(../bilder/button_f2.gif) no-repeat 0px 5px;
}

.menulist a.highlighted {
 color: #ff6600;
 background:url(../bilder/button_f2.gif) no-repeat 0px 5px;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
  display: none;
}

.menulist ul a .subind {
 float: right;
  display: inline;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;

}
* html .menulist a {
 height: 1%;
}
/* End Hack */
}
/* End Hack */
/* Ende Menu */