.navi {
position:relative;
z-index:11;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

/* style the links for the top level */



/* style the second level background */
.navi ul ul a.drop, .navi ul ul a.drop:visited {
background:#fff;

}
/* style the second level hover */
.navi ul ul a.drop:hover{
background:#fff;
}
.navi ul ul :hover > a.drop {
background:#fff;
}
/* style the third level background */
.navi ul ul ul a, .navi ul ul ul a:visited {
background:#fff;
}
/* style the third level hover */
.navi ul ul ul a:hover {
background:#fff;
color: #000;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.navi ul ul {
visibility:hidden;
position:absolute;
height:0;
display:block;
text-align:left;
margin-top: -3px;
}
/* another hack for IE5.5 */
* html .navi ul ul {
top:48px;
t\op:49px;
}

/* position the third level flyout menu */
.navi ul ul ul{
left:148px;
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.navi ul ul ul.left {
left:-150px;
}

.navi ul ul li {
  display: block;
/*  background-color: #e4e5d8;*/
  background-color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: -10px;
  padding-left: 10px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.navi table {position:absolute; top:0; left:0;}

/* style the second level links */
.navi ul ul a, .navi ul ul a:visited {
/*background:#fff;*/
color:#323030;
height:20px;
font-size:1em;
line-height:1em;
/*padding:4px 10px;
padding-top:8px;*/
width:129px;
text-align:left;

/* yet another hack for IE5.5 */
}
* html .navi ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.navi a:hover, .navi ul ul a:hover{
/*color: #AF5A31;
background:#fff;*/
color: #d05d3c;
}
.navi :hover > a, .navi ul ul :hover > a {
/*color: #AF5A31;
background:#fff;*/
color: #d05d3c;
}

/* make the second level visible when hover on first level list OR link */
.navi ul li:hover ul,
.navi ul a:hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.navi ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.navi ul :hover ul :hover ul{
visibility:visible;
}


div.navi ul.box li {
  font-size:0.8em;
  text-transform:none;
  }