a {text-decoration: none}
a:hover {text-decoration: underline;}

#list-menu {
width: 160px;
/* this width value is also effected by
the padding we will later set on the links. */
}

#list-menu ul {
margin: 0; 
padding: 0;
list-style-type: none;
font-family: arial, sans-serif;
font-size: 12px;
}

#list-menu li {
margin: 3px 0 0;
} 

#list-menu a {
display: block;
width:156px;
padding: 2px 2px 2px 2px;
border: 1px solid #660000;
background: #000000;
text-decoration: none; /*lets remove the link underlines*/
color: #ff0000;
}

#list-menu a:link, #list-menu a:active, #list-menu a:visited {
color: #ff000;
}

#list-menu a:hover {
border: 1px solid #660000;
background: #330000;
color: #99cc00;
}

