/* menuH.css
 * For: menuDropdown.js (version: 0.1x)
 */

/* if the menu is horizontal:
 * avoid defining 'static' elements that have a non-zero border and that have
 * their 'width' or 'height' different than 'auto', when they are ancestors of
 * submenu elements (including #mainMenu and #menuList themselves)
 * it may cause slight positioning bugs in Win/IE5-6
 * for the same reason, avoid setting a non-zero border on the BODY element if
 * Win/IE6.0 switches to standards-compliant mode
 */
/* if the menu is horizontal and has a 'static' position:
 * do not set neither margin nor padding nor border on the HTML element, as it
 * will lead to wrong submenu position in Opera 7
 * do not set margin on the BODY element neither (use padding instead)
 */

#customizerMenu {
	margin: 0;
	padding: 0;
	/* if the menu is horizontal and has a 'static' position:
	* do not set a non-zero margin-top, if the BODY element has a zero
	* padding-top and this menu is its first 'static' child
	* this is due to an Opera 7 bug :-(
	*/
	z-index: 1;
	position: static;
	/* if the menu is horizontal: use a 'static' position
	* if the menu is vertical: use an 'absolute' or 'fixed' position
	*/
}

#customizerMenu li {
	/* do not change these rules */
	display: inline;
	margin: 0;
	padding: 0;
	list-style: none;
	/* do not change these rules */
}

#customizerMenu li a {
	font-weight: normal;
	text-decoration: none;
}

#customizerMenu li a.mainlevel {
	display: block;
	float: left;
	/* always set margin to '0' */
	/* Win/IE5.0 will ignore border and padding if display is 'inline' */
}

/* As Win/IE5.0 doesn't apply padding on inline elements, background images
 * must be hidden from it, otherwise they will be displayed behind text
 */
#customizerMenu .menu li a {
	display: block;
	
}


#customizerMenu .menu {
	margin: 0;
	padding: 0;
	/* only set '0' or negative margin */
	/* border  width must be the same on the four sides (in 'px' units) */
	/* padding width must be the same on the four sides (in 'px' units) */
	z-index: 1;
	position: absolute;
	visibility: hidden;
	/* always set position to 'absolute' and visibility to 'hidden' */
}

