width:750px;
font-size:0.85em;
position:relative;
z-index:100;

/* remove all the bullets, borders and padding from the default list styling */
.demo .menu ul {
padding:0;
margin:0;
list-style:none;
}
.demo .menu ul ul {
width:120px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.demo .menu li {
float:left;
width:90px;
position:relative;
}
/* style the links for the top level */
.demo .menu a, .demo .menu a:visited {
display:block;
font-size:11px;
font-weight: bold;
text-decoration:none;
text-align:center;
color:#F3F3F3;
width:89px;
height:18px;
border:1px solid #F3F3F3;
border-width:1px 1px 0 0;
background:#20a89a;
padding-left:0px;
line-height:17px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .demo .menu a, * html .demo .menu a:visited {
width:89px;
w\idth:90px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.demo .menu ul ul {
visibility:hidden;
position:absolute;
height:auto;
top:18px;
left:-41px;
width:150px;
}
/* another hack for IE5.5 */
* html .demo .menu ul ul {
top:17px;
t\op:18px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.demo .menu table {position:absolute; top:0; left:0;}


/* style the top level hover */
.demo .menu a:hover, .demo .menu ul ul a:hover{
color:#000;
background:#F3F3F3;
}
.demo .menu :hover > a, .demo .menu ul ul :hover > a {
color:#000;
background:#F3F3F3;
}

