TABLE.tabCssMenu TD {padding:10px; font-size:90%;
}
pre { margin-top:0px;
}
ul.CssMenuUl, ul.CssMenuUl ul {
    font-weight: bold;
    text-align: left;
    padding-bottom: 10px;
    margin-top: 0px;
    width: 118px;           /* Opera 7 final's margin and margin-box model cause problems */
}
ul.CssMenuUl li.MenuNormal {
  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: #224059;
    background-color: #ddeeff;
    border-top: 3px #e0e0ff solid;
    border-left: 3px #e0e0ff solid;
    border-bottom: 4px #31557f solid;
    border-right: 4px #31557f solid;
    width: 118px; 
    margin-BOTTOM: 10px;
}
ul.CssMenuUl li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: block;               /* hides child menu blocks - one of the most important declarations */
  position: none;          /* make child blocks hover without leaving space for them */
  top: 2px;                    /* position slightly lower than the parent menu item */
  left: 520px;                  /* 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.CssMenuUl li.MenuNormal:hover, ul.CssMenuUl li.CSStoHighlight {
  background-color: #ff0000;      /* gives the active menu items a yellow background */
  display: block;  /* makes the active menu item text black */
}
ul.CssMenuUl 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.CssMenuUl li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements */
  background-color: #ff00000;                                  /*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.CssMenuUl li a {     padding: 2px 0 2px 4px;
    text-decoration: none;
    display: block;
    color: #224059;
    background-color: #ddeeff;
    border-top: 3px #e0e0ff solid;
    border-left: 3px #e0e0ff solid;
    border-bottom: 4px #31557f solid;
    border-right: 4px #31557f solid;
    width: 118px; }
ul.ulCssMenu li a:hover, ul.ulCssMenu li a.CSStoHighLink {     color:  #ffffff;background-color: #7ea8cf; 	
    border-top: 3px #e0e0ff solid;
    border-left: 3px #e0e0ff solid;
    border-bottom: 4px #31557f solid;
    border-right: 4px #31557f solid;
    text-decoration: none;}
ul.ulCssMenu li:hover > a { color: #000; } /* supports links in branch headings - must not be display: block; */
/*<!--[if gte IE 5]>
<style type="text/css">  */
/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.ulCssMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url( IEmen.htc );
}
ul.ulCssMenu ul {  /* copy of above declaration without the > selector */
	display: none; position: absolute; top: 2px; left: 78px;
}
