.menu {
width:100%; 
height:25px;
font-size:0.66em;
font-style: normal;
position:relative;
z-index:100;
/*background-image: url(../images/menu_gradient.gif);
background-repeat: repeat-x;
-moz-linear-gradient(center bottom, red, rgba(255,0,0,0));
-webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.22, rgb(214,214,211)),
    color-stop(1, rgb(255,255,255))
)
-moz-linear-gradient(
    center bottom,
    rgba(214,214,211) 22%,
    rgba(255,255,255) 100%);*/
}
/* 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:105px;
}
/* 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:105px;
position:relative;
padding-left: 3px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:10px;
text-align: center;
text-decoration:underline; 
color:#ff8028; 
width:105px; 
height:25px; 
/*background-color:#FFFFF0;
background-image: url(../images/menu_gradient.gif);
background-repeat: repeat-x;
-webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.22, rgb(214,214,211)),
    color-stop(1, rgb(255,255,255))
)
-moz-linear-gradient(
    center bottom,
    rgb(214,214,211) 22%,
    rgb(255,255,255) 100%
*/
border: 1px solid #FFFFF0; 
padding:1px; 
line-height:20px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:105px;
w\idth:105px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background-color: #7d7370;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background-color: #7d7370;
}
.menu ul ul :hover > a.drop {
background-color: #7d7370;
}

/* 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:25px;
left:0; 
width:105px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
top:25px;
t\op:25px;
}

/* 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-color:#F2F2F2; 
color:#ff8028; 
height:auto; 
line-height:1em;
text-align: left; 
padding:5px 0px 5px 3px; 
width:105px;
text-decoration:none;
/* yet another hack for IE5.5 */
}

* html .menu ul ul a{
width:105px;
w\idth:105px;
}

.menu ul ul a.drop, 
.menu ul ul a.drop:visited 	{background:#f2f2f2;}
.menu ul ul a.drop:hover 	{background:#d1d1d1;}
.menu ul ul :hover > a.drop {background:#d1d1d1;color:#f18428;}

/* position the third level flyout menu */
.menu ul ul ul{left:105px; top:-1px; width:105px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-105px;}

.menu ul ul ul a, 
.menu ul ul ul a:visited 	{background-color:#e6e6e6;color:#f18428;}
.menu ul ul ul a:hover		{background-color:#7d7370;color:#fff;}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background-color:#FFA32B;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background-color:#7d7370;
}

/* 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 */
.menu ul :hover ul :hover ul{ visibility:visible;}
