/*Menu code*/
ul.makeMenu {
  width: 150px;                /* sets the size of the menu blocks */
  margin-top: 28px;
  padding-left: 0px;           /* stops the usual indent from ul */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}

ul.makeMenu ul {
  width: 150px;                /* sets the size of the menu blocks */
  padding-left: 0px;           /* stops the usual indent from ul */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  background: url(/images/wood.jpg);
  border: outset 2px tan;
}

ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  border: 1px solid transparent;   /* puts a border around the links */
  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: 0px;
  vertical-align: bottom;
  width: 175px;
}

ul.makeMenu li a {
   display:block;
   color: #dedbdc;
   font-size: 10pt;
   font-family: arial, helvetica, sans-serif;
   font-weight: bold;
   text-decoration: none;
   padding: 0px 8px 0px 65px;
}

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: 0px;                    /* position slightly lower than the parent menu item */
  left: 174px;                 /* 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 */
  text-align: left;
  background: #FFFFFF url(/images/wood.jpg);
  /*border: 1px solid #000;*/
  padding: 0px;
  margin: 0px 0px -2px 0px;
  z-index: 9999;
        /* CHANGE PX FOR SUBMENU POSITION IN NETSCAPE/FIREFOX */
}

ul.makemenu li ul li, ul.makemenu li ul a {
   color: black;
   height: 20px;
   padding: 0px;
   margin: 0px;
}

ul.makemenu li ul a:hover {
   color: blue;
}

ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  /*background-color: #DDCEAF; */   /* gives the active menu items a yellow background LINK BACKGROUND HOVOR COLOR!*/
  color: #000;                 /* 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 */
  text-align: left;
  /*border-top: 1px solid #9C7E4B;*/
  padding: 0px;
  margin: 0px 0px -2px 0px;
}
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 */
  background: #ffffff url(/images/wood.jpg);

}
/* and some link styles */
ul.makeMenu li a { /*color: #fff;*/ display: block; width: 100%; /*text-decoration: none;*/ }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {/* color: #000000;*/} /* color LINK TEXT HOVER COLOR! */
ul.makeMenu li:hover > a { /*color: #000; */} /* supports links in branch headings - must not be display: block; */

.footer a {
   color: #332a87;
}
