/* CBFunLite Copyright 2011 www.joomlapolis.com */

/* Dropdown */
#tabs ul li ul li { background:none; }
#tabs ul li.parent ul li:hover a span { background-position: 95% -33px; }
#tabs ul li.parent span { padding: 0 10px 0 5px; }
#tabs ul li.parent ul { margin:-1px -25px 0 -4px; }
#tabs ul li.parent ul li { margin:0; border-bottom:solid 1px white; padding-left:0; }

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

#tabs li li a {
	display: block;
	width: 10em;
}

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

#tabs 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 */
}

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

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

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