.mDialog_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  filter: alpha(opacity=20);
  opacity: .2;
}
.mDialog_box{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1680;
    
}
.mDialog_container {
    position: fixed;
    top: 10%;
    left: 50%;
    background-color: #fff;
    border-radius: 5px;
    font-size: 12px;
}
.mDialog_message{
    word-wrap:break-word;
    word-break: break-all;
}
.mDialog_container .mDialog_title {
    padding: 20px 20px 0;
    font-size: 14px;
}
.mDialog_container .mDialog_message {
    padding: 20px;
    font-size: 12px;
    max-height: 500px;
    overflow: auto;
}
.mDialog_container .mDialog_button {
    padding: 15px 30px 20px;
    border-top: 1px solid #eee;
    text-align: center;
}
.mDialog_container .mDialog_button button {
    color: #ffffff;
    border: 1px solid #008acb;
    background-color: #008acb;
    height: 24px;
   line-height: 22px;
    width: 100px;
   margin-left: 10px;
   margin-right: 10px;
   font-size: 12px;
   border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.mDialog_container .mDialog_button button:hover {
  color: #ffffff;
  background-color: #008acb;
}
.mDialog_container .close{
	margin-top: -2px;
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    width: 20px;
    right: 20px;
    top: 20px;
    position: absolute;
    font-size: 21px;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .3;
  
}
