/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV2,
ul.NAV2 ul {
    margin: 0px;
    padding: 0px;
    width: 155px;
    cursor: pointer;
    list-style-type: none;
}

/**
 * Position list items relative to the menu it is in,
 * required to keep absolute positioned elements inside the list item
 */
ul.NAV2 li {
    position: relative;
}

/**
 * The next two blocks style the submenu positioning inside a list-item
 * One block for W3C browsers, one for IE6.
 * adjust top and left to change spacing.
 */
ul.NAV2 li > ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 134px;
}
* html ul.NAV2 ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 134px;
}

/**
 * The next blocks will open the submenu, 
 * one for W3C browsers, one for IE
 */
ul.NAV2 li.hover > ul {
    display: block;
}
ul.NAV2 ul.hover {
    display: block;
}

/**
 * Styling of links used in the menu
 * Change colors, padding and text-decoration as you like
 */
ul.NAV2 li a {
    display: block;
    text-decoration: none;
    background-image:url(/smt/user/images/Button_Submenu_Back.gif);
    background-repeat: no-repeat;
    color: #c88d2b;
    font-size: 9pt;
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 4px;
}

/**
 * The next two blocks describe styling of hovered menu items
 * Change colors or text-decoration as you like
 */
ul.NAV2 li.hover > a {
}

/**
 * This rule does the same as above, but for IE6.
 * This rule also applies to active menu items set via xlnt_menu_name
 */
ul.NAV2 a.hover {
}

/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */
