/*main menu*/
#list-menu {
width: 186px;
/* this width value is also effected by
the padding we will later set on the links. */
}

/*actual menu items*/
#list-menu ul {
margin: 0;
padding: 0;
list-style-type: none;
font-family: "Lucida Sans Unicode", "Lucida Sans", Verdana, Arial;;
font-size: 11px;
}

/*create space between list item*/
#list-menu li {
margin: 2px 0 0;
}

/*link*/
#list-menu a {
display: block;
width:173px;
padding: 2px 2px 2px 15px;
background: #EED3E5;
text-decoration: none;
}

#list-menu a:link, #list-menu a:active, #list-menu a:visited {
background: #EED3E5 url(../images/sidenav_up.gif)  no-repeat;
color: #666666;
}

/*hover*/
#list-menu a:hover {
background: #6dbb03 url(../images/sidenav_over.gif)  no-repeat;
color: #000000;
}