
#menu{
float:right;
width: 160px;
border-right: 1px solid #000;
border-left: 1px solid #000;
font-family: 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
font-size: 90%;
background-color: #F5F3CB;
color: #000;
}

* html #menu{ /*IE 6 only */
width: 140px; /*Box model bug: 180px minus all left and right paddings for #blueblock */
}

#menu ul{
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#menu li {
border-top: 1px solid #90bade;
margin: 0;
}

#menu li a{
display: block;
border-left: 10px solid #EB5A14;
border-right: 10px solid #EB5A14;
background-color: #F5F3CB;
color: #000;
text-decoration: none;
width: 100%;
}
#menu ul ul li a{
display: block;
border-left: 10px solid #FFCB71;
border-right: 10px solid #FFCB71;
background-color: #fff;
color: #000;
text-decoration: none;
width: 100%;
}

html>body #menu li a{ /*Non IE6 width*/
width: auto;
}

#menu li a:hover{
border-left: 10px solid #EB5A14;
border-right: 10px solid #EB5A14;
background-color: #FD8E58;
color: #fff;
}