.subNav {
z-index:1000;
font-family:Arial, Helvetica, sans-serif; 
font-size:15px;
width:180px;
}

/* remove all the bullets, borders and padding from the default list styling */
.subNav ul {
padding:5px;
margin:0;
list-style-type:none;
width:170px;
background-color:#000;
}

/* hack for IE5.5 */
* html .subNav ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.subNav li {
position:relative;
background:#000;
height:25px;
}

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

/* style the links */
.subNav a, .subNav a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:170px;
color:#fff;
text-indent:5px;
}
/* hack for IE5.5 */
* html .subNav a, * html .subNav a:visited {background:#d4d8bd; width:110px; w\idth:109px;}
/* style the link hover */
* html .subNav a:hover {color:#fff; background:#949e7c;}

.subNav :hover > a {
color:#000; 
background:#b1f111;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.subNav ul ul {
visibility:hidden;
position:absolute;
top:0;
left:170px; 
width:110px;
font-size:12px;
color:#000; 
background:#b1f111;
border:1px solid #000;
border-width:1px 1px 1px 0;
margin-top:-1px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.subNav ul ul a{color:#000}

.subNav ul ul a,
.subNav ul ul a:visited{
background:#b1f111;
width:110px;
line-height:20px;
color:#000;
}

.subNav ul ul li {
	height:20px;
}


.subNav ul ul a:hover {
	font-weight:bold;
}


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

/* keep the third level hidden when you hover on first level list OR link */
.subNav ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.subNav ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.subNav ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.subNav ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

<!--[if IE 7]>
<style type="text/css">
.subNav li {float:left;}
</style>
<![endif]-->
