<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

/*This style will be applied to the div element holding the menu*/

body {
	margin: 0;
	padding: 5px;
}

#menuContainer {
  background-color: white;
  width: 10em;
  padding: 5px;
}

#menuContainer P {
text-indent:-1em
}
/* Link styles*/

#menuContainer a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 10pt;
  font-family: Verdana, Arial, sans-serif;
}

#menuContainer a:hover {
  color: #993300;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Set li styles*/

#menuContainer li {
  background-color: #EFEDF0;
  border: 1px solid #333333;
  width: 10em;
  /* this is to make the submenus position relative to this li */
  position: relative; 
}

/* Mouseover li style*/
#menuContainer li:hover {
  border: 1px solid #CC6600;   
  background-color: #FAECDE;
}

/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: 10em;
  top: 0;
  visibility: hidden;
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover &gt; ul {
  visibility: visible;
}
</pre></body></html>