/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */

.neomenu {
	margin: 0;
	padding: 0;
	/* if the menu is vertical:
	* set border to 'none'
	* padding-left must be equal to padding-right
	*/
	z-index: 1;
	position: relative;
	/* if the menu is horizontal: use a 'static' position
	* if the menu is vertical: use an 'absolute' or 'fixed' position
	*/
}

.neomenu #menulist {
	margin: 0;
	padding: 0;
	/* do not use a position other than 'static' here */
	/* if the menu is vertical:
	* margin-left + border-left-width + padding-left must be equal to
	* margin-right + border-right-width + padding-right
	*/
}

.neomenu #menulist li {
	/* do not change these rules */
	display: inline;
	margin: 0;
	padding: 0;
	list-style: none;
	/* do not change these rules */
}

.neomenu #menulist li a {
	display: block;
}

.neomenu #menulist li a.submenu {
	width/* */: auto; /* hides the following rule from Win/IE5.0 */
}

.neomenu #menulist .menu {
	margin: 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' */
}
