/*=============structure========================================*/
.Menu,
.Menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.Menu li { /* all list items */
	float: left;
	position: relative;
	width: auto;
	white-space: nowrap;
	height: auto;
}

.Menu li ul { /* second-level lists */
	display: none;
	float:left;
	position: absolute;
	top: 24px;
	left: 0px;
	width: 200px;
}
.Menu li ul li {
	display: block;
	white-space: nowrap;
	overflow: visible;
	width: 200px;
}

.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 */
}

.Menu li:hover ul { /* lists nested under hovered list items */
	display: block;
	z-index: 999999;
}

li.over,
li.over ul { /* hover for IE*/
	display: block;
	z-index: 999999;
}
/*=============structure========================================*/
