
/* menu */

/*single unordered list - all main menu items together*/
#mx, #mx ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*pop-up menu items*/
#mx ul li { 
	border-bottom: none;
	padding-left:5px;
	margin:2px;
}

/*main menu items*/
#mx a {				
	display: block;
	margin: 0em;     /*cells 4 margins for both main menu items and popup menu items*/
	padding: 1px;
	text-decoration: none;
	color: black;
}
#mx a.hover {
	text-decoration: underline;
	color: black;
}

/* menu parent */
#mx li.m {
	position: relative;
	width: 12em;
}

/* submenu indicator */
#mx li.m a {
	background: url(a.png) 100% 50% no-repeat;
}
#mx li.m a:hover {
	background: url(ah.png) 100% 50% no-repeat;
	text-decoration: underline;
}
#mx li.m ul a, #mx li.m ul a:hover {
	background-image: none;
}

/* popup menus */
#mx li.m ul {
	display: none;
	position: absolute;
	top: 0;
	left: 11em;		/*left indent from main menu item*/
	width: 6em;		
	border: 1px solid #4682B4; 
	background: white;
}
/* width of popup menu */
#mx li.m ul a {
	width: 12em;
}