
.cms-core-nav-list-container ul {
  position: static;				 /* position static for ie5 */
}

ul.cms-nav-flyout, ul.cms-nav-flyout ul {
	width: 130px;                 /* 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 */
	padding-left: 0px;           /* stops the usual indent from ul */
	cursor: default;             /* gives an arrow cursor */
	margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
	z-index: 1;
	position: static;			 /* position static for ie5 */
}
ul.cms-nav-flyout 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 */
	color: #fff;                 /* sets the default font colour to white */
}
ul.cms-nav-flyout 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: 2px;                    /* position slightly lower than the parent menu item */
	left: 128px;                  /* 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 */
	z-index: 2;
}
ul.cms-nav-flyout li:hover {
	background-color: #ffa;      /* gives the active menu items a yellow background */
	color: #000;                 /* makes the active menu item text black */ 
}
ul.cms-nav-flyout 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 */
}
/* and some link styles */
ul.cms-nav-flyout li a { color: #fff; display: block; width: 100%; }
ul.cms-nav-flyout li a:hover { color: #000; }
ul.cms-nav-flyout li a.nr-flyout-edit-pencil { position: absolute; left: -21px; width: 21px; border: 1px solid black; border-right: 0px; background-color: #fec; z-index: 3; }

div.cms-pulldown-div a.nr-flyout-edit-pencil {
	position: absolute;
	left: -22px;				/* mozilla renders different position */ 
	-left: -21px; 
	width: 21px; 
	border: 1px solid black; 
	border-right: 0px; 
	background-color: #8aa; 
	z-index: 3;
}
div.cms-pulldown-div a.nr-flyout-edit-pencil:hover, div.cms-pulldown-div a.nr-flyout-edit-pencil-selected {
	position: absolute;
	left: -22px;				/* mozilla renders different position */ 
	-left: -21px; 
	width: 21px; 
	border: 1px solid black; 
	border-right: 0px; 
	background-color: #ffa; 
}

table.cms-nav-pulldown {
	background-color:#8aa;
}

a.PullDownNavNotSelected {
	color: #fff;
	background-color:#8aa;
	border: 1px solid #000;      /* puts a black border around the menu blocks */
	text-decoration: none;
	padding:2px;
}
a.PullDownNavSelected, a.PullDownNavNotSelected:hover, a.PullDownNavSelected.Current:hover {
	color: #000;
	border: 1px solid #000;      /* puts a black border around the menu blocks */
	background-color:#ffa;
	text-decoration: none;
	padding:2px;
}

div.cms-pulldown-div {
	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 */
	z-index: 1;
}
table.cms-nav-pulldown td > div > 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: 6px;                    /* 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 */
	z-index: 2;
}
table.cms-nav-pulldown td:hover > div > 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 */
}