/* CSS Document */

#menu {
	display:block;
	position:absolute;
	bottom: 0;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	right: 0px;
	z-index: 100;
	width: 90%;
	overflow: visible;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20%;
}

#menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#menu li { /* all list items */
	float: left;
	position: relative;
	width: 10em;
}

#menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

#menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#menu li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#menu li ul li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

#menu li ul li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: 10em;
}

#menu li ul li:hover ul,
#menu li ul li.over ul { /* lists nested under hovered list items */
	display: block;
}

#menu #nav li.off:hover ul,
#menu #nav li.over ul { 
  display: block;
  z-index: 6000;
	top: 1.5em;
	left: 0;
}

#menu #nav li.off a:hover,
#menu #nav li:hover a,
#menu #nav li.over a {
}
