	#nav, #nav ul { /* all lists */
	margin: 0;
	padding: 0;
	list-style: none;
	width: 203px; /* Width of Menu Items */
	/*border-bottom: 1px solid #ccc;*/
	/*float : left;*/
	background-image:url(/images/bg_nav_regular.gif);
	background-repeat:no-repeat;
	height:29px;
	}
	
	#nav li { /* all list items */
	position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : -1px;
	width: 203px;
	background-image:url(/images/bg_nav_regular.gif);
	background-repeat:no-repeat;
	height:27px;
	padding:0;
	margin:0;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -900em;
		margin-top : -29px;
		margin-left:203px;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
		background: url(/images/bg_nav_normal.gif) no-repeat;
		font-size:12px;
		display: block;
		width: auto;
		padding: 8px 0;
		padding-left: 20px;
		text-decoration: none;
		color:#FFFFFF;
	}
	
	#nav li a:hover {
		color: #FFFFFF;
		background-image:url(/images/bg_nav_over.gif); /*onMouseover image change. Remove if none*/
		text-decoration: none;
	}
	
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
		margin-left:203px;
	}
	
	#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;
	}

