/* CSS Document */

#list-menu {
 width: 144px;
 /* 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: 12px;
 }
 
 #list-menu li {
 margin: 2px 0 0;
 }

 
#list-menu a {
 display: block;
 width:140px;
 padding: 8px 4px 8px 10px;
 border: 1px solid #666666;
 background: #ccccff;
 text-decoration: none; /*lets remove the link underlines*/
 }
 
 #list-menu a:link, #list-menu a:visited, #list-menu a:active {
 color: #666666;
 }
 

 #list-menu a:hover {
 border: 1px solid #666666;
 background: #CC99FF;
 color: #ffffff;
 }

#current a:link, #current a:visited, #current a:hover {
        border: 1px solid #333;
        background-color: #99cccc;
        color: #666666;
}

