#topNav {
	padding: 0;
	margin: auto;
	position: relative;
	top: 22px;
	left: 0px;
	list-style-type: none;
}
#topNav li {
	float: left;
}
.navDivider {
	background-color: #005fbb;
	float: left;
	margin: 1px 0 0 0;
	height: 33px;
	width: 1px;
}
#topNav li a {
	color: #fff;
	display: block;
	font-size: 18px;
	padding: 8px 20px 11px 20px;
	text-align: center;
	text-decoration: none;
	/* width: 119px; */
}
#topNav li a:hover {
	display: block;
	text-decoration: none;
}
#topNav ul { /* all lists */
	background: #f8f7f1;
	border: solid 1px #828282;
	border-bottom: none;
	margin: 0;
	padding: 0;
	list-style: none;
    z-index: 1000;
}
#topNav li { /* all list items */
	float: left;
	position: relative;
    text-align: center;
    list-style: none;
    z-index: 400;
}
#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: #f8f7f1;
	display: none;
	left: -1px;
	position: absolute;
	top: 38px; /* distance between drop down and head item RHS */
    /* width: 144px; */
	white-space: normal;
	z-index: 1000;
}
#topNav li ul li {
	background: #f8f7f1;
	border-bottom: 1px  #828282 solid;
	float: none;
	text-align: left;
	width: 130px;
	z-index: 100;

}
#topNav li ul li a {
	color: #004990;
	background-color: #F1F1F1;
	font-size: 12px;
	padding: 5px;
	text-align: left;
	z-index: 110;

	}
#topNav li ul li a:hover {
	background-color:  #b0c2d4;
	}

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