/****************** CSS Driven Menu ***************/
	
#menu {
   height: 36px;
   margin-left: 7px;
   margin-right: 9px;
   z-index: 100;	
}	
	
	
/* hack to correct IE5.5 faulty box model */
* html #menu_list {
	float: left;
	height: 34px;
	z-index: 100;
}

/* remove all the bullets, borders and padding from the default list styling */
#menu_list ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	z-index: 100;
}

#menu_list ul ul {
	width:150px;
	z-index: 100;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#menu_list li {
	float:left;
	position:relative;
	/*
	border:1px solid #FFFFFF;
	border-width:0 1px 0 0;
	*/
	z-index: 100;
}

#menu_list li a.top_parent_current {
	z-index: 100;
}

/* style the links for the top level */
#menu_list a, #menu_list a:visited {
	font-family: Arial, Verdana, sans-serif;
	color:#FFFFFF; font-size:14px;
	font-weight:bold;
	display:block;
	font-size:14px;
	text-decoration:none;
	text-align: left;
	padding-left: 0px;
	padding-right: 23px;
	height:34px;
	line-height:34px;
	z-index: 100;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #menu_list a, * html #menu_list a:visited {
	float: left;
	z-index: 100;
}

/* style the second level background */
#menu_list ul ul a.drop, #menu_list ul ul a.drop:visited {
	background:#DDDDDD;
	z-index: 100;
}

/* style the third level background */
#menu_list ul ul ul a, #menu_list ul ul ul a:visited {
	background:#333333;
	z-index: 100;
}

/* style the third level hover */
#menu_list ul ul ul a:hover {
	background:#000000;
	z-index: 100;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu_list ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:33px;
	left: 0;
	width:105px;
	z-index: 100;
}

/* another hack for IE5.5 */
* html #menu_list ul ul {
	top:33px;
	t\op:33;
	z-index: 100;
}


/* style the table so that it takes no ppart in the layout - required for IE to work */
#menu_list table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	z-index: 100;
}

/* style the second level links */
#menu_list ul ul a, #menu_list ul ul a:visited {
	background: #539e4a;
	font-size: 13px;
	font-weight: normal;
	font-family: Arial, Verdana, sans-serif;
	color:#FFFFFF; font-size:12px;
	height:auto;
	line-height:1em;
	width:145px;
	text-align: left;
	padding: 6px;
	border-width:0 1px 1px 1px;
	z-index: 100;
}

/* yet another hack for IE5.5 */
* html #menu_list ul ul a, * html #menu_list ul ul a:visited {
	width:145px;
	z-index: 100;
}

/* style the top level hover */
#menu_list a:hover, #menu_list ul ul a:hover {
	color:#fff;
	text-decoration:underline;
	z-index: 100;
}
#menu_list :hover > a, #menu_list ul ul :hover > a {
	color:#fff;
	/*
	background:#999999;
	*/
	z-index: 100;
}

/* make the second level visible when hover on first level list OR link */
#menu_list ul li:hover ul,
#menu_list ul a:hover ul{
	visibility:visible;
	z-index: 100;
}
/* keep the third level hidden when you hover on first level list OR link */
#menu_list ul :hover ul ul{
	visibility:hidden;
	z-index: 100;
}
/* keep the forth level hidden when you hover on first level list OR link */
#menu_list ul :hover ul :hover ul ul{
	visibility:hidden;
	z-index: 100;
}
/* make the third level visible when you hover over second level list OR link */
#menu_list ul :hover ul :hover ul{
	visibility:visible;
	z-index: 100;
}
/* make the forth level visible when you hover over second level list OR link */
#menu_list ul :hover ul :hover ul :hover ul{
	visibility:visible;
	z-index: 100;
}
