.catMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 143px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

.catMenu ul li {
	position: relative;
        background-image:none;
        padding:0;
	}
.catMenu ul li:hover{
        background:none;
	}
	
.catMenu li ul {
	position: absolute;
	right: 142px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
.catMenu ul li a {
	display: block;
	text-decoration: none;
	background: #fff url(../js/TreeMenu/img/folder.gif) no-repeat right center; /* IE6 Bug */
	padding: 5px 20px 5px 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
        
	}

/* Fix IE. Hide from IE Mac \*/
* html .catMenu ul li { float: left; height: 1%; }
* html .catMenu ul li a { height: 1%; }
/* End */

.catMenu ul li a:hover { color: #E2144A; background-color: #EFF2F3; border-bottom: none; padding-bottom:5px;} /* Hover Styles */
		
.catMenu li ul li a { padding: 5px 20px 5px 5px; background: #fff url(../js/TreeMenu/img/cd.gif) no-repeat right center; color:#777;} /* Sub Menu Styles */
		
.catMenu li:hover ul, .catMenu li.over ul { display: block; } /* The magic */