#menu {
	border-top: 1px solid #000;	
	border-bottom: 1px solid #000;	
	}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 125px; /* Width of Menu Items */
	xborder-bottom: 1px solid #ccc;
	xborder-bottom: 1px solid #73C0EC;
	xbackground: #73C0EC;
	}
li {
	font: normal 11px verdana;
	}
ul li {
	position: relative;
	left: 1px; /* Set 1px less than menu width */
	}
	
li ul {
	position: absolute;
	/* left: 124px; */ /* Set 1px less than menu width */
	top: 23;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #666666;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	xborder: 1px solid #ccc;
	xborder-bottom: 0;
	}

ul li ul li a {
	padding-left: 10px;
	display: block;
	text-decoration: none;
	color: #666666;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	xborder: 1px solid #ccc;
	xborder-bottom: 0;
	}
.endcap {
	border-bottom: 1px solid #000;
	}

/* 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: #E2144A; text-decoration: underline;  } /* Hover Styles  background: #f9f9f9;*/
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */