body{
 padding:0;
 margin: 0;
 background: #ffffff;
 } 

#list-menu {
position: absolute; /* Menu position that can be changed at will */
top: 60;
left: 20;
width: 130px;
/* 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: verdana, arial, sanf-serif;
font-size: 14px;
font-weight: bold;

#list-menu li {
margin: 2px 0 0;
}

#list-menu a {
display: block;
width:120px;
padding: 2px 2px 2px 2px;
border: 1px solid #cccccc;
background: #000000;
text-decoration: none; /*lets remove the link underlines*/
}

#list-menu a:link, #list-menu a:active, #list-menu a:visited {
color: #cccccc;
}


#list-menu a:hover {
border: 1px solid #000000;
background: #333333 url(background3.gif);
color: #ffffff;
}

