/* CSS Document */
.menu {
width:100%; 
position:relative;
z-index:100;
height:32px; 
background: #f2ad02 url(images/nav_bg.gif) repeat-x bottom left;
padding-left: 9px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
margin: 0;
padding: 0px 0 0 2px;
list-style: none;
}
.menu ul ul {
width:auto;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
text-decoration:none;
font-weight: normal;
color:#222; 
height:30px; 
border:1px solid #eee;  
border-right:1px solid #666; 
border-bottom:0px solid #666; 
padding:0px 10px 0px 10px;
margin: 0px 1px 0px 0px; 
line-height:29px;
background: #eee url(images/off_bg_01.gif) repeat-y top right;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:110px;
w\idth:99px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#f2ad02;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#f2ad02;
}
.menu ul ul :hover > a.drop {
background:#f2ad02;
}

#ebt a {
width:220px;
}

/* 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:31px;
left:-2px; 
width:150px;
font-size: 80%; 
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}

/* style the table so that it takes no ppart 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 {
background:#fbd576; 
color:#222; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px;
border:1px solid #eee;
border-top:0px solid #fff;
margin: 0px 0px 0px 0px; 
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#222; 
background:#f2ad02;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#222;
background:#f2ad02;
}

/* 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; 
}

