ul {

	padding-left: 200px;
	list-style: none;
	width: 300px; /* Width of Menu Items */
	
	}
	
ul li {
	position: relative;
	}
	
li span {
	position: absolute;
	left: 299px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	padding-left: 35px;
	padding-top: 15px;
	font-size: 13px;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #000; /* IE6 Bug */
	padding: 5px;
	border: 0px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	}
	
/* Holly Hack. IE Requirement \*/
* html ul li {/*float:left;*/
	height: 1%;
}
* html ul li a { height: 1%; }
/* End */


li:hover span, li.over span { display: block; width: 300px;} /* The magic */
ul li a:hover span, li.over span { display: block; width: 300px;} /* The magic */
