  
 .overlay-content {
        display: none;
        background: #fff;
        padding: 10px;
        width: 300px;  /*width of popup window*/
        height: 250px;
        position: absolute;
       /* top: 50%;
        left: 70%;*/
        top: 15%;
        left: 50%;
        
        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 -20%;
       *margin: 0 0 0 -20%;
       margin: 0 0 0 -20%\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: 0 0 5px rgba(0,0,0,0.9);

    
      }
 
  

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;
}*/


 
/* 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;
    }
}