#menuT ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menuT li { /* all list items */
	float: left;
	position: relative;
	width: 150px;
}

#menuT li ul {/* second-level lists */
	position: absolute;
	display: block; 
	top: 2em;
    left: 0;
}

#menuT li>ul {/* to override top and left in browsers other than IE */
	top: auto;
	left: auto;
}

#menuT li ul li ul  {/* third-level lists */
	position: absolute;
	display: block; 
	top: 0;
    left: 9em;
}

/* Fix IE. Hide from IE Mac \*/
* html #menuT ul li { float: left; height: 1%; }
* html #menuT ul li a { height: 1%; }
/* End */

#menuT li:hover ul { display: block; }

#menuT li:hover>ul { visibility:visible; }

#menuT ul ul { visibility:hidden; }		

/* Make-up syles */
#menuT ul, li {
    margin: 0 0 0 0; 
}

/* Styles for Menu Items */
#menuT ul a {
	display: block;
	text-decoration: none;
	color: #678228;
	padding: 5px;
	font-weight: bold;
	line-height: 11px;
	text-align: center;
	font-size: 10px;
	border-bottom-color: orange;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-right-color: orange;
	border-right-style: solid;
	border-right-width: 1px;
}
/* Hover Styles */
#menuT ul a:hover { 
	color: #000000; 
	font-weight: bold;
		font-size: 10px;
} 

/* Sub Menu Styles */
#menuT li ul a {
	text-decoration: none;
	color: #000000;
    padding: 5px;
	font-weight: bold;
	border-bottom-color: orange;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-left-color: orange;
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: orange;
	border-right-style: solid;
	border-right-width: 1px;
		font-size: 10px;
} 

/* Sub Menu Hover Styles */
#menuT li ul a:hover { 
	color: #FF9900; 
	font-weight: bold;
		font-size: 10px;
} 

/* Icon Styles */
#menuT li a.submenu { background: #ffffe0; }
#menuT li a.submenu:hover {color: #FF9900;  background: #ffffe0; }
#menuT li ul a.submenu {background: #f4ffe8;}
#menuT li ul a.submenu:hover {background: #f4ffe8;  color: #FF9900;}

