	
	ul.makeMenu, ul.makeMenu ul {
  width:200px;                 /* sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: transparent;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 10px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 20px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size:.9em;
  padding-top:5px;
  padding-bottom:5px;
}
ul.makeMenu li
						 	{
  list-style-type: none;       /* removes the bullet points */
  margin: 3px;                 /* 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: white;                 /* sets the default font colour to white */
  border: 0px solid #000;
  font-size:11px;
}
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: -10px;                    /* position slightly lower than the parent menu item */
  left: 150px;                  /* 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 */
  background-color:#E0E0E0;
  width:100px;
  border:solid black 1px;
   
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: yellow;      /* gives the active menu items a yellow background */
  color:blue;                 /* makes the active menu item text black */ 
  text-decoration:none; color:white; background-color:red;
}
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 {    /* 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.makeMenu li a { color: blue; display: block; width: 100%; text-decoration: none;}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: white;}
ul.makeMenu li:hover > a { color: white; background-color:gray; } /* supports links in branch headings - should not be display: block; */

ul.makeMenu li a {font-size:1.4em; color:navy;}
ul.makeMenu ul li a{font-size:1.2em;}

	
	ul.makeMenu2, ul.makeMenu2 ul {
  width:200px;                 /* sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: transparent;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 10px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 20px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size:.9em;
  padding-top:5px;
  padding-bottom:5px;
}
ul.makeMenu2 li
						 	{
  list-style-type: none;       /* removes the bullet points */
  margin: 3px;                 /* 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: white;                 /* sets the default font colour to white */
  border: 0px solid #000;
  font-size:11px;
}
ul.makeMenu2 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: -10px;                    /* position slightly lower than the parent menu item */
  left: 150px;                  /* 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 */
  background-color:#E0E0E0;
  width:100px;
  border:solid black 1px;
   
}
ul.makeMenu2 li:hover, ul.makeMenu2 li.CSStoHighlight {
  background-color: yellow;      /* gives the active menu items a yellow background */
  color:blue;                 /* makes the active menu item text black */ 
  text-decoration:none; color:white; background-color:red;
}
ul.makeMenu2 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.makeMenu2 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.makeMenu2 li a { color: blue; display: block; width: 100%; text-decoration: none;}
ul.makeMenu2 li a:hover, ul.makeMenu2 li a.CSStoHighLink { color: white;}
ul.makeMenu2 li:hover > a { color: white; background-color:gray; } /* supports links in branch headings - should not be display: block; */

ul.makeMenu2 li a {font-size:1.4em; color:navy;}
ul.makeMenu2 ul li a{font-size:1.2em;}


	
	ul.makeMenu3, ul.makeMenu3 ul {
  width:200px;                 /* sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: transparent;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 10px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 20px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size:.9em;
  padding-top:5px;
  padding-bottom:5px;
}
ul.makeMenu3 li
						 	{
  list-style-type: none;       /* removes the bullet points */
  margin: 3px;                 /* 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: white;                 /* sets the default font colour to white */
  border: 0px solid #000;
  font-size:11px;
}
ul.makeMenu3 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: -10px;                    /* position slightly lower than the parent menu item */
  left: 150px;                  /* 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 */
  background-color:#E0E0E0;
  width:100px;
  border:solid black 1px;
   
}
ul.makeMenu3 li:hover, ul.makeMenu3 li.CSStoHighlight {
  background-color: yellow;      /* gives the active menu items a yellow background */
  color:blue;                 /* makes the active menu item text black */ 
  text-decoration:none; color:white; background-color:red;
}
ul.makeMenu3 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.makeMenu3 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.makeMenu3 li a { color: blue; display: block; width: 100%; text-decoration: none;}
ul.makeMenu3 li a:hover, ul.makeMenu3 li a.CSStoHighLink { color: white;}
ul.makeMenu3 li:hover > a { color: white; background-color:gray; } /* supports links in branch headings - should not be display: block; */

ul.makeMenu3 li a {font-size:1.4em; color:navy;}
ul.makeMenu3 ul li a{font-size:1.2em;}




