	
	/* ****** SUCKERFISH ****/
	
	#nav, #nav ul
	{
		/* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float: left;
		width: 220px;
		/* added */
		background-color: #B7CEA0;
		/*border: 1px solid #88cc88; */
		border-top: none;
		background-image: url(images/templates/sidenav_bkgd.gif);
		background-repeat: repeat-x;
		
	}
	
	
	
	#nav li
	{
		/* all list items */
		position: relative;
		float: left;
		font-family: tahoma,sans-serif;
		line-height: 1.4em;
		text-indent: 8px;
		text-align:left; /* needed else ie centers ul */
		margin-bottom: -1px;
		width: 218px;
		/* added */
		height: 24px;
		z-index:10;/* ie requires this */
		
	}
	
	#nav li:hover, #nav li.sfhover
	{
		background-color: #03758c;
		/* this is the main nav bkgd on hover of the submenu */
		background: url(images/templates/sidenav_hover_bkgd.gif) no-repeat;
	}
	
	#nav li ul
	{
		/* second-level lists */
		position: absolute;
		left: -999em;
		margin-left:200px;
		margin-top: -18px;
		width: 180px;
		border: 1px solid #efefef;
		background-image: url(images/templates/sidenav_liul_bkgd.gif);
		background-repeat: repeat;
	}
	
	#nav li ul ul
	{
		/* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li ul li
	{
		margin:0; /* needed */
		padding:0;
		width: 180px;
		height: 24px;
		color: #667a3a;
		text-decoration: none;
		border-bottom: 1px solid #afefaf;
	}
	
	#nav ul ul li:hover, #nav ul ul li.sfhover
	{
		background: url(images/templates/sidenav_liulli_hover.gif) no-repeat;
	}

	#nav li a
	{
		display : block;
		text-decoration: none;
		padding: 0;
		/* added */
		width:100%;
		font-family: tahoma,sans-serif;
		color: #667a3a;
	}
	
	#nav li ul li a { font-size: .9em; }
	
	#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;
		
	}