ul.makeMenu, ul.makeMenu ul {
margin:0px;
list-style-image:none;
  list-style: none;
 top:0px;
  list-style: none;       /* removes the bullet points */
  width: 150px;                 /* sets the size of the menu blocks */
  background-color: #ffffff;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size:12px;
  color:#000000;
}
ul.makeMenu li {

  position: relative;
  color: #ffffff; 
  /*border-bottom:solid 1px #cbc5c7;*/
  list-style: none;
  list-style-image:none;
 margin:0px;
 padding-top:0px;
 padding-bottom:2px;
 border-bottom:solid 2px #e1e3e6;
}


ul.makeMenu li > ul {    
  display: none;       
  position: absolute;   
  left: 150px;         
 width: 200px;                
  list-style: none;
  list-style-image:none;
}

ul.makeMenu li ul li ul {
list-style: none;
list-style-image:none;
}

ul.makeMenu li  ul li > ul{          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
                     /* position slightly lower than the parent menu item */
  left: 150px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
 width: 200px;                 /* sets the size of the menu blocks */
  top:0px;
  list-style: none;
  list-style-image:none;
}

ul.makeMenu li ul li {
  padding-left:10px;
  position: relative;
 /* border-bottom:solid 1px #cbc5c7; */
 list-style:none;
  list-style-image:none;
}

ul.makeMenu li ul li:hover {
 /* border-bottom:solid 1px #cbc5c7;*/
 list-style:none;
 list-style-image:none;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #ffffff;      /* gives the active menu items a yellow background */
  color: #aa0000;                 /* makes the active menu item text black */ 
 /* border-bottom:solid 1px #70494e; */
  list-style: none;
  list-style-image:none;

}
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 */
  list-style: none;
}
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 */
  list-style: none;
}
/* and some link styles */
ul.makeMenu li a, ul.makeMenu li a:link, ul.makeMenu li a:visited  { font-size:12px; color: #24276c; display: block; width: 100%; text-decoration: none;  }
ul.makeMenu li a:hover { font-size:12px; color: #aa0000; display: block; width: 100%; text-decoration:underline;  }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #aa0000;font-size:12px; }
ul.makeMenu li:hover > a { color: #aa0000; } /* supports links in branch headings - should not be display: block; */

a.more {
background-image:none;
}
a.more:hover {
}