<style type="text/css"><!--
#menu {
  padding:0;
  margin:0;
  width:400px;
  }
#menu li {
  list-style-type:none;
  margin:0 0 0.25em 0;
  text-align:left;
  }
#menu a, #menu a:visited {
  position:relative;
  display:block;
  width:400px;
  border:1px solid #808;
  font-family:arial, verdana, sans-serif;
  font-size:1em;
  text-align:left;
  text-decoration:none;
  background:#eeeeee; 
  color:#606060; 
  padding:0.25em;
  }
#menu a span {
  display:none;
  }
#menu a:hover {
  background:#dddddd;
  color:#cc0000;
  z-index: 1;
}
#menu a:hover span {
  display:block;
  text-align:left;
  position:absolute; 
  left:150px; 
  top:0; 
  padding:0.5em; 
  width:300px;
  background-color:#eee;
  color:#000; 
  border:1px solid #808;
  z-index: 33;
  }
#menu a:hover span:first-line {
  font-weight:bold; 
  font-size:1.2em;
  color:#808;
  }
#menu img {
  border:1px solid #000; 
  float:left; 
  margin:0.25em 1em 0.5em 0;
  }


ul.makeMenu, ul.makeMenu ul {
  width: 10px;						/* sets the size of the menu blocks */
  border: 1px solid #000000;		/* puts a black border around the menu blocks */
  background-color: #88aaaa;		/* 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 */
}
ul.makeMenu 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: #000000;					/* sets the default font colour to black */
  width: 500px;						/* sets the size of the menu blocks */
  padding-top: 3px;
  padding-bottom: 3px;
  border: 0px;
}
ul.makeMenu li.li1 {				/* Allows us to alternate rows */
  background-color: #FFD;
}
ul.makeMenu li.li2 {				/* Allows us to alternate rows */
  background-color: #eee;
}
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: 20px;						/* position slightly lower than the parent menu item */
  left: 60px;						/* 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 */
  z-index: 3;
  margin: 1px;
  padding-top: 3px;
  padding-bottom: 3px;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #ffffff;      /* gives the active menu items a yellow background */
  color: #000000;                 /* makes the active menu item text black */ 
}
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 {			/* This is the pop-up!!!
									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 */
  margin: 0px;						/*  */
  border: 2px solid #000000;		/* puts a black border around the menu blocks */
  background-color: #FFC;		/* makes the menu blocks mint green - a bg-color MUST be included for */
  padding: 2px;				/* stops the usual indent from ul */
  z-index: 1;
}
/* and some link styles */
ul.makeMenu li a { color: #000000; display: block; width: 100%; text-decoration: underline; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000000; }
ul.makeMenu li:hover > a { color: #000000; } /* supports links in branch headings - must not be display: block; */

ul.makeMenu li.li0, ul.makeMenu li.li0 a, ul.makeMenu li.li0 a:hover {                            /* Allows us to alternate rows */
  color: #FFF;
  background-color: #383;
  FONT-WEIGHT: bold;
}

--></style>
<!--[if gte IE 5]><![if lt IE 7]>
<style type="text/css">
/* 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( IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector */
	display: none; position: absolute; top: 2px; left: 78px;
}
</style>
<![endif]><![endif]-->

