
#hmenu {
height:30px;
width:900px; 
font-size:0.85em;
position:relative;
z-index:100;
background:rgb(220,220,220) url('../img/bg_menu.jpg') no-repeat; 
margin:0 auto;
}
/* remove all the bullets, borders and padding from the default list styling */
#hmenu ul {
padding:0;
list-style-type:none;
text-align:center;
}
#hmenu ul ul {
width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#hmenu li {
float:left;
width:150px;
position:relative;
}
/* style the links for the top level */
#hmenu a, #hmenu a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#000; 
width:139px; 
height:30px; 
border:1px solid #fff; 
border-width:1px 1px 0 0; 
/*background:#758279;*/ 
padding-left:10px; 
line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #hmenu a, * html #hmenu a:visited {
width:150px;
w\idth:139px;
}
 
/* style the second level background */
#hmenu ul ul a.drop, #hmenu ul ul a.drop:visited {
background:#d4d8bd url(../../graphics/drop.gif) bottom right no-repeat;
 
}
/* style the second level hover */
#hmenu ul ul a.drop:hover{
background:#c9ba65 url(../../graphics/drop.gif) bottom right no-repeat;
}
#hmenu ul ul :hover > a.drop {
background:#c9ba65 url(../../graphics/drop.gif) bottom right no-repeat;
}
/* style the third level background */
#hmenu ul ul ul a, #hmenu ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
#hmenu ul ul ul a:hover {
background:#b2ab9b;
}
 
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
#hmenu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html #hmenu ul ul {
top:30px;
t\op:31px;
}
 
/* position the third level flyout menu */
#hmenu ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
#hmenu ul ul ul.left {
left:-150px;
}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
#hmenu table {position:absolute; top:0; left:0;}
 
/* style the second level links */
#hmenu ul ul a, #hmenu ul ul a:visited {
background:#d4d8bd; 
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px
/* yet another hack for IE5.5 */
}
* html #hmenu ul ul a{
width:150px;
w\idth:129px;
}
 
 
/* style the top level hover */
#hmenu a:hover, #hmenu ul ul a:hover{
color:#fff; 
background:#949e7c;
}
#hmenu :hover > a, #hmenu ul ul :hover > a {
color:#fff;
background:#949e7c;
}
 
/* make the second level visible when hover on first level list OR link */
#hmenu ul li:hover ul,
#hmenu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
#hmenu ul :hover ul ul{
visibility:hidden;
}
 
/* make the third level visible when you hover over second level list OR link */
#hmenu ul :hover ul :hover ul{ 
visibility:visible;
}
