.dialogBody .form-wrapper {
    border-radius: 10px;
    display:block;
}

.dialogBody .form-wrapper input {
    width: 175px;
    height: 20px;
    padding: 10px 5px;
    float: left;   
    font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
    border: 0;
    background: #eee;
    border-radius: 3px 0 0 3px;  
    box-shadow: 0 0 2px rgba(0,0,0,.3) inset;   
}

.dialogBody .form-wrapper input:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
}

.dialogBody .form-wrapper input::-webkit-input-placeholder {
   color: #999;
   font-weight: normal;
   font-style: italic;
}

.dialogBody .form-wrapper input:-moz-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.dialogBody .form-wrapper input:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}   

.dialogBody .form-wrapper button {
    overflow: visible;
    position: relative;
    border: 0;
    padding: 0 15px;
    cursor: pointer;
    height: 40px;
    padding:0 15px;
    font: bold 15px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #fff;
    text-transform: uppercase;  
    border-radius: 0 3px 3px 0;     
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
} 

.dialogBody button:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
} 

.dialogBody .form-wrapper button:hover,.form-wrapper button:hover:before{    
    /*background: #e54040;*/
    opacity:0.9;
  	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  	filter: alpha(opacity=90);
  	-moz-opacity:0.9;
  	-khtml-opacity: 0.9;
  	opacity: 0.9;    
}  

.dialogBody .form-wrapper button:active,
.form-wrapper button:focus{  
    /*background: #c42f2f;*/
  	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  	filter: alpha(opacity=100);
  	-moz-opacity:1;
  	-khtml-opacity: 1;
  	opacity: 1;
    outline: 0;  
}

.dialogBody .form-wrapper button:before { /* left arrow */
    content: '';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    top: 12px;
    left: -6px;
}

.dialogBody .form-wrapper button::-moz-focus-inner {
    border: 0;
    padding: 0;
}   

#thankMsg{
  text-align:center; 
  margin-top:40px;         
} 

.dialogBody{
  min-height:170px;                
}