.mymenu{
	font: normal 14px verdana;
	font-size: 14pt;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 195px; /* Width of Menu Items */
	border-bottom: 1px solid #666633;
	}

ul2 {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #666633;
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 194px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #251311;
	background-image:url("images/menu.jpg"); #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #666633; /* IE6 Bug */
	border-bottom: 0;
	}
ul li a:hover {
	font-style:italic;
	font-weight:bold;
	display: block;
	text-decoration: none;
	color: #251311;
	background-image:url("images/menu.jpg"); #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #666633; /* 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 ul, li.over ul { display: block; } /* The magic */

