.cat_menu {
	width: 198px;
}

.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: 184px;
}

.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: 5px;
	left: 97%;
}

.cat_menu li {	/* create borders around each item */
	border-top: 2px solid #1C3664;
	border-bottom: 2px solid #1C3664;
	border-right: 2px solid #1C3664;
	-moz-border-radius-bottomright: 3px;
	-khtml-border-bottom-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
}

.cat_menu li li {	/* create borders around each item */
	border-left: 2px solid #1C3664;
}

#module_category li {
	background: #FFFFFF;
}

#module_category li:hover {
	background: #FED401;
}

#module_category li.cat_lvl_s1 {
	padding-left: 14px;
	width: 177px;
}

#module_category li.cat_lvl_s2 {
	padding-left: 21px;
	width: 170px;
}

#module_category li.cat_lvl_s3 {
	padding-left: 28px;
	width: 163px;
}

#module_category li.cat_lvl_s4 {
	padding-left: 35px;
	width: 156px;
}