@CHARSET "ISO-8859-1";

#menu {
  width: 150px; /* set width of menu */
  background: #666666;
  margin: 0px auto;
} 

#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, #menu h2 {
  font: 11px Verdana, Arial, Helvetica, sans-serif;
  display: block;
  margin: 0;
  padding: 3px 1px 1px;
}

#menu a {
  color: #FFFFFF;
  background: #666666;
  text-decoration: none;
}

#menu a:hover {
  color: #FFFFFF;
  background: #6265ff;
}

/* popouts */

#menu li {
/* make the list elements a containing block for the nested lists */
  position: relative;
} 

#menu ul ul ul {
  position: absolute;
  top: 0;
  left: 100%; /* to position them to the right of their containing block */
  width: 100%; /* width is based on the containing block */
}

/* hovers */

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;
}