div#lmenu {
    position: absolute;
    top: 42px;
    left: 10px;
    font-weight: bold;
}
/* common styling */
.menu {
    font-family: arial, sans-serif;
    width: 200px;
    position: relative;
    font-size: 11px;
    margin: 100px 0;
    background-color: transparent;
}

/* NGH main menu */
.menu ul li a, .menu ul li a:visited {
    display: block;
    text-decoration: none;
    background-color: red; /* bg main */
    background-color: transparent;
    background-image: url('../../images/lbutton.png');
    background-repeat: no-repeat;
/*Initial menu color */
    color: #FFF;
    width: 200px;
    height: 36px;
    text-align: left;
    text-indent: 30px;
    line-height: 30px;
    font-size: 12px;
	z-index: 1;
}
.menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.menu ul li {
    float: left;
    margin-right: 0px;
    position: relative;
}
.menu ul li ul {
    display: none;
}

/* specific to non IE browsers */

/*NGH background-color hover main menu */
.menu ul li:hover a {
    color: #FFF;
    color: #000;
    background-color: yellow; /* hover main */
    background-color: transparent;
    text-indent: 30px;
}
/*NGH*/
.menu ul li:hover ul {
    display: block;
    position: absolute;
    top: 0;
    left: 186px;
    left: 200px;
    z-index: 10;
}
/* NGH light hover*/
.menu ul li:hover ul li a.hide {
    background-color: yellow; /* indicate second */
    background-color: transparent;
    color: #FFF;
    color: #000;
    text-align: left;
}
/* NGH affects second level hover*/
.menu ul li:hover ul li:hover a.hide {
    width: 200px;
}
.menu ul li:hover ul li ul {
    display: none;
}

.menu ul li:hover ul li a {
    display: block;
    background-color: red; /* bg second */
    background-color: transparent;
    background-image: url('../../images/lbutton2.png');
    background-repeat: no-repeat;
    color: #FFF;
    color: #000;
    width: 200px;
/* NGH second-level hover*/
    text-align: left;
    text-indent: 10px;
    border-collapse: collapse
}
.menu ul li:hover ul li a:hover {
    background-color: yellow; /* hover second */
    background-color: transparent;
    color: #000;
    color: #FFF;
}

/*.menu ul li:hover ul li:hover ul {display:block; position:absolute; left:151px; top:0; color:#FFF;}*/
.menu ul li:hover ul li:hover ul {
    display: block;
    position: absolute;
/* position of third */
    left: 200px;
    top: 0;
    color: #FFF;
}
.menu ul li:hover ul li:hover ul li a {
    display: block;
    width: 200px;
    background-color: red; /* bg third */
    background-color: transparent;
    color: #FFF;
    background-image: url('../../images/lbutton3.png');
    background-repeat: no-repeat;
/* NGH third-level hover*/
    text-align: left;
    text-decoration:none;
}
.menu ul li:hover ul li:hover ul li a:hover {
    background-color: yellow; /* hover third */
    background-color: transparent;
    color: #FFF;
    color: #000;
    text-decoration:none;
}
