/* menubar: sensitive fields that open the menus on mouse-over.
the menubar is usually transparent, you may put the actual buttons into this layer, though.
menuanchor: invisible layers underneath the menubar.
they are used to position the menu layers */
/*
#menuanchor1 { top:160px; left: 57px; }
#menuanchor2 { top:160px; left: 167px; }
#menuanchor3 { top:160px; left: 277px; }
#menuanchor4 { top:160px; left: 387px; }
#menuanchor5 { top:160px; left: 497px; }
#menubar1 { top:160px; left: 57px; }
#menubar2 { top:160px; left: 167px; }
#menubar3 { top:160px; left: 277px; }
#menubar4 { top:160px; left: 387px; }
#menubar5 { top:160px; left: 497px; }
*/
span.menuanchor {
    position:absolute;
    z-index: 1;
}
span.menubar {
/*    position: absolute;
    width: 110px;
    height: 44px;*/
    background-image: url(images/pixel.gif); /* IE bugfix: IE 6 does not use onmouseover for totally invisible layers. You can remove this line, if you put the actual button image into the layer */
/*    border: 1px solid #D9E3F1;*/
}
/* the menuboxes contain the menu items */
div.menubox {
    border: 1px solid #D9E3F1; 
    border-top: 1px solid #D9E3F1; 
    border-bottom: 1px solid #D9E3F1; 
    /*width: 275px;*/
    padding: 0px;
}
/* the menuitem layers contain the link and text/image */
div.menuitem {
    padding-right: 5px;
    padding-left: 5px;
    background-color: #FFFFFF;
    color: #2D477F;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt;
    /*font-weight: 150;*/
    line-height: 25px;
    border-bottom: 1px dotted #EBF1FB; /*dotted #ccffcc;*/
}
/* linked items */
a.menulink {
    text-decoration: none;
}
/* the menu arrow is placed in items that have a submenu */
span.menuarrowbox {
    position: absolute;
    right: 10px;
}
img.menuarrow {
    position: relative;
    top: 5px;
}
/* bugfix for IE: onmouseover would work on item text only, not on the free space after it */
img.hoverimage {
    position: absolute;
    /*width: 217px;*/
    height: 19px;
    border: 0px;
} 
.i {
    color: #0C0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11pt;
    font-weight: bold;
}