.dropmenu {
width:640px; 
font-size:12px;
position:relative;
z-index:auto;
font-weight:normal;
text-align:center;
background:#333333;
}
/* remove all the bullets, borders and padding from the default list styling */
.dropmenu ul {
padding:0;
margin:0;
list-style-type:none;
}
.dropmenu ul ul {
width:106px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropmenu li {
float:left;
width:106px;
position:relative;
}
/* style the links for the top level */
.dropmenu a, .dropmenu a:visited {
display:block;
/*font-size:16px;*/
text-decoration:none; 
color:#fff; 
width:106px; 
height:30px;
background:#333333; 
padding-left:2px; 
line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .dropmenu a, * html .dropmenu a:visited {
width:107px;
w\idth:103px;
}

/* style the second level background */
.dropmenu ul ul a.drop, .dropmenu ul ul a.drop:visited {
background:#333333;

}
/* style the second level hover */
.dropmenu ul ul a.drop:hover{
background:#666666;
}
.dropmenu ul ul :hover > a.drop {
background:#666666;
}
/* style the third level background */
.dropmenu ul ul ul a, .dropmenu ul ul ul a:visited {
background:#333333;
}
/* style the third level hover */
.dropmenu ul ul ul a:hover {
background:#666666;
}


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

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

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

/* style the second level links */
.dropmenu ul ul a, .dropmenu ul ul a:visited {
background:#333333; 
color:#fff; 
height:auto; 
line-height:1em; 
padding:2px 5px; 
width:94px
/* yet another hack for IE5.5 */
}
* html .dropmenu ul ul a{
width:106px;
w\idth:96px;
}


/* style the top level hover */
.dropmenu a:hover, .dropmenu ul ul a:hover{
color:#fff; 
background:#666666;
}
.dropmenu :hover > a, .dropmenu ul ul :hover > a {
color:#fff;
background:#666666;
}

/* make the second level visible when hover on first level list OR link */
.dropmenu ul :hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.dropmenu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.dropmenu ul :hover ul :hover ul{ 
visibility:visible;
}
