/* CSS Document  Left Navigation*/
#lmenu {

width: 158px;
background: #23a6dc; /*  Background of the area that the menu will go in */
}

#lmenu ul {
list-style: none;
margin: 0;
padding: 0;
}

#lmenu li {
border-top: 1px solid #5873a4;
border-bottom: 1px solid #41bef1;

}

#lmenu a, #lmenu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 0px;
border-style: solid;
border-color: #2356a7 #2356a7 #2356a7 #2356a7;  /*  top   right   bottom  left*/
margin: 0;
padding: 2px 3px;
}

#lmenu h2 {
color: #ffffff;    /* Font color of menu top level */
background: #8ba1c8;   /* Background color of the top level */
}

#lmenu a {
color: #ffffff;
background: #23a6dc;
text-decoration: none;
}

#lmenu a:hover {
color: #000066;
background: #8ba1c8;
}
#lmenu li {position: relative;}
/*
#lmenu ul ul {
position: absolute;
z-index: 500; 
}
*/
#lmenu ul ul {
position: absolute;
top: 0%;
left: 100%;
width: 100%;
}

div#lmenu ul ul,
div#lmenu ul li:hover ul ul,
div#lmenu ul ul li:hover ul ul
{display: none;}

div#lmenu ul li:hover ul,
div#lmenu ul ul li:hover ul,
div#lmenu ul ul ul li:hover ul
{display: block;}

</style>


