/* Overall UL font */
.cmnu { font: bold 12px/14px Arial,Helvetica }
.cm2 {list-style: none; }
/* First Level UL */
ul.cmnu {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 156px; /* Width of Menu Items */
	border-bottom: 1px solid #cc9;
	
	}
/* First Level Items */
ul.cmnu li {
	position: relative;
	}
/* Second Level UL */	
ul.cmnu li ul { position: absolute; left: 116px; /* Set 1px less than menu width */
	top: -40; display: none; list-style: none; border-bottom: 1px solid #996; width: 224px; height: 400px; overflow: auto;  }

/* Styles for First Level Menu Items */
ul.cmnu li a {
	display: block;
	text-decoration: none;
	color: #660000;
	background: #cc9; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #cc9; 
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul.cmnu li { float: left; height: 1%; }
* html ul.cmnu li a { height: 1%; }
* html ul.cmnu li ul { width: 216px; }
/* End */

ul.cmnu li a:hover { color: #fff; background: #996; } /* Hover Styles */
/* Second Level Items */
ul.cmnu li ul li a { padding: 3px 3px; width: 200px; background-color: #E2E2BE; font: 11px/12px tahoma,verdana,arial,helvetica; } /* Sub Menu Styles */
/* ul.cmnu li ul li { border-bottom: 1px solid #036; } */
		
ul.cmnu li:hover ul, ul.cmnu li.sfhover ul { display: block; } /* The magic */ 