#menu {
width: 12em; /* set width of menu */
position: relative;
top: 20px;
left: 43px;   /*left: 53px;*/
width: 170px;  /*width: 160px;*/
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a {
	display: block;
	border-style: none;
	margin: 0;
	padding: 2px 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	line-height: 1.4em;
	font-weight: bold;
}

ul a {
color: #850000;
text-decoration: none;
}

ul a:hover {
color: #000000;
}

#menu li {
	/* make the list elements a containing block for the nested lists */
	position: relative;
	text-align: right;
	padding-right: 7px;
} 

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 450px;
}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{
	display: block;
}

#menu li li{
text-align: left;
} 

ul ul ul a:link {
color: #000000;
text-decoration: none;
}

ul ul ul a:visited{
color: #000000;
text-decoration: none;
}

ul ul ul a:hover {
color: #850000;
text-decoration: none;
}

ul ul ul a:active{
color: #000000;
text-decoration: none;
}
