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

body {
  margin: 5px;
  padding: 0;
  behavior:url("https://www.motorera.com/cadillac/csshover.htc");
	font-size: 100%;
	font-family: Verdana, "Times New Roman", Times, Georgia, serif;
color: #ffffff;
background-color: #000000;
}



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

}

/* Link styles*/
#menuContainer a {
  text-decoration: none;
  color: #FFffff;
  font-weight: bold;
  font-size: small;
  font-family: Verdana, Arial, sans-serif;
}

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

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

/* Set li styles*/
#menuContainer li {
  background-color: #0000FF;
  border: 1px solid #808080;
  width: 6em;
  /* this is to make the submenus position relative to this li */
  position: relative;
	
}

/* Mouseover li style*/
#menuContainer li:hover {
  border: 1px solid #0000FF;   
  background-color: #808080;
}

/*Initially hide second and higher level pop-ups */
#menuContainer ul ul {
  position: absolute;
  left: 6em;
  top: 0;
  visibility: hidden;
}

/*Third level menus should dissapear when first level has hover*/
#menuContainer li:hover ul ul {
	visibility: hidden;
}


/*Mouseover: display second level or third level pop-up*/
#menuContainer li:hover ul, #menuContainer li:hover li:hover ul {
  visibility: visible;
}

