body {behavior: url(csshover3.htc);}
div#menub {width: 190px; margin-left:5px; margin-top:0px;}

/* fond blanc pour le menu */ 
div#menub a {color:#000000;}
div#menub ul {padding: 0; width: 190px; border:1px solid; margin:0px; background: white;}

/* fond different au survol de la souris pour les sous menu et les "basiques"*/ 
div#menub li:hover { background-color:#FFFF99;}
div#menub li.sousmenu:hover { background-color:#FFCC66;}

div#menub ul li {position:relative; list-style: none; border-bottom:1px solid;}
div#menub ul ul {position:absolute; top: -1px; right: 190px; display:none;}

/* on rajoute une bordure a gauche et des padding, on doit donc réajuster la taille 100-(8 de bordure + 8 de padding) =84 */ 
div#menub li a {text-decoration: none; padding: 1px 0 1px 8px; display:block; border-left: 8px solid #BBB; width:174px; height:20px;}
div#menub ul.niveau1 li.sousmenu:hover ul.niveau2, 
div#menub ul.niveau2 li.sousmenu:hover ul.niveau3 {display:block;}

/* la bordure de chaque hauteur a une couleure de survol*/ 
div#menub li a:hover {border-left-color:#CC0033;}
div#menub ul ul li a:hover {border-left-color:#CC0033;}
div#menub ul ul ul li a:hover {border-left-color:#0000FF;}



<script type="text/javascript"   >
 
	menuvert = function() {
		if (document && document.getElementById) 
	{
		lemenu = document.getElementById("menuv");
		for (i=0; i<lemenu.childNodes.length; i++) 
		{
			node = lemenu.childNodes[i];
			if (node.nodeName=="LI") 
				{
					node.onmouseover=function() 
					{
						this.className+=" over";
  					}
 
  					node.onmouseout=function() 
					{
  					this.className=this.className.replace(" over", "");
   					}
   				}
  		}
 	}
}
 
window.onload=menuvert;
 
</script>

