/*This style will be applied to the div element holding the menu*/
body {
	margin: 0;
	padding: 10px;
}

td {
  text-decoration: none;
  color: #009957;
  font-weight: bold;
  font-size: 8pt;
  font-family: Verdana, Arial, sans-serif;
}

#menuContainer {
  background-color: green;
  width: 13em;
  padding: 1px;
}

/* Link styles*/

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

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

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

/* Set li styles*/

#menuContainer li {
  background-color: #009957;
  border: 1px solid #33FF99;
  width: 13em;
  /* this is to make the submenus position relative to this li */
  position: relative; 
}

/* Mouseover li style*/
#menuContainer li:hover {
  border: 1px solid #009957;   
  background-color: #33FF99;
}

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

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