ul.makeMenu, ul.makeMenu ul 
{
  	width: 180px;                 
	border: 0px solid #000;      
  	background-color: #7fba00;     
  	padding-left: 0px;           
  	cursor: default;             
  	margin-left: 0px; 
	line-height: 20px;           
}

ul.makeMenu li 
{
  	white-space:nowrap;
  	list-style-type: none;       
  	margin: 0px;                 
  	position: relative;          
  	color: #fff;                 
}



ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  	background-color: #ffa;      /* gives the active menu items a yellow background */
  	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 */
}


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 */
}


ul.makeMenu li a 
{ 
FONT-SIZE: 8pt; VERTICAL-ALIGN: top; color: #6a727a; LINE-HEIGHT: 1.4em; 	FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; TEXT-ALIGN: justify;
 display: block; width: 100%; text-decoration: underline; 
}

ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink 
{ color: #000; 
}

ul.makeMenu li:hover > a 
{ color: #000; } /* supports links in branch headings - should not be display: block; */

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li 
{  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}


ul.makeMenu ul 
{  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 181px;
}
