#div_menu ul {
	width: 135px;
	padding-left: 30px;
	padding-top: 20px;
	margin: 0;
	list-style-type: none;
	text-align: left;
}

#div_menu ul ul {
	border-top: 1px solid #50B280;
	padding: 0 0 0 0;
	width: 135px;
	z-index: 3;
	text-align: left;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#div_menu li {
	border-bottom: 1px solid #50B280;
	width: 135px;
	height: 27px;
	float: left;
	position: relative;
}

#div_menu ul li:hover {
	background-color: #88B244;	
}

/* style the links for the top level */
#div_menu a,#div_menu a:visited {
	font-size: 12pt;
	text-decoration: underline;
	color: #ffffff;
	padding-left: 10px;
	line-height: 29px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #div_menu a, * html #div_menu a:visited {
	width: 135px;
	w\idth: 129px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#div_menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: -1px;
	left: 135px;
}

/* another hack for IE5.5 */
* html #div_menu ul ul {
	left: 0px;
	/*l\eft: 0px;*/
}

/* style the table so that it takes no part in the layout - required for IE to work */
#div_menu table {
	position: absolute;
	top: 0;
	left: 0;
}

/* style the second level links */
#div_menu ul ul a,#div_menu ul ul a:visited {
	color: #ffffff;
	line-height: 1em;
	width: 135px /* yet another hack for IE5.5 */
}

#div_menu ul ul li {
	background-color: #006430;	
	border-right: 1px solid #50B280;
	border-left: 1px solid #50B280;
}

* html #div_menu ul ul a {
	width: 135px;
	w\idth: 135px;
}

/* style the top level hover */
#div_menu a:hover, #div_menu ul ul a:hover {
	color: #ffffff;
}

#div_menu :hover>a,#div_menu ul ul :hover>a {
	color: #F3F3F3;
}

/* make the second level visible when hover on first level list OR link */
#div_menu ul li:hover ul, #div_menu ul a:hover ul {
	visibility: visible;
}
