ul#fly_out {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 292px; /* Width of Menu Items */
	}

ul#fly_out li {
	position: relative;
}
	
li ul {
	position: absolute;
	left: 296px; /* Set 1px less than menu width */
	top: 0;
	display: none;
}

ul#fly_out ul li a {
	display: block;
	text-decoration: none;
	background: #E6E5E5; /* IE6 Bug */
}



/* Fix IE. Hide from IE Mac \*/
* html ul#fly_out li { 
	float: left;
	height: 1%;
}
* html ul#fly_out li a {
	height: 1%;
}
/* End */


ul#fly_out li ul {
	width:auto;
	background:#FFF;
}
		
ul#fly_out li ul li a { 
	padding: 2px 10px; /* Sub Menu Styles */
	margin:0px;
	width:180px;
	height:27px;
} 
		
li:hover ul, li.over ul { 
	display: block; /* The magic */
	
}