
ul {
	display: block;
	font-weight: bold;
	text-decoration: none;
	color: black;
	background: transparent; /* IE6 Bug */
	padding: 5px;
	border-bottom: 1px solid #f0e7e0;
	line-height: 16px;
	margin: 0;
	list-style: none;
	width: 250px; /* Width of Menu Items */
	}

ul li {
	position: relative;
	font-weight: normal;
	text-decoration: none;
	padding-left: 6px;
	}

li ul.left {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

li ul.left li ul.left{
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

li ul.right {
	position: absolute;
	right: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

li ul.right li ul.right{
	position: absolute;
	right: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	font-weight: normal;
	color: black;
	background: transparent; /* IE6 Bug */
	border-bottom: 1px solid transparent;
	line-height: 13px;

	}

/* 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: green;
	font-weight: bold;
	border-bottom: 1px solid #f0e7e0;

} /* Hover Styles */

li ul li a { padding: 2px 5px; width: 150px; height:20px;} /* Sub Menu Styles */

li:hover ul, li.over ul { display: block; } /* The magic */
li:hover ul li:hover ul, li.over ul li.over ul { display: block; } /* The magic */
