#menu {
	width: 123px;
}

#menu a {
	margin: 0px;
	padding: 0px;
	display: block;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: rgb(255,255,255);
	text-decoration: none;
	/* padding for the text within the menu */
	padding-left: 7px;
	padding-top: 2px;
}

/* Setup for the 1st level menu */
#menu ul {
	list-style: none;
	margin: 0px;
	padding-left: 16px;
	padding-top: 20px;
}

/* Setup for each menu item in the 1st, 2nd & 3rd levels */
#menu li {
	width: 123px;
	height: 18px;
	position: relative;
	background-image: url(../images/navbar1-off.gif);
	background-repeat: no-repeat;
	/* vertical seperation between the items in each level */	
	padding-bottom: 2px;
}

/* Setup for the 2nd & 3rd level menu */
#menu ul ul {
	padding: 0px;	/* reset the padding from the 1st level to zero for subsequent levels */
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	/* horizontal seperation between the 1st-2nd & 2nd-3rd levels */	
	/* Must be set to zero. If there's spacing, child menu will disappear when moving from parent to child in IE */
	/* Spacing is implemented in the background image */
	padding-left: 0px;
}

/* Setup for each menu item in the 2nd & 3rd levels */
#menu ul li {
	padding: 0px;	/* reset the padding that was setup above to zero */
	/* vertical seperation between the items for the 2nd & 3rd levels */	
	padding-bottom: 2px;
}

/* Setup roll-over image for the 1st, 2nd & 3rd levels */
#menu ul li:hover {
	background-image: url(../images/navbar1-on.gif);
	background-repeat: no-repeat;
}

#menu ul ul,	/* no hovering over any levels */
#menu ul li:hover ul ul /* disable 3rd level menu when hovering over 1st level */
{
	display: none;
}

#menu ul li:hover ul,	/* enable 2nd level menu when hovering over 1st level */
#menu ul ul li:hover ul	/* enable 3rd level menu when hovering over 2nd level */
{
	display: block;
}
