.Menu {
width:100%;
font-size:0.85em;
position:relative;
z-index:100;
top: -1px;
}
/* remove all the bullets, borders and padding from the default list styling */
.Menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.Menu ul ul {
width:139px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown Menu positon */
.Menu li {
float:left;
width:139px;
position:relative;
}
/* style the links for the top level */
.Menu a, .Menu a:visited {
display:block;
font-size:11px;
text-decoration:none;
color:#fff;
width:128px;
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 .Menu a, * html .Menu a:visited {
width:139px;
/*w\idth:128px;*/
}

/* style the second level background */
.Menu ul ul a.drop, .Menu ul ul a.drop:visited {
background:#d4d8bd url(../../graphics/drop.gif) bottom right no-repeat;

}
/* style the second level hover */
.Menu ul ul a.drop:hover{
background:#c9ba65 url(../../graphics/drop.gif) bottom right no-repeat;
}
.Menu ul ul :hover > a.drop {
background:#c9ba65 url(../../graphics/drop.gif) bottom right no-repeat;
}
/* style the third level background */
.Menu ul ul ul a, .Menu ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.Menu ul ul ul a:hover {
background:#b2ab9b;
}


/* 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:0;
width:139px;
}
/* another hack for IE5.5 */
* html .Menu ul ul {
top:30px;
t\op:30px;
}

/* position the third level flyout Menu */
.Menu ul ul ul{
left:139px;
top:0;
width:139px;
}
/* position the third level flyout Menu for a left flyout */
.Menu ul ul ul.left {
left:-139px;
}

/* 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:#d4d8bd;
color:#000;
height:auto;
line-height:1em;
padding:5px 10px;
width:118px
/* yet another hack for IE5.5 */
}
* html .Menu ul ul a{
width:139px;
/*w\idth:118px;*/
}


/* style the top level hover */
.Menu a:hover, .Menu ul ul a:hover{
color:#fff;
background:#949e7c;
}
.Menu :hover > a, .Menu ul ul :hover > a {
color:#fff;
background:#949e7c;
}

/* 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;
}
/* keep the third level hidden when you hover on first level list OR link */
.Menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.Menuss ul :hover ul :hover ul{
visibility:visible;
}
