ul.popupMenu {
	margin-top: 0px;
}
ul.popupMenu, ul.popupMenu ul {
	font-family: Arial, Helvetica, sans-serif;
	width: 130px; /* sets the size of the menu blocks */
	background-color: #63CAE9;
	padding-left: 0px; /* 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 {
	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: 11px;
	font-weight: bold;
	letter-spacing: .1em;
}
*html ul.popupMenu a {
	width: 100%;
}
ul.popupMenu li a, ul.popupMenu li a:link, ul.popupMenu li a:visited {
	color: #000000;
	display: block;
	margin:0;
	padding: 5px;
	text-decoration: none;
	background-color: #63CAE9;
}
* html ul.popupMenu li a {
	padding: 0px 2px 5px 5px;
}
ul.popupMenu li a:hover {
	color: #0066FF;
	text-decoration: underline;
	background-color: #ACDDF7;
}
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: 129px;                  /* 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: 25;
}
ul.popupMenu li.child_hidden ul {
/*	border-top: 1px solid #c3c6a6;
	border-bottom: 1px solid #c3c6a6;
	border-left: 1px solid #c3c6a6;
*/}
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 #acada5;   
}
ul.popupMenu li.child_showing ul li+li {
  border-top: 1px solid #acada5;   
}
*html ul.popupMenu li.child_showing ul li {
  border-top: 1px solid #acada5;   
}
*/

ul.popupMenu li a#selected {
	color: #0066FF;
	background-color: #dcf7ff;
}
ul.popupMenu li.child_showing {
}
ul.popupMenu li.child_showing a:hover {
	color: #0066FF;
	text-decoration: underline;
}
ul.popupMenu li.child_showing>ul {
}
ul.popupMenu li.child_showing ul {
	border: none;
	width: 122px;
	margin-left: 8px;
	margin-right:0px;
}
ul.popupMenu li.child_showing ul li {
	margin: 0px;
	padding: 0px;
	border: none;
	list-style-position: outside;
	list-style-type: none;
}
ul.popupMenu li.child_showing>ul li {
}
ul.popupMenu li.child_showing li:hover, ul.popupMenu li.child_showing:hover {
}
