#nav2 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 166px; /* Width of Menu Items */
	}
	
/* the following rule is recognized only by IE */	
* html #nav2 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 166px; /* Width of Menu Items */
	}

#nav2 ul li {
	position: relative;
	}
	
#nav2 li ul {
	position: absolute;
	left: 165px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}
	
/* the following rule is recognized only by IE */	
* html #nav2 li ul {
	position: absolute;
	left: 165px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
#nav2 ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	background: #9C4747; /* IE6 Bug */
	padding: 5px;
	border-bottom: 1px solid #640F0F;
	}

/* Fix IE. Hide from IE Mac \*/
* html #nav2 ul li { float: left; height: 1%; }
* html #nav2 ul li a { height: 1%; }
/* End */

#nav2 ul li a:hover { color: #FFF; background: #8B3636; } /* Hover Styles */
		
#nav2 li ul li a { padding: 2px 5px; background: #666666;} /* Sub Menu Styles */
		
#nav2 li:hover ul, #nav2 li.over ul { display: block; } /* The magic */