  /**wait Box*/
  #wait_wrapper {
        position:fixed;
        background:rgba(0,0,0,0.5);
        z-index:10000 !important;
        height:100%;
        width:100%;
        left: 0;
        top:0;
  }
  #wait_box {
        margin:0 auto;
        width:300px;
        padding:5px;
        background:#f3f3f3;
        position:relative;
        top:30%;
        -moz-box-shadow:2px 2px 6px black;
        box-shadow:2px 2px 6px black;
        -moz-border-radius:10px;
        border-radius:10px;
        -webkit-box-shadow:2px 2px 6px black;
        -webkit-border-radius:10px;
        text-align: center;
        padding-bottom:10px;
        z-index:11000 !important;
  }
  #wait_box h1 {
        -moz-border-radius-topright:10px;
        border-top-right-radius:10px;
        -moz-border-radius-topleft:10px;
        border-top-left-radius:10px;
        -webkit-border-top-left-radius:10px;
        -webkit-border-top-right-radius:10px;
  }
  #wait_cancel {
	background:#ccc;
    border:1px solid #444;
	padding:3px 5px;
	-moz-border-radius:5px;
	border-radius:5px;
	-webkit-border-radius:5px;
    margin-bottom:5px;
  }
  a#wait_cancel {
       text-decoration: none;
       color:#333;
       font-style: italic;
  }
  a#wait_cancel:hover {
       text-decoration: underline;
       color:#333;
  }