#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		width : 203px;
		}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : 0px;
		width: 203px;
		border-bottom : 1px solid #fff;
		list-style: none;
		}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 203px;
		margin-top : -2em;
		list-style: none;
		z-index: 2;
		padding-left: 1px;
		}
	
	#nav li ul ul { /* third-and-above-level lists */
		position : absolute;
		left: -999em;
		margin-left : 203px;
		margin-top : -2em;
		list-style: none;
		z-index: 1;
		padding-left: 1px;
	}
	
	#nav li a {
		display : block;
		color : #fff;
		font:bold 11px/.95em Tahoma, Arial, Helvetica, sans-serif;
		text-decoration : none;
		background: #5E84BC; /* url(http://p2.hostingprod.com/@egeneralmedical.com/img/pop-bg.gif) no-repeat 100% 2px;*/
		padding: 8px 20px 8px 0;
		text-align: right;
		width: 203px;
	}

	
	#nav li a:hover {
		color : #fff;
		background: #AEBB85 /*url(http://p2.hostingprod.com/@egeneralmedical.com/img/pop-bg.gif) no-repeat 100% -100px;*/
		z-index: 1;
	}
	
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
	}
	
	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
	
