#Listemenu
{
	list-style-type : none;
	display : flex;
	flex-direction : column;
	padding :0px;
	width : 200px;
	border-style : groove;
	border-width :3px;
	border-color : lightgray;
	margin-left : 30px;
}
#Listemenu li
{
	background-color : #f7eed1;
	padding : 5px;
	padding-left : 20px;
	word-wrap: normal;
}
#Listemenu li:hover
{
	background-color : #eee6c9;
	border-bottom : 2px solid gray;
	padding-bottom :3px;
}
#Listemenu li a
{
	text-decoration : none;
	color : black;
}
#Listemenu li a:hover
{
	color : red;
}