ont and the margins */
.menutxt {
font-family: arial, sans-serif;
margin:0;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menutxt ul {
padding:0;
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menutxt ul li {
float:left;
position:relative;
width:102px;
}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menutxt ul li a, .menutxt ul li a:visited {
display:block;
font-weight:bold;
text-align:center;
text-decoration:none;
border-bottom:1px #FFF solid;
width:100px;
height:26px;
color:#333;
padding-top:3px;
}
/* make the dropdown ul invisible */
.menutxt ul li ul {
display: none;
}
/* specific to non IE browsers */
/* set the background and foreground color of the main menutxt li on hover */
.menutxt ul li:hover a {
color:#333;
font-weight:bold;
background:url(http://www.qingsheng.com/images/menu_bg02.gif) no-repeat;
}
/* make the sub menutxt ul visible and position it beneath the main menutxt list item */
.menutxt ul li:hover ul {
display:block;
position:absolute;
top:29px;
left:0;
width:100px;
}
/* style the background and foreground color of the submenutxt links */
.menutxt ul li:hover ul li a {
display:block;
background:url(http://www.qingsheng.com/images/menu_bg04.gif);
color:#333;
}
/* style the background and forground colors of the links on hover */
.menutxt ul li:hover ul li a:hover {
background:url(http://www.qingsheng.com/images/menu_bg06.gif);
color:#666;
}