Thx, JD.

I'm still not quite sure how to do that.
I tried this:
Code:
/* ================================================== */
/* CSS for Page Widget */
/* ================================================== */
div.widget_pages ul li {
margin-left: -10px;
margin-right: -10px;
margin-top: -3px;
border: solid 1px #333333 !important;
padding: 10px 10px 10px 40px !important;
background: #eae4cc url(http://intheleadseat.com/nhvirtualassistant/wp-content/themes/atahualpa/images/icons/bullet.jpg) no-repeat 20px 10px;
}
div.widget_pages ul li:hover,
div.widget_pages ul li.sfhover,
div.widget_pages ul li:active {
margin-left: -10px;
margin-right: -10px;
margin-top: -3px;
border: solid 1px #333333 !important;
padding: 10px 10px 10px 40px !important;
background: #ffffff url(http://intheleadseat.com/nhvirtualassistant/wp-content/themes/atahualpa/images/icons/bullet.jpg) no-repeat 20px 10px;
}
i.e. reordering :hover .sfhover and :active
What I'm not clear on is why some are li:active and some are li a:active.
I'm going to guess that I have to stick a:link and a:visited in with the first bunch as I don't want them all to be highlighted.