#navEZPagesTopContainer ul li a {
	background-image: url(../images/topmenu_bg.gif);
	background-repeat: no-repeat;
	display: block;
	float: left;
	width: 123px;
	height: 19px;
	margin: 0px 1px 0px 1px;
	padding: 5px 0 0px 0;
	text-align: center;
	font-weight: bold;
}

#navEZPagesTopContainer ul li a:link, #navEZPagesTopContainer ul li a:active, #navEZPagesTopContainer ul li a:visited{
	color: #ffffff;
	text-decoration: none;
}

#navEZPagesTopContainer ul li a:hover{
	color: #f1c85d;
	text-decoration: none;
}

#navEZPagesTopContainer ul li {
  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 */              
  padding-left:2px;
	float: left;
}
#navEZPagesTopContainer ul li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	z-index: 999;
  width: 250px;
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 19px;                    /* position slightly lower than the parent menu item */
  left: 10px;                  /* 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 */
}
#navEZPagesTopContainer ul li:hover, #navEZPagesTopContainer ul li.CSStoHighlight {
  color: #cad8e9;                 /* makes the active menu item text black */ 
}
#navEZPagesTopContainer ul 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 */
}
#navEZPagesTopContainer ul 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 */
}

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
#navEZPagesTopContainer ul li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}
#navEZPagesTopContainer ul ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 298px;
}