.menu {
z-index:1000;
font-size:90%;
}
 
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
position:relative;
border:0px solid #fff;
margin-left: 30px;
font-size: 11px;
}
 
.menu li {
width:169px;
color:white;
margin: 0px; padding: 0px;
height: 20px;

}

.menu li a{
width:169px;
color:white;
margin: 0px; padding: 0px;
font-family: verdana;
font-size: 11px;
text-decoration:none;
}

.menu li a:hover {
margin: 0px; padding: 0px;
width:169px;
color:white;
}

.menu li li{

width:169px;
}
.menu li li a:hover {

width:169px;
color:#fff;
}



* html .menu li {margin-left:0px; margin-lef\t:0;}
/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em; width:0; height:0;}
 

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
left:110px;
background-color:#D3232D;
margin-top: -12px; 
}
.menu ul ul li{
	height: 20px;
	display: block;
}
.menu ul ul li a:hover{background-color:#FFF; color: #333;}
/* 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;
}
/* 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 third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
height:235px;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
height:235px;
}

