.leftmenu{
list-style-type: none;
margin: 0;
padding: 0;
width: 150px; /* width of menu (don't forget to add border with below!) */}

.leftmenu li{ }

.leftmenu li a{
font: bold 12px 'Trebuchet MS';
display: block;
color: #781313;
width: auto;
padding: 7px 0; /* Vertical (top/bottom) padding for each menu link */
text-indent: 5px;
text-decoration: none;
}

.leftmenu li a:visited{
color: #781313;
}

.leftmenu li a:hover{
	color:#781313;
	background-image: url(../images/arrow.jpg);
	background-repeat: no-repeat;
	background-position: right center;
}

.leftmenu li.lastitem, .leftmenu li.lastitem a{
border-bottom-width: 0; /* For last menu item within menu, remove bottom border */
}

.leftmenu li.lastitem a{
padding: 8px 0; /* increase vertical border of last menu link by 2px (default is padding: 7px 0) to account for removed border width */
}


