
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-color: #FFC81F; 
}
ul.makeMenu li a {
	color: #000000;
	display: block;
	width: 100%;
	text-decoration: none;
}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {
	color: #000000;
	text-decoration: none;
}
ul.makeMenu li:hover > a {
	color: #000000;								/* supports links in branch headings - must not be display: block; */
	text-decoration: none;
}
