/*This style will be applied to the div element holding the menu*/
body {
	margin: 0;
	padding: 5px;
}

/* Link styles*/

#cajaFamilias a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 10pt;
  padding: 5px;
  font-family: Verdana, Arial, sans-serif;
}

#cajaFamilias a:hover {
  color: #fff;
}

/* Hide bullets in unordered list*/
#cajaFamilias ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
  
}

/* Set li styles*/

#cajaFamilias li {
  background-color: #4aa0e0;
  border: 1px solid #fff;
  width: 10em;
  /* this is to make the submenus position relative to this li */
  position: relative; 
}

/* Mouseover li style*/
#cajaFamilias li:hover {
  border: 1px solid #4aa0e0;   
  background-color: #80bce9;
}

/*Initially hide second level (or higher) pop-up*/
#cajaFamilias ul ul {
  position: absolute;
  left: 10em;
  top: 0;
  visibility: hidden;
}

/*Mouseover: display second level (or higher) pop-up*/
#cajaFamilias li:hover > ul {
  visibility: visible;
}