

#menuthirdContainer {
  width: 210px;
  border: 1px solid maroon;
  position: relative;
  z-index: 3;
  }

/* Link styles*/

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

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

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

/* Set li styles*/

#menuthirdContainer li {
background: white url(images/bgfirstvisittour.gif) bottom;
font: bold 12px Verdana, Helvetica, sans-serif;
color:#800000;
display: block;
padding: 6px 0px 6px 10px;
text-align:left;
text-decoration: none;
width:200px;
/*
  background-color: #CC6600;
  border: 1px solid #FF9933;
  width: 15em;*/
  /* this is to make the submenus position relative to this li */
  position: relative; 
}

/* Mouseover li style*/
#menuthirdContainer li:hover {
    background-image: url(images/bgfirstvisittour1.gif);
  }

/*Initially hide second level (or higher) pop-up*/
#menuthirdContainer ul ul {
  position: absolute;
  left: 210px;
  top: 0;
  visibility: hidden;
 border: 1px solid maroon;
}

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




