#list {
position: absolute;
left: 20;
top: 120;
width: 128px;
height: 200px;
/* this width value is also effected by
the padding we will later set on the links. */
}
#list ul {
margin: 0;
padding: 0;
list-style-type: none;
font-family: arial, verdana, sanf-serif;
font-size: 11px;
}
#list li {
margin: 0px 0 0;
}
#list a {
display: block;
width: 105px;
height: 30px;
padding: 2px 2px 2px 10px;
border: 1px solid #000000;
background: #D8B698;
text-decoration: none; /*lets remove the link underlines*/
}
#list a:link, #list a:active, #list a:visited {
color: #000000;
}
#list a:hover {
border: 1px solid #000000;
background: #2E932D;
color: #FFFFFF;
}
