/* CSS Document */

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

.menu li { /* all list items */
	float: left;
	position: relative;
	padding-right: 0px;
	padding-left: 1px;
	width: 103px;
	height: 32px;
}

.menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	padding: 2px;
	width: 145px;
}

.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;
	width: 145px;
}

.menu li:hover ul, .menu li.over ul { /* lists nested under hovered list items */
	display: block;
	position: absolute;
	background-color: #313b7c;
	border: 1px solid #4f5caa;
	padding: 4px;
	width: 145px;
}

.subMenu li{
	width: 145px;
}