//ul.menu, ul.menu ul {
//  width: 80px;                 /* sets the size of the menu blocks */
//  border: 1px solid #000;      /* puts a black border around the menu blocks */
//  background-color: #8aa;      /* 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 */
//}

UL.menu, UL.menu UL {
  font-size: 10px;
  font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

UL.menu, UL.menu UL {
  z-index: 1001;
  margin: 0px;
	padding: 0px;
  min-height: 17px;
  max-height: 300px;
  max-width: 300px;
  cursor: pointer;
  white-space: nowrap;

	position: absolute;
}

/*
 * Fixes IE min/max-height/width problem.  IE6 Hack
 */
.top > UL.menu, .top > UL.menu UL {
}

UL.menu {
	background-color: #000;
  color: #FFF;                 /* sets the default font colour to white */
}

UL.menu UL {
  top: 100%;
  min-width: 120px;
	background-color: #FFF;
  color: #000;                 /* sets the default font colour to white */
  border: 1px solid #EEE;
}

UL.menu UL li {
	display: block;
  border-bottom: 1px solid #EEE;
}

UL.menu li {
	display: inline;
  height: 100%;
  padding: 0px 5px 0px 5px;
  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 */
}
ul.menu 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: 100%;                    /* 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 */
}

UL.menu UL li > ul {
	display: none;
	position: absolute;
	top: 0px;
	left: 90%;
}

ul.menu li:hover, ul.menu li.CSStoHighlight {
  background-color: gray;
}
UL.menu UL li:hover, UL.menu UL li.CSStoHighlight {
  background-color: #EEE;
	border-bottom: 1px solid #EEE;
}
ul.menu 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.menu li:hover > ul {
  display: block;
}
/* and some link styles */
ul.menu li a {
	height: 100%;
	color: #FFF;
	text-decoration: none;
}
UL.menu UL li a {
	height: 100%;
	color: #000;
	display: inherit;
	border-bottom: 1px solid #EEE;
}
ul.menu li a:hover, ul.menu li a.CSStoHighLink {
	display: inherit;
	text-decoration: underline;
	height: 100%;
  width: 100%;
	color: #FFF;
}
ul.menu UL li a:hover, ul.menu UL li a.CSStoHighLink {
	display: inherit;
	height: 100%;
	width: 100%;
	color: #000;
}
ul.menu li:hover > a {
	color: #FFF;
}
ul.menu UL li:hover > a {
	color: #000;
}
