/* CSS Document */
/*
*/
/*
 *	Rules for simulated drop-down/pop-up lists
 */
ul {
	/* rules common to BOTH inner and outer UL */
	z-index:	100000;
	margin:		1ex 0;
	padding:	0;
	list-style:	none;
	cursor:		pointer;
	border:		0em solid Black;
	/* rules for outer UL only */
	/* width:		15ex;*/
	position:	relative;
}
ul li {
	/* background-color: #EEE; */
	padding: 0.15em 1em 0.0em 0.3125em;
}
ul ul {
	display:	none;
	position:	absolute;
	width:		100%;
	left:		-0.0625em;
	/* Pop-Up */
	bottom:		0;
	margin:		0;
	margin-bottom: 1.55em;
	
}
.ui-layout-north ul ul {
	/* Drop-Down */
	bottom:		auto;
	margin:		0;
	margin-top:	1.45em;
}
