#topNav {

      line-height:normal;
	  text-align:center;
	  margin: 0 auto 0 auto;
	  padding: 0;
	
	list-style: none;

}
 #topNav ul { /* all lists */
 margin: 0 auto 0 auto;
	padding: 0;
	margin: 0;
	list-style: none;

	 }
	 
	 



#topNav li ul { /* second-level lists */
	position: absolute;

	color:black;
	background-color: #FC3C94;
	width: 12em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#topNav li ul li{

text-align:left;
	width:12em;
text-decoration:none;
   border-bottom: dotted white 1px;
}
	
#topNav li ul li:hover  {
	background-color:#0495B4;

}

#topNav li ul li  a {
	color:black;

	text-decoration:none;
	}

#topNav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 8em;
}

#topNav li:hover ul ul, #topNav li.sfhover ul ul {
	left: -999em;
	
}

#topNav li:hover ul, #topNav li li:hover ul, #topNav li.sfhover ul, #topNav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


#topNav li:hover, #menu li.hover {
    position: static;
}