ul {	margin: 0;	padding: 0;	list-style: none;	width: 200px; /* Width of Menu Items */	font-family: Arial, Helvetica, sans-serif;	font-size: 12px;	height: 30px;}ul li {	position: relative;	}	li ul {	position: absolute;	left: 100px; /* Set 1px less than menu width */	top: 0;	display: none;	}/* Styles for Menu Items */ul li a {	display: block;	text-decoration: none;	color: white;	background: url('photos/sx2.gif'); /* IE6 Bug */	padding: 5px;	}/* Fix IE. Hide from IE Mac \*/* html ul li { float: left; height: 1%; }* html ul li a { height: 1%; }/* End */ul li a:hover {	color: white;	background: url('photos/sx2.gif');	text-decoration:underline;	background-image:url('photos/sx2.gif')} /* Hover Styles */		li ul li a {	background-image: url('none');padding-left:5px; padding-right:5px; padding-top:2px; padding-bottom:2px} /* Sub Menu Styles */		li:hover ul, li.over ul { display: block; } /* The magic */