/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV1,
ul.NAV1 ul {
    margin: 0px;
    padding: 0px;
    width: 153px;
    cursor: default;
    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.NAV1 li {
    position: relative;
    height: 32px;
    background-image: url(/xlntcms/user/images/NAV1-bg.gif);
    background-position: right;
    background-repeat: no-repeat;
}

/**
 * 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.NAV1 li > ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 149px;
}
* html ul.NAV1 ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 149px;
}

/**
 * This will open the submenu when hovered
 */
ul.NAV1 ul.hover {
    display: block;
}

/**
 * Styling of links used in the menu
 * Change colors, padding and text-decoration as you like
 *
 * Order of the a, LVHA (Link Visited Hover Active)
 */
ul.NAV1 li a {
    display: block;
    height: 32px;
    text-decoration: none;
    text-align: right;
    color: #fff;
    padding-top: 7px;
    padding-right: 40px;
    font-weight: bold;
    font-variant: small-caps;
    font-family: Arial, Arial, Helvetica;
    font-size: 12px;
  }

ul.NAV1 a:link,
ul.NAV1 a.link {
color: #fff;
}

ul.NAV1 a:visited,
ul.NAV1 a.visited {
color: #fff;
 border-top: 1px dotted #000000;
}

ul.NAV1 a:active,
ul.NAV1 a.active {
    color: #DD2526;
     border-top: 1px dotted #000000;
}

ul.NAV1 a:hover,
ul.NAV1 a.hover {
    color: #DD2526;
     border-top: 1px dotted #000000;
}

/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV1 li { float: left; height: 32px; }
* html ul.NAV1 li a { height: 32px; }
/* End */

