
div#menu {
	position:relative;
	height:20px;
	background-image:url(images/bgbluebar.gif);
	background-repeat: no-repeat;
	background-position:center;
	padding-left:17px;
	margin-bottom:3px;
	z-index:2000;
}

div#menu a {
	color:black;
	background-color:transparent;
	display:block;
	width:100%;
	text-align:center;
	font-size:12px;
	/* font-weight:bold; */
}

div#menu a:hover {
	text-decoration:none;
}

div#menu ul {
	list-style:none;
	padding:0px;
	margin:0px;
}

div#menu li {
	line-height:18px;
	width:87px;
	float:left;
	border:1px solid black;
	background-color:#ffe;
	margin-right:2px;
	margin-left:0px;
}

div#menu ul#menuGardens li {
	width: 175px;
}

div#menu ul#menuGardens a {
	text-align: left;
	padding-left: 6px;
}

div#menu ul#menuOurProgram li {
	width: 130px;
}

div#menu ul#menuOurProgram a {
	text-align: left;
	padding-left: 6px;
}

div#menu ul#menuJoinUs li {
	width: 140px;
}

div#menu ul#menuJoinUs a {
	text-align: left;
	padding-left: 6px;
}

div#menu li ul { /*adjust the position and width of the second-level menus*/
	width:87px; /* this width is the same as the list item width in the rule above*/
	background-image:url(images/shim.gif); /* this keeps the submenus from collapsing in IE when there is space between the submenu items*/
	margin-top:0px;
	margin-left:0px;
	padding-left:0px;
	position:absolute; /* allows the submenus to be hidden off-screen before hover */
	left:-2000px; /* hide the submenu off screen!  */
}

div#menu li ul li {
	margin-top:2px;
	margin-bottom:0px;
}

div#menu li:hover ul { /* this is the trick that brings the submenus back*/
	left:auto; /* brings submenu back to left:0px, however position can be adjusted */
}

div#menu li:hover {/* style top-level menu item hovers*/
	background-color:#dff;
}

div#menu li:hover li {/* style submenu list items */
	background-color:#fff;
}

div#menu li li:hover {/* style second-level menu hovers*/
	background-color:#dff;
}


