.cat_menu {
	width: 160px;
}

.cat_menu, .cat_menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.cat_menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
	width: 150px;
}

.cat_menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.cat_menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.cat_menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

.cat_menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 2px;
	left: 90%;
}

.cat_menu li {	/* create borders around each item */
	border: 2px solid #003300;
	margin-bottom: 4px;
	-moz-border-radius: 7px;
	-khtml-border-radius: 7px;
	-webkit-border-radius: 7px;
}

.cat_menu li li {	
	margin-bottom: -2px;
	border: 2px solid #009900;
}

#module_category li {
	background: #FFFFFF url('../image/back_grad3.png') repeat-x;
	padding: 0;
	font-weight: bold;
}

#module_category li:hover {
	color: #009900;
	border: 2px solid #009900;
	text-decoration: none;
	font-weight: bold;
}

#module_category li a {
	font-weight: bold;
	width: 90%;
	margin: 0 auto;
	cursor: pointer;
	display: block;
}

#module_category li:hover a {
	text-decoration: none;
	font-weight: bold;
}

#module_category li.cat_lvl_s1 {
	margin-left: 7px;
	width: 143px;
}

#module_category li.cat_lvl_s2 {
	margin-left: 14px;
	width: 136px;
}

#module_category li.cat_lvl_s3 {
	margin-left: 21px;
	width: 129px;
}

#module_category li.cat_lvl_s4 {
	margin-left: 28px;
	width: 122px;
}

#module_category li.cat_lvl_s1 h3,
#module_category li.cat_lvl_s2 h3,
#module_category li.cat_lvl_s3 h3,
#module_category li.cat_lvl_s4 h3,
#module_category li.cat_lvl_1 h3,
#module_category li.cat_lvl_2 h3,
#module_category li.cat_lvl_3 h3,
#module_category li.cat_lvl_4 h3 {
	font-size: 84%;
}