/* IE works only if div.class is a a.class tag !!! */

div.rollmenu
{
  position: relative;  
  z-index: 1;
  text-decoration: none; /* To prevent IE of ounderlining blocktext */
}

div.rollmenu div
{
  /* hide all text in the div tag when NOT hovered */
  display: none;
}

div.rollmenu:hover
{
  /* IE requires this */
  font-size: 100%; 
}

div.rollmenu:hover div
{
  /* show text in the div tag when hovered */
  display: block;	
  position: absolute; 
  top: 55px; 
  left: 230px; 	

  width: 200px;
  border: 3px double #C00000;
  background-color: #FFFFFF;	
  padding: 5px 5px 5px 5px;
  color: #000000;
}


div.rollmenu div a
{
  font-family: "Arial", "Helvetica", "Sans Serif" ;
  font-size: 10pt;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  color: #000000;
  background-color: #FFFF00;	
}

div.rollmenu div a:hover
{
  color: #000000;
  background-color: #FF0000;	
}


