ul.makeMenu, ul.makeMenu ul {
  width: 140px;
  border: 2px solid #fcd335;
  border-bottom: 0px;
  background-color: #ffffcc;   /* a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  color: #000000;
  z-index: 5;
}
ul.makeMenu {
	margin-left: 5px;
	margin-top: 5px;
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;
  color: #000000;
  font: 11px Helvetica, Verdana, Arial, non-serif;
  line-height:25px;
  border-bottom: 2px solid #fcd335;
  height: 25px;
}
ul.makeMenu li > ul {
  display: none;
  position: absolute;
  top: 3px;                    /* position slightly lower than the parent menu item */
  left: 140px;                 /* = or < column width */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #ffe976;
  color: #000000;
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}

/* link styles */
ul.makeMenu li a { color: #000000; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000000; }
ul.makeMenu li:hover > a { color: #000000; } /* supports links in branch headings - should not be display: block; */
<!--[if gt IE 5.0]><![if lt IE 7]>
/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( menu/IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 3px; left: 138px;
}
<![endif]><![endif]-->