/* MyCommunity 2.0 */
/* Copyright 2007-2013 Lightning MultiCom SA, Lausanne, Switzerland and its licensors - www.joomlapolis.com */
/* License: GNU General Public License version 2 http://www.gnu.org/licenses/old-licenses/gpl-2.0.html */

/* Dropdown */

#leftmenu, #leftmenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#leftmenu li li a {
	display: block;
	background:#4996ca;
	width: 10em;
}

#leftmenu li li a:hover { background:#1e5fa2; }

#leftmenu li { /* all list items */
	float: left;
}

#leftmenu li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; z-index:999; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#leftmenu li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#leftmenu li:hover ul ul, #leftmenu li:hover ul ul ul {
	left: -999em;
}

#leftmenu li:hover ul, #leftmenu li li:hover ul { /* lists nested under hovered list items */
	left: auto;
}