ul.makeMenu, ul.makeMenu ul {
	width: 200px;      /* puts a black border around the menu blocks */
	background-color: #DDDDDD;      /* 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-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
	color: #FFFFFF;
	text-indent: 0px;
	border-bottom-width: thin;
	border-bottom-style: groove;
	border-bottom-color: #000000;
	z-index: 10;
	background-image: url(Images/right%20bar%20off.png);
	background-repeat: repeat-y;
	background-position: left;
}
ul.makeMenu li {
	list-style-type: none;                 /* Opera 7 puts large spacings between li elements */
	position: relative;
	line-height: 2em;
	border-top-width: thin;
	border-top-style: groove;
	border-top-color: #660000;
	color: #000066;
}
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: 200px;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
	background-color: #999999;      /* gives the active menu items a yellow background */
	color: #000;                 /* makes the active menu item text black */
	top: 0px;
	background-image: url(Images/side%20bar%20on.png);
	background-repeat: repeat;
	background-position: left;
}
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;
}
/* and some link styles */
ul.makeMenu li a { color: #000066; display: block; width: 200px; text-decoration: underline; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {
	color: #000;
	display: block;
}
ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - must not be display: block; */
.scrolly {
}
