.list-menu {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: white}


#list-menu {
width: 195px;
/* 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: 3px 0 0;
} 


#list-menu a {
display: block;
width:195px;
padding: 1px 1px 1px 6px;
border: 1px solid #ff6600;
background: black;
text-decoration: none; /*lets remove the link underlines*/
} 


#list-menu a:link, #list-menu a:active, #list-menu a:visited {
color: white;
}

#list-menu a:hover {
border: 1px solid #ff6600;
background: #003399;
color: white;
} 
