ul.makeExpMenu {
	font-size: 90%;
	z-index: 0;
}
ul.makeExpMenu ul {
	z-index: 1020px;
	border: 2px solid #b16730;
}
ul.makeExpMenu, ul.makeExpMenu ul {
 /* width: 50px;                  sets the size of the menu blocks */
  background-color: #efe8b9;      /* 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: 15px;            /* Opera 7 final's margin and margin-box model cause problems */
}
ul.makeExpMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  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: #6d3400;                 /* sets the default font colour to blue */
  border-bottom: 1px solid #b16730;
}
ul.makeExpMenu 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;
  left: -50px;                /* 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.makeExpMenu li:hover, ul.makeExpMenu li.CSStoHighlight {
  background-color:#ffffff;      /* gives the active menu items a yellow background */
  color: #6d3400;                 /* makes the active menu item text blue */ 
}
ul.makeExpMenu 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.makeExpMenu 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.makeExpMenu li a { 
	color: #6d3400; 
	display: block; 
	width: 100%; 
	text-decoration: none; 
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;}
ul.makeExpMenu li a:hover, ul.makeExpMenu li a.CSStoHighLink { color: #6d3400; text-decoration: underline;}
ul.makeExpMenu li:hover > a { color: #6d3400; } /* supports links in branch headings - must not be display: block; */
