/*********************** Code to allow for nested UL / LI menus */
* html body {
	behavior:url("/css/csshover.htc");
}

#nav ul li ul {
	display:none;
	z-index:10;
	background:#0079C2;
	width:auto;
	margin-left:-3px;
	
}

#nav ul li:hover ul {
	display:block;
	position:absolute;
}

#nav ul li ul li {
	clear:left;
	float:left;
	border:none;
	margin:0;
	text-align:left;
	width:200px;
	z-index:11;
	
}

#nav ul li ul li a {
	font-size:12px;
	display:block;
	width:auto;
	height:100%;
}

* html #nav ul li ul {
	margin:29px 0 0 -100%;
}

* html #nav ul li ul li a {
	width:100%;
}