ul.WMAMenu {
  float: left;                 /* swaps ULs from vertical to l to r */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #3384F1;      /* 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: 0;            /* Opera 7 final's margin and margin-box model cause problems */
  list-style: none;
}

ul.WMAMenu ul {
  width: 150px;                 /* sets the size of the menu blocks */
  
  background-color: #3384F1;      /* background color of drop down menus - 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 */
  list-style: none;
   border: 1px solid #000000;

}

ul.WMAMenu2 {
  float: left;                 /* swaps ULs from vertical to l to r */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #3384F1;      /* 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: 0;            /* Opera 7 final's margin and margin-box model cause problems */
  list-style: none;
}

ul.WMAMenu2 ul {
  width: 150px;                 /* sets the size of the menu blocks */
  
  background-color: #3384F1;      /* background color of drop down menus - 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 */
  list-style: none;
   border: 1px solid #000000;

}

ul.WMAMenu li {
  font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size : 14px;
  text-decoration : none;
  color : #FFFFFF;
  font-weight : bold; 
  float: left;
  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 */
  padding:3px;
  padding-top:5px;
  padding-bottom:6px;
  padding-right:10px;
  left:0px;
}

}

ul.WMAMenu2 li {
  font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size : 14px;
  text-decoration : none;
  color : #FFFFFF;
  font-weight : bold; 
  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 */
  padding:3px;
  padding-top:5px;
  padding-bottom:6px;
  padding-right:10px;
  left:0px;
}

ul.WMAMenu 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 */
  width:150px;
  top: 25px;                    /* position slightly lower than the parent menu item */
  left: 0px;                  /* 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 */

  float:none;
}

ul.WMAMenu li li{
  width:150px;
  left:0px;
  padding:0px;
}

ul.WMAMenu li ul li> ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  position: absolute;
  top:2px;
  left:150px;
}

ul.WMAMenu li:hover, ul.WMAMenu li.CSSToHighlight {
  background-color: #3384F1;      /* gives the active menu items a yellow background */
  color: #FF6600;                 /* makes the active menu item text black */ 
}

ul.WMAMenu 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.WMAMenu 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.WMAMenu li a { font-size : 14px;color: #FFFFFF; display: block; text-decoration: none; }
ul.WMAMenu ul li a {width:100%;padding:3px;}
ul.WMAMenu li a:hover, ul.WMAMenu li a.CSSToHighLink {
  font-size:14px;
  color:#FF6600;
  text-decoration:none;
}

ul.WMAMenu li:hover > a { color: #FFFFFF; } /* supports links in branch headings - must not be display: block; */

ul.WMAMenu2 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 */
  width:150px;
  top: 25px;                    /* position slightly lower than the parent menu item */
  left: 0px;                  /* 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 */

  float:none;
}

ul.WMAMenu2 li li{
  width:150px;
  left:0px;
  padding:0px;
}

ul.WMAMenu2 li ul li> ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  position: absolute;
  top:2px;
  left:150px;
}

ul.WMAMenu2 li:hover, ul.WMAMenu2 li.CSSToHighlight {
  background-color: #3384F1;      /* gives the active menu items a yellow background */
  color: #FF6600;                 /* makes the active menu item text black */ 
}

ul.WMAMenu2 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.WMAMenu2 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.WMAMenu2 li a { font-size : 14px;color: #FFFFFF; display: block; text-decoration: none; }
ul.WMAMenu2 ul li a {width:100%;padding:3px;}
ul.WMAMenu2 li a:hover, ul.WMAMenu2 li a.CSSToHighLink {
  font-size:14px;
  color:#FF6600;
  text-decoration:none;
}

ul.WMAMenu2 li:hover > a { color: #FFFFFF; } /* supports links in branch headings - must not be display: block; */