.menus {
z-index:1000;
font-size:85%;
float:left;	
}
/* remove all the bullets, borders and padding from the default list styling */
.menus ul {

padding:0;
margin:0;
list-style-type:none;
width:143px;
}
/* hack for IE5.5 */
* html .menus ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menus li {
position:relative;
background:#D53030;
height:20px;
}

/* get rid of the table */
.menus table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:.9em;}

/* style the links */
.menus a, .menus a:visited {
display:block; 
text-decoration:none;
height:20px;
line-height:20px;
width:142px;
color:#000;
text-indent:5px;
}
/* hack for IE5.5 */
* html .menus a, * html .menus a:visited {background:#C42929; width:142px; w\idth:143px;}
/* style the link hover */
* html .menus a:hover {color:#fff; background:#D32C2C;}

.menus :hover > a{
color:#fff; 
background:#CA3232;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menus ul ul {
visibility:hidden;
position:absolute;
top:0;
left:142px; 
}
/* make the second level visible when hover on first level list OR link */
.menus ul :hover ul{
visibility:visible;
}
</style>

<!--[if IE 7]>
<style type="text/css">
.menus li {float:left;}
</style>
<![endif]-->
