
ul.popupMenu {
	margin-top: 0px;
}

ul.popupMenu, ul.popupMenu ul {
			 font-family: Verdana, Arial, Helvetica, sans-serif;
						 width: 156px;                 /* sets the size of the menu blocks */
		 border-bottom: 1px solid #000000;      /* puts a black border around the menu blocks */
	background-color: #C4D8A7;
			padding-left: 0em;           /* 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.popupMenu li {
		 padding-left: 5px;
		  padding-top: 2px;
	 padding-bottom: 2px;
		padding-right: 0px;
	list-style-type: none;       /* removes the bullet points */
					 margin: 0px;                 /* Opera 7 puts large spacings between li elements */
						color: #000000;                 /* sets the default font colour to white */
}


ul.popupMenu li.child_hidden {
	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.popupMenu a {
	font-size: 13px;
	letter-spacing: 1px;
}

ul.popupMenu li a { 
						color: #000000; 
					display: block; 
						width: 100%; 
	text-decoration: none; 					
}

ul.popupMenu li a:hover { 
						color: #ffffff; 
	text-decoration: underline; 
}

ul.popupMenu li.child_hidden > 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: -1px;                    /* position slightly lower than the parent menu item */
  		left: 156px;                  /* 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: 5;
}

ul.popupMenu li.child_hidden ul  {         
	border: #000000 1px solid; 
}

ul.popupMenu li.child_hidden: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: hidden;              /* display: block;      makes the child block visible - one of the most important declarations */
}

ul.popupMenu li+li {
  border-top: 1px solid #000000;   
}
ul.popupMenu li ul li {
  list-style-type: none;       /* removes the bullet points */
}
ul.popupMenu li a#selected {
	font-weight: bold;
}

ul.popupMenu li.child_showing {
	background-color: #C4D8A7;
}

ul.popupMenu li.child_showing a:hover {
	/*background-color: #C4D8A7;*/
	color: white;
	text-decoration: underline;
}

ul.popupMenu li.child_showing>ul {
	margin-left: 15px;
}

ul.popupMenu li.child_showing ul {
	border: none;
	font-size: 11px;
	color: #000000;
	background-color: #8CAADE;
	width: 137px;
	margin-right:0px;
}




ul.popupMenu li.child_showing ul li {
	padding: 5px;
	border: none;
	list-style-position: inside;
	list-style-type: none;	
	vertical-align: middle;
}

ul.popupMenu li.child_showing>ul li {
	list-style-position: outside;
}

ul.popupMenu li.child_showing li:hover, ul.popupMenu li.child_showing:hover {
		/*background-color: #8CAADE;*/
}
