
.menu {
padding: 0px 0px 0px 0px; white-space: normal; z-index: 1000; 
border-top: 1px #A5A5A5 solid ;
}
/* 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:160px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
font-family:Verdana, Arial, Helvetica, sans-serif;
color:#000; 
font-size:12px;
text-decoration:none; 
font-weight : bold;
display:block;
width:160px;
border: 1px #A5A5A5 solid ;
border-top:0px;
border-left:0px;

padding-top:1px;  
padding-left:10px; 
padding-right:10px; 
background-color:#FFFFFF;
filter:alpha(opacity=90);opacity:.90;-moz-opacity:.90;
line-height:20px;
}
.menu_on a, .menu_on a:visited {
font-family:Verdana, Arial, Helvetica, sans-serif;
color:#ffffff; 
font-size:12px;
text-decoration:none; 
font-weight : bold;
display:block;
background-color:#cccccc;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:160px;
w\idth:160px;
}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#ffffff;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#ffffff;
}
.menu ul ul :hover > a.drop {
background:#cccccc;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#ffffff;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#ffffff;
}
.menu ul ul ul :hover > a {
background:#cccccc;
}

/* 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:0px;
left:181px; 
width:160px;
display:block;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:182px; 
top:0;
width:auto;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-108px;
}

/* 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 {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
display:block;
text-align:left;
font-weight : normal; 
background:#ffffff; 
color:#000; 
height:auto; 
line-height:20px;
padding:1px 10px; 
width:160px;
filter:alpha(opacity=90);opacity:.90;-moz-opacity:.90;
border: 1px #A5A5A5 solid ;
border-top:0px;
/* yet another hack for IE5.5 */
}

* html .menu ul ul a{
width:160px;
w\idth:155px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#cccccc;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#cccccc;
}
.menu :hover > a, .menu :hover > a {
color:#fff;
}

/* 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;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}


