<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* menu triggers 
using position makes them accessible to browser-based screenreaders 
using an attribute selector is so they're not visible to mac/ie5 
*/
ul[id="udm"] li &gt; ul { visibility:visible; display:block; left:-10000px; overflow:visible !important; }
ul[id="udm"] li:hover &gt; ul { left:auto; height:auto; }

/* submenu offset 
margin-left nexus = 0
margin-top nexus = 0 
*/
#udm li ul {
	margin:-1px 0 0 0;
	}

/* child-menu offset 
margin-left nexus = menu width 
margin-top nexus =  (0 - trigger height)
*/
#udm li ul ul {
	margin:-2.2em 0 0 8.7em;
	}
</pre></body></html>