#topNav {
	padding: 0;
	margin: auto;
	position: relative;
	top: 0;
	left: 0;
	list-style-type: none;
	z-index: 1000000000;
}
#topNav li {
	float: left;
}
#topNav li a {
	background: transparent;
	color: #828282;
	display: block;
	font-size: 18px;
	padding: 0 45px 5px 0;
	text-decoration: none;
}
#topNav li a:hover {
	color: #007EA4;
	text-decoration: none;
}
#topNav ul { /* all lists */
	background: #f1f1f1;
	border: solid 1px #e4e4e4;
	border-bottom: none;
	margin: 0;
	padding: 0;
	position: relative;
	list-style: none;
    z-index:1000000;
}
#topNav li { /* all list items */
	float: left;
	position: relative;
    text-align: left;
    list-style: none;
    z-index:1000000;
}
#topNav 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;
}
#topNav li ul { /* second-level lists */
	background: #f1f1f1;
	display: none;
	left: 0px;
	position: absolute;
	top: 23px; /* distance between drop down and head item RHS */
	white-space: normal;
	z-index:1000000;
}
#topNav li ul li {
	background: #fff;
	border-bottom: 1px  #e4e4e4 solid;
	float: none;
	text-align: left;
	width: 127px;
}
#topNav li ul li a {
	color: #828282;
	background-color: #fff;
	background-image: none;
	display: block;
	font-size: 12px;
	height: auto;
	padding: 5px;
	text-align: left;
	width: 117px;
	}
#topNav li ul li a:hover {
	color: #007EA4;
	background-image: none;
	}

#topNav li:hover ul, #topNav li.over ul { /* lists nested under hovered list items */
	display: block;
	z-index:1000000;
}
