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

#topNav li {
}

#topNav div {
	background-image: url('/sanus/images/common/topnav_divider.gif');
	background-position: left;
	background-repeat: no-repeat;
}

#topNav .topNavLast {
	background-image: url('/sanus/images/common/topnav_divider.gif');
	background-repeat: no-repeat;
	background-position: left;
	height: 32px; 	
}

#topNav li a {
	color: #47505A;
    display: block;
    font-size: 14px;
    margin: 0 0 0 1px;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
}

#topNav li a:hover {
	background: #ffffff;
    text-decoration: none;
}

#topNav ul { /* all lists */
    background: #F3F3F3;
    border-bottom: none;
    margin: 0;
    padding: 0 0 0 4px;
    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: #E8E8E9;
    border-top: solid 1px #47505A;
    display: none;
    left: 0px;
    padding-bottom: 4px;
    position: absolute;
    top: 32px; /* distance between drop down and head item RHS */
    white-space: normal;
    width: 150px;
    z-index: 1000000;
}

#topNav li ul li {
    background: #E8E8E9;
    border-bottom: solid 1px #C3C3C3;
    float: none;
    margin: 0 0 0 -4px;
    position: relative;
    text-align: left;
    width: 154px;
    z-index: 1000000;
}

#topNav li ul li a {
    color: #47505A;
    background-color: #E8E8E9;
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    margin: 0;
    padding: 4px 0 4px 4px;
    text-align: left;
}

#topNav li ul li a:hover {
    background: #f8f8f9;
    color: #8A2537;
}

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

