#topNav {
    float: left;
    list-style-type: none;
    position: relative;
    text-align: left;
    top: 18px;
    z-index: 1000000;
}

#topNav li {
}

.navDivider {
	background-color: #bac0b6;
	float: left;
	margin: 1px 0 0 0;
	height: 36px;
	width: 1px;
}

#topNav li a {
	color: #fff;
    display: block;
    font-size: 18px;
    font-weight: normal;
    padding: 10px 20px 12px 20px;
    text-align: center;
    text-decoration: none;
}

#topNav ul { /* all lists */
    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: 10000000;
}

#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: #fff;
    border: solid 1px #8da37d;
    border-bottom: none;
    display: none;
    left: 0px;
    position: absolute;
    top: 38px; /* distance between drop down and head item RHS */
    white-space: normal;
    width: 150px;
    z-index: 1000000;
}

#topNav li ul li {
    border-bottom: solid 1px #8da37d;
    float: none;
    margin: 0;
    position: relative;
    text-align: left;
    z-index: 1000000;
}

#topNav li ul li a {
    color: #003F5F;
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    margin: 0;
    padding: 5px;
    text-align: left;
    width: 140px;
}

#topNav li ul li a:hover {
    background: #cbd6c5;
}

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

