/* Default styling for treemenus.
Override in each project as required.

This file will contain the bare minimum that is common to all treemenus.
As I've done everything so far ad-hoc, I will add common stuff here very
slowly and make sure that I am not breaking anything :-)

*/

#menu ul {
    position:absolute;
    left:-999em;
	/* Ensure that drop down menu always overlaps the page contents.
	This does not work for embedded YouTube videos - will need to warn customers about this. */
    z-index:1000;
    }

#menu li:hover ul ul, #menu li:hover ul ul ul, #menu li:hover ul ul ul ul, #menu li.sfhover ul ul, #menu li.sfhover ul ul ul, #menu li.sfhover ul ul ul ul {
    left:-999em;
    }



















