/* style the outer div to give it width */
.menu-top {
position:absolute;
top:39px;
left:13px;
z-index:10000;
width:950px; 
padding-bottom:0px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu-top ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu-top ul ul {
width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu-top li {
float:left;
width:150px;
position:relative;
}



/* style the links for the top level */
.menu-top a, .menu-top a:visited {
display:block;
text-decoration:none; 
color:#fff; 
width:139px; 
height:25px; 
border-width:0px 1px 1px  0px;
border-color:#FFF;
border-style: solid;
background:#8b8b8b; 
padding-left:10px; 
line-height:25px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu-top a, * html .menu-top a:visited {
width:150px;
w\idth:139px;
}

/* style the second level background */
.menu-top ul ul a.drop, .menu-top ul ul a.drop:visited {

}
/* style the second level hover */
.menu-top ul ul a.drop:hover{
background:#c9ba65;
}
.menu-top ul ul :hover > a.drop {
background:#c9ba65;
}
/* style the third level background */
.menu-top ul ul ul a, .menu-top ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.menu-top ul ul ul a:hover {
background:#b2ab9b;
}
.menu-top ul ul ul :hover > a {
background:#b2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu-top ul ul {
visibility:hidden;
position:absolute;
height:0;
top:26px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menu-top ul ul {
top:25px;
t\op:26px;
}

/* position the third level flyout menu */
.menu-top ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu-top ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu-top table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu-top ul ul a, .menu-top ul ul a:visited {
background:#d4d8bd; 
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px;
border-width:0px 0px 1px 0px;
border-color: #FFF;
border-style: solid;
/* yet another hack for IE5.5 */
}
* html .menu-top ul ul a{
width:150px;
w/idth:129px;
}


/* style the top level hover */
.menu-top a:hover, .menu-top ul ul a:hover{
color:#fff; 
background-image:url(images/topmenu_bg.png);
background-repeat:no-repeat;
}
.menu-top :hover > a, .menu-top ul ul :hover > a {
color:#fff;
background-image:url(images/topmenu_bg.png);
background-repeat:no-repeat;
}

/* make the second level visible when hover on first level list OR link */
.menu-top ul li:hover ul,
.menu-top ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu-top ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu-top ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu-top ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu-top ul :hover ul :hover ul :hover ul { 
visibility:visible;
}
