.beak_menu {
position:relative;
z-index:100;
text-align:left;
padding-left:160px;
}

/* remove all the bullets, borders and padding from the default list styling */
.beak_menu ul {
padding:0;
margin:0;
list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.beak_menu li {
float:left;
position:relative;
}

/* style the links for the top level */
.beak_menu a, .beak_menu a:visited {
display:block;
color:white;
height:22px;
padding-left:10px;
padding-right:10px;
line-height:21px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.beak_menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:22px;
left:5px;
}

/* another hack for IE5.5 */
* html .beak_menu ul ul {
top:22px;
t\op:22px;
}
 
/* position the third level flyout menu */
.beak_menu ul ul ul{
left:150px;
top:0;
}

/* position the third level flyout menu for a left flyout */
.beak_menu ul ul ul.left{
left:-150px;
}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
.beak_menu table {position:absolute; top:0; left:0;}
 
/* style the second level links */
.beak_menu ul ul a, .beak_menu ul ul a:visited {
background:#990000;
color:white;
height:auto;
padding-left:5px;
width:100px;
/* yet another hack for IE5.5 */
}
* html .beak_menu ul ul a{
width:100px;
w\idth:100px;
}
 
/* style the top level hover */
.beak_menu a:hover, .beak_menu ul ul a:hover{
color:#3366FF;
/*font-weight:bold;*/
}

.beak_menu :hover > a, .beak_menu ul ul :hover > a {
color:#3366FF;
/*font-weight:bold;*/
}
 
/* make the second level visible when hover on first level list OR link */
.beak_menu ul li:hover ul,
.beak_menu ul a:hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.beak_menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.beak_menu ul :hover ul :hover ul{
visibility:visible;
}
