.menu {
font-size:12px;
position:relative;
z-index:111;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
width:153px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
width:153px;
position:relative;
}
/* style the links for the top level */
.menu a {
	display:block;
	text-decoration:none;
	color:#fff;
	width:153px;
	height:24px;
	background: url(gombhatf.gif);
	line-height:22px;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align: center;
	font-weight: bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a {
width:153px;
w\idth:153px;
}


/* style the top level hover */
.menu a:hover{
color:#ddd; 
background: url(gombhatf2.gif);
position:relative;
}
.menu :hover > a, .menu ul ul :hover > a {
position:relative;
}


/* style the second level background */
.menu ul ul a:hover{
color:#ddd; 
background: #eedaa8 url(gombhatf2.gif);
position:relative;
}


.menu ul ul a.drop {
background: #eedaa8 url(gombhatf.gif);

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background: #eedaa8 url(gombhatf2.gif);
}
.menu ul ul :hover > a.drop {
background: #eedaa8 url(gombhatf2.gif);
}
/* style the third level background */
.menu ul ul ul a {
background: #eedaa8 url(gombhatf.gif);
}
/* style the third level hover */
.menu ul ul ul a:hover {
background: #eedaa8 url(gombhatf2.gif);
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:23px;
left:0; 
width:153px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:22px;
t\op:23px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:153px; 
top:0;
width:153px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-153px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a {
background: #eedaa8 url(gombhatf.gif); 
height:auto; 
line-height:1em; 
padding:0px 0px 0px; 
width:153px;
height:20px;
font-weight: normal;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:153px;
w\idth:153px;
}


/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
visibility:visible;
}

/* keep the 5. level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the 5. level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul :hover ul {
visibility:visible;
}