.menucyb {
z-index:1000;
font-size:11;	
}

/* remove all the bullets, borders and padding from the default list styling */
.menucyb ul {
padding:0;
margin:0;
list-style-type:none;
width:200px;
}
/* hack for IE5.5 */
* html .menucyb ul {margin-left:-16px; }
/* position relative so that you can position the sub levels */
.menucyb li {
position:relative;
background:#ffffff;
height:165%;
margin: 0;
}

.menucyb li ul {
background: #f0ffff;
}



/* get rid of the table */
.menucyb table {
position:absolute; 
border-collapse:collapse; 
top:0; 
left:0; 
z-index:100; 
font-size: 1em;
}

/* style the links */
.menucyb a, .menucyb a:visited {
display:block; 
text-decoration:none;
height:164%;
line-height:164%;
width:200px;
color:#0070a9;
font-size:11;
margin: 0;
}

/* hack for IE5.5 */
* html .menucyb a, * html .menucyb a:visited 
{
background:#f0ffff; 
width:200px; 
}

/* style the link hover */
* html .menucyb a:hover {
font-size:11;
color:#f0ffff; 
background:#0070a9;
margin: 0;
}

.menucyb :hover > a {
color:#f0ffff;
font-size:11;
background:#0070a9;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menucyb ul ul {
visibility:hidden;
position:absolute;
bottom:0;
left:-200px; 
}

/* make the second level visible when hover on first level list OR link */
.menucyb ul :hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menucyb ul :hover ul ul{
visibility:hidden;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.menucyb ul :hover ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menucyb ul :hover ul :hover ul{ 
visibility:visible;
}

/* make the fourth level visible when you hover over third level list OR link */
.menucyb ul :hover ul :hover ul :hover ul { 
visibility:visible;
}


* + html .menucyb li.sub {margin-bottom:-2px;}