ul.makeMenu, ul.makeMenu ul {
  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 */
}

ul.makeMenu li ul li{          /* Sub menu */
  width: 160px;                /* sets the size of the menu blocks */
  border: 0px;                 /* puts a black border around the menu blocks */
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;
  padding: 2px 0px 2px 30px;
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item the lack of offset makes these appear normal, but it will make a difference to the absolutely positioned child blocks */
}

ul.makeMenu li ul {
     border: 1px solid #D9CDBC;
     background-color: #EFEBE5;
}

ul.makeMenu li {
  width: auto;                 /* sets the size of the menu blocks */
  border: 0px;    /* puts a black border around the menu blocks */
  list-style-type: none;        /* removes the bullet points */
  margin: 4px;
  position: relative;           /* makes the menu blocks be positioned relative to their parent menu item the lack of offset makes these appear normal, but it will make a difference to the absolutely positioned child blocks */
  color: #BC5954;               /* sets the default font colour to white */
}
ul.makeMenu 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 */
  top: -2px;                    /* position slightly lower than the parent menu item */
  margin-left: 150px;
  left: auto;                 /* 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 */
}

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 */
}
/* and some link styles */
ul.makeMenu li a { 
    color: #BC5954;
    padding: 2px 0px 2px 30px;
    display: block; 
    width: auto;
    font-size: 11px;
    text-decoration: none; 
    font-weight: bold;
}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { 
    background-image: url(/site/images/rose.png);
    background-position: -2px -6px;
    background-repeat: no-repeat;
}
ul.makeMenu li:hover > a { color: #8E2823; } /* supports links in branch headings - should not be display: block; */

ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 78px;
}
