ul.popupMenu {
	margin-top: 0px;
	
}
ul.popupMenu, ul.popupMenu ul {
			 font-family: Arial, Helvetica, sans-serif;
						 width: 156px;                 /* sets the size of the menu blocks */
		 border: 1px solid #0090D8;     /*  puts a border around the menu blocks */
		 border-collapse:collapse;
	background-color: #006AB5;
			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: #ffffff;                 /* sets the default font colour to white */
}


ul.popupMenu li.child_hidden {
	position: relative;
	left: -2px;
}


ul.popupMenu a {
	font-size: 13px;
	letter-spacing: 1px;
}

ul.popupMenu li a { 
						color: #ffffff; 
					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: #0090D8 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: block;              /* makes the child block visible - one of the most important declarations */
}

ul.popupMenu li+li {
  border-top: 1px solid #0090D8; /*  */
}

ul.popupMenu li a#selected {
	font-weight: bold;
}

ul.popupMenu li.child_showing {
	background-color: #B5BC77;
}

ul.popupMenu li.child_showing a:hover {
	background-color: #B5BC77;
	color: white;
	text-decoration: underline;
}

ul.popupMenu li.child_showing>ul {
	margin-left: 15px;
}

ul.popupMenu li.child_showing ul {
	border: none;
	font-size: 13px;
	color: #0000FF;
	background-color: #D9DBAB;
	width: 137px;
	margin-right:0px;
}




ul.popupMenu li.child_showing ul li {
	padding: 5px;
	border: none;
	list-style-position: inside;
	list-style-type: disc;	
	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: #B5BC77;
}
