.menuGen {
	z-index:1000;
	height:358px;
	margin: 0px; /* this page only */
	margin-top: 4px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menuGen ul {
	position:relative;
	padding:0;
	margin:0;
	list-style-type:none;
	width:120px;
	height:358px;

}

.menuGen li {
	/*height:19px;
	line-height: 19px;*/

}
.menuGen img {
	margin-right:5px;
	margin-top: 0px !important;
	margin-top: 7px;
}


* html .menuGen li {
	margin-left:-16px;
	margin-lef\t:0;
}

/* get rid of the table */
.menuGen table {
	position:absolute;
	border-collapse:collapse; 
	top:0;
	left:0;
	z-index:100;
	font-size:1em;
	width:0;
	height:0;
}

/* style the links */
.menuGen a, .menuGen a:visited {
	display:block; 
	text-decoration:none;
	/*height:19px;
	line-height:19px;*/
	width:104px;
	color:#000;
	font-weight:bold;
	/*text-indent:8px;*/
  padding-left:8px;
  padding-top:1px;
  padding-bottom:1px;
}

/* style the link hover */
* html .menuGen a:hover {
	color:#CC0000;
	font-weight: bold;
	background: #CCCCCC;

}

.menuGen :hover > a {
	color:#CC0000;
	font-weight: bold;
	background: #CCCCCC;

}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuGen ul ul {
	visibility:hidden;
	position:absolute;
	top:0px;
	left:112px;
	background-color: #EFEFEF;
}
/* make the second level visible when hover on first level list OR link */
.menuGen ul li:hover ul,
.menuGen ul a:hover ul {
	visibility:visible;
	height:358px;
}
/* keep the third level hidden when you hover on first level list OR link */
.menuGen ul :hover ul ul{
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menuGen ul :hover ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menuGen ul :hover ul :hover ul{ 
	visibility:visible;
	height:358px;
}
/* make the fourth level visible when you hover over third level list OR link */
.menuGen ul :hover ul :hover ul :hover ul { 
	visibility:visible;
	height:358px;
}




