/* CSS Document */

  #meerinfo {
  	color:#0066FF;
	font-weight:bold;
	cursor:pointer;   
  }
 
  /* mouseover state */
  #meerinfo:hover {
  	color:#FF0000;
  }
 
  /* clicked state */
  #meerinfo:focus {
  	color:#009966;
  }
 
  /* tooltip styling */
  .tooltip {
    display:none;
    background:url(../images/black_arrow.png);
    height:163px;
    padding:40px 30px 10px 30px;
    width:310px;
    font-size:11px;
    color:#fff;
  }
 
  /* a .label element inside tooltip */
  .tooltip .label {
    color:yellow;
    width:35px;
  }
 
  .tooltip a {
    color:#ad4;
    font-size:11px;
    font-weight:bold;
  }
  
  /* the overlayed element */
.simple_overlay {
 
    /* must be initially hidden */
    display:none;
 
    /* place overlay on top of other elements */
    z-index:10000;
 
    /* styling */
    background-color:#ffffff;
    padding: 20px;
 
    width: 490px;
    min-height: 60px;
    border: 1px solid #82C500;
 
    /* CSS3 styling for latest browsers */
    -webkit-box-shadow: 0px 0px 12px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 12px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 12px 0px rgba(50, 50, 50, 0.75);
}
 
/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image: url('/images/icons/close.png');
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
    height: 32px;
    width: 32px;
}