  
 .overlay-content {
        display: none;
        background: #fff;
        padding: 5px;
        width: 300px;  /*width of popup window*/
        height: 220px;
        position: absolute;
        top: 50%;
        left: 70%;

        
        cursor: default;
        z-index: 10001;
        border-radius: 4px;
       /* 
       margin: 0 0 0 -20%; /* add negative left margin for half the width to center the div */
       _margin: 0 0 0 -40%;
       *margin: 0 0 0 -40%;
       margin: 0 0 0 -40%\9;
       transform: translate(-50%, -50%);
       box-shadow: 0 0 5px rgba(0,0,0,0.9);*/
    
  background-color: rgb(255,255,255); /* Needed for IEs */

  -moz-box-shadow: 5px 5px 5px rgba(68,68,68,0.6);
  -webkit-box-shadow: 5px 5px 5px rgba(68,68,68,0.6);
  box-shadow: 5px 5px 5px rgba(68,68,68,0.6);

    
      }
 
  

input[type=button] {
 cursor: pointer;
  border : solid 1px #62acd6;
  border-radius : 20px 3px 20px 4px ;
  moz-border-radius : 20px 3px 20px 4px ;
  -webkit-box-shadow : 0px 0px 1px rgba(0,0,0,0.7);
  -moz-box-shadow : 0px 0px 1px rgba(0,0,0,0.7);
  box-shadow : 0px 0px 1px rgba(0,0,0,0.7);
  font-size : 15px;
  color : #ffffff;
  padding : 1px 17px;
  background : #62acd6;
  background : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#62acd6), color-stop(100%,#62acd6));
  background : -moz-linear-gradient(top, #62acd6 0%, #62acd6 100%);
  background : -webkit-linear-gradient(top, #62acd6 0%, #62acd6 100%);
  background : -o-linear-gradient(top, #62acd6 0%, #62acd6 100%);
  background : -ms-linear-gradient(top, #62acd6 0%, #62acd6 100%);
  background : linear-gradient(top, #62acd6 0%, #62acd6 100%);
  filter : progid:DXImageTransform.Microsoft.gradient( startColorstr='#62acd6', endColorstr='#62acd6',GradientType=0 );

 }
input[type=button]:hover {
  background: #05abe0;
 }

#myText {
   font-size: 15px;
}

#welheader {
    background-color: #ff9703;
}
 .close-btn a {
background:url(/fileadmin/uploads/Scientific/Photos/Buttons/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-5px; right:-8px; cursor:pointer;}



 
/* media query for most mobile devices */
@media only screen and (min-width: 0px) and (max-width: 480px){
 
    .overlay-content {
        width: 96%;
        margin: 0 2%;
        left: 0;
    }
}