/* CSS Document */
/* style the outer div to give it width */ 
.menu { 
FLOAT: left; WIDTH: 157px; BORDER-BOTTOM: #9e9e9e 1px dashed; TEXT-ALIGN: left;
} 
/* 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:157px; 
} 
/* 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:157px; 
position:relative;
display:block;
} 



/* hide the sub levels and give them a positon absolute so that they take up no room */ 
.menu ul ul { 
visibility:hidden; 
position:absolute; 
top:0px; 
left:-157px;
_left:-166px; 
width:157px;
_width:167px;
padding-left:0px;
_padding-left:0px;
height:auto;
} 
/* another hack for IE5.5 */ 
* html .menu ul ul { 
top:0px; 
} 
/* position the third level flyout menu */ 
.menu ul ul ul{ 
left:-158px; 
_left:-169px; 
top:0; 
width:146px;
padding-left:10px; 
height:auto;
}
.menunew
{
background-image:url(../images/bg.gif);
background-position:left top;
background-repeat:repeat-x;
border:1px solid #999999;
}
.menu_hide{ 
height:auto;
background-image:url(../images/trans.gif);
background-position:left top;
background-repeat:repeat-x;
}  
 
/* style the table so that it takes no part 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, .menu ul ul a:visited { 
color:#5c5b5b; 
width:140px;
/* yet another hack for IE5.5 */ 
} 

/* style the top level hover */ 
.menu a:hover, .menu ul ul a:hover{ 
color:#000; 
width:140px;  
} 

/* make the second level visible when hover on first level list OR link */ 
.menu ul :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; 
} 
/* keep the fourth level hidden when you hover on second level list OR link */ 
.menu ul :hover 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; 
} 
/* make the fourth level visible when you hover over third level list OR link */ 
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible; 
} 
/* make the fourth level visible when you hover over third level list OR link */ 
.menu ul :hover ul :hover ul :hover ul :hover ul { 
visibility:visible; 
}
