#list-menu {
width: 132px;
/* 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;
}

#list-menu li {
margin: 2px 0 0;
}

#list-menu a {
display: block;
width:163px;
padding: 4px 4px 4px 4px;
border: 0px solid #000000;
background: #dcdcdc;
text-decoration: none; /*lets remove the link underlines*/
}

#list-menu a:link, #list-menu a:active, #list-menu a:visited {
background: #fff;
color: #efc85e;
}

#list-menu a:hover {
color: #959f93;
background: url('../images/rollover.gif');
background-repeat: no-repeat;
padding: 4px 4px 4px 5px;
width:162px;
}



