/* CSS Document */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.menu{
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 180px; /* width of menu */
	padding-top: 20px;
}

.menu li{
border-bottom: 1px solid #ffff66; /* white border beneath each menu item */
}

.menu li a{
background: #4bb94b url(images/menuright.gif) no-repeat right top; /*color of menu by default*/
font: 13px "Lucida Grande", "Trebuchet MS", Verdana;
display: block;
color: white;
width: auto;
padding: 5px 0; /* Vertical (top/bottom) padding for each menu link */
text-indent: 8px;
text-decoration: none; /*bottom border of menu link. Should be equal or darker to link's bgcolor*/
}

.menu li a:hover{
background-color: black; /*color of menu onMouseover*/
color: white; /*bottom border of menu link during hover. Should be equal or darker to link's hover's bgcolor*/
}

#current {
	color:#FFFF66;
}

[if IE]>
.menu li a{ /* Menu link width value for IE */
width: 100%;
}
<![endif]
