/* CSS Document */

<style type="text/css">

#links{
border: 1px solid black;
border-bottom-width: 0;
width: 170px;
background-color: #E6E6E6;
}

* html #links{ /*IE only rule, to negate the padding below IE includes in menu width.*/
/*width: 389px;*/
background-color: #EBEBEB;
}

#links a{
font: Verdana;
font-size:11px;
font-weight:bold;
padding: 3px;
padding-left: 8px;
display: block;
width: 100%;
height: 20px;
color:#333333;
text-decoration: none;
border-bottom: 1px dashed ;
border-bottom-color:#cccccc;
}

html>body #links a{ /*Non IE rule*/
width: auto;
}

#links a:hover{
color:#FF0000;
font-weight:bold;
}

</style>
