.menu {
width:999px; /* was 745 */
height:32px; 
position:relative; 
z-index:100;
border-right:1px solid #999999; /* 000 */ 
font-family:arial, sans-serif;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
width:1000px; /* was 746 */
w\idth:999px; /* was 745 */
}

/* 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:166px; /* was 149 */
}

/* 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:166px; /* was 149 */
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:13px;
text-decoration:none; /* was none */
color:#333333; /* was ffffff */
width:166px; /* was 138 */
height:30px; 
border:1px solid #999999; /* was 333333 */
border-width:1px 0 1px 1px; 
background: #ffffff url(http://www.total-drums.com/image-files/navigation-background.jpg) 0 0 repeat-x;  /* was #606060, #bb0000 */
text-align:center;
line-height:29px; 
font-weight:bold;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:167px; 
w\idth:166px; /* was 138 */
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background: #606060; /* was 9e9e9e, ee0000 */
border-left:1px solid #666666;
border-right:1px solid #666666;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
background:#444444; /* was 9e9e9e, ee0000 */
}

.menu ul ul :hover > a.drop {
background:#444444; /* was 9e9e9e, ee0000 */
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#dd0000; /* was 888888 */
}

/* style the third level hover */
.menu ul ul ul a:hover {
background:#dd0000; /* was 888888 */
text-decoration: underline;
}

/* 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:166px; /* was 149  */
}

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

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

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

/* 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; 
border-collapse:collapse;;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#606060; /* was 888888, dd0000 */
color:#ffffff; 
height:auto; 
line-height:20px; /* was 1em */
padding:5px 10px; 
width:145px; /* was 128 */
border-bottom:1px solid #666666;
border-left:1px solid #666666;
border-right:1px solid #666666;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
width:188px; /* was 150 */
w\idth:145px; /* was 128 */
}

/* style the top level hover */
.menu a:hover {
color:#ffffff; 
background:#242424; /* was #606060, dd0000 */
text-decoration: none;
border-right:1px solid #666666;
border-left:1px solid #666666;
border-top:1px solid #666666;
}

.menu ul ul a:hover {
color:#ffffff; 
background:#444444; /* was 9e9e9e, ee0000 */
text-decoration: none;
}

.menu :hover > a {
color:#ffffff; 
background:#606060; /* was #606060, dd0000 */
text-decoration: none;
}

.menu ul ul :hover > a {
color:#ffffff; 
background:#444444; /* was 9e9e9e, ee0000 */
text-decoration: none;
}

/* 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;
}

</style>