/* ------ ADxMenu ------ */

/* --- ADxMenu: BASIC styles --- */
/* remove all list-stylings */
.menu, .menu ul {
    margin:0px;
    padding:0px;
    border:0px;
    list-style-type:none;
    display:block;
}

.menu li {
    margin:0px 0px 0px 7px;
    padding:0px;
    border:0px;
    display:block;
    float:left; /* move all main list i tems into one row, by float ing them */
    position:relative; /* position each LI, thus creating potential IE. win overlap problem */
    z-index:5; /* thus we need to apply explicit z-index here... */
}

.menu li:hover {
    z-index:10000; /*...and here. this makes sure active item is always above anything else in the menu */
    white-space:normal; /*required to resolve IE7:hover bug (z-index above is ignored if this is not present) see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.aspforotherstuffthatwork */
}

.menu li li {
    float:none; /* items of the nested menus are kept on separate lines */
    height:auto;
    margin:0px;
}

.menu ul {
    visibility:hidden; /* initially hide all submenus. */
    position:absolute;
    z-index:10;
    left:0px; /* while hidden, always keep them at the bottom left corner, */
    bottom:0px; /* to avoid scrollbars as much as possible */
}

.menu li:hover > ul {
    visibility:visible; /* display submenu them on hover */
    bottom:100%; /* 1st level go above their parent item */
}

.menu li li:hover > ul {
    /* 2nd+ levels go on the right side of the parent item */
    bottom:0px;
    left:100%;
}

/*--float.clear-- force containment off loated LIs inside of UL */
.menu:after, .menu ul:after {
    content:".";
    height:0px;
    display:block;
    visibility:hidden;
    overflow:hidden;
    clear:both;
}

.menu, .menu ul { /*IE7 float clear: */
    min-height:0px;
}

/*sticky submenu: it should not disappear when your mouse moves a bit outside the submenu YOU SHOULD NOT STYLE the background of the ".menuUL" or this feature may not work properly! if you do it, make sure you 110% know what you do */
.menu ul {
    padding:0px 0px 7px 0px;
    /*background:#f00;
    uncomment this if you want to see the "safe" area. you can also use to adjust the safe area to your requirement */
}

/*---ADxMenu: DESIGN styles---*/

.menu a {
    font-size:11px;
    text-transform:uppercase;
    font-weight:bold;
    text-decoration:none;
    line-height:100%;
    padding:15px 9px;
    color:#efdeca;
    position:relative;
    width:79px;
    height:67px;
    background-color:#833577;
    background-image:url(../upload/layout/bg_menu.gif);
    display:block;
    overflow:hidden;
    box-shadow: 2px 2px 2px #666; -moz-box-shadow: 2px 2px 2px #666; -webkit-box-shadow: 2px 2px 2px #666;  
   
}

*+html .menu a {padding:15px 7px; width:80px; filter:progid:DXImageTransform.Microsoft.Shadow(strength=3,color=#666666,direction=135);}



.menu a:hover, .menu li.activepath a, .menu li#active a {
    background-image:url(../upload/layout/bg_menu_ov.gif);

}

.menu li ul {
    height:138px;
    background-image:url(../upload/layout/bg_untermenu.png);
    text-transform:none;
}
  
.menu li li a {
    width:192px;
    font-size:11px;
    text-transform:none;
    padding:2px 5px;
    color:#333333;    /*color:#833577;*/
    height:auto;
    background-image:none;
    background-color:transparent;
    border-bottom:1px solid #fff;
    font-weight:normal;
    box-shadow: none!important; -moz-box-shadow: none!important; -webkit-box-shadow:none!important; filter:none!important;
}


.menu li li a:hover {
    color:#b23a8b;
    background-image:none;
    background-color:transparent;
}

.menu li.activepath ul li#active a {
    color:#b23a8b;
    background-image:none;
}

.menu li.activepath ul a, .menu li#active ul a {
    background-image:none;
}
  
.menu ul > li + li { /*and remove the top border on all but first item in the list*/ 
    border-top:0px none;
}

.menu li li:hover > ul { /* inset 2nd+ submenus, to show off overlapping */
    bottom:0px;
    left:90%;
}

.mp2 {
    color:#e59fb6;
    text-transform:none;
    font-size:11px;
    font-weight:normal;
    line-height:100%;
}

.mp2 br {
    font-size:11px;
    line-height:100%;

