/*main menu*/
#list-menu {
width: 174px;
/* 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: verdana, arial, sanf-serif;
font-size: 11px;
}

/*create space between list item*/
#list-menu li {
margin: 2px 0 0;
}

/*link*/
#list-menu a {
display: block;
width:162px;
padding: 2px 2px 2px 15px;
background: #ffffff;
text-decoration: none;
}

#list-menu a:link, #list-menu a:active, #list-menu a:visited {
background: #ffffff url(../images/bullet.gif)  no-repeat;
color: #6dbb03;
}

/*hover*/
#list-menu a:hover {
background: #6dbb03 url(../images/bullet_over.gif)  no-repeat;
color: #ffffff;
}
