/* Modal Dialog Box */

#modalOverlay {
  background-color:#000;
  cursor:wait;
}

#modalContainer {
  height:110px;
  width:260px;
  left:50%;
  top:30%;
  margin-left:-130px; // half the width, to center
background: #ffffff;
  border:3px solid #cc0000;
}

#modalContainer .modalClose {
  width:100px;
  height:30px;
  display:inline;
  z-index:3200;
  position:absolute;
  top:65px;
  right:80px;
  cursor:pointer;
  color: #ffffff;
  font-family: sans-serif;
font-size: 1.2em;
line-height: 1.3em;
}

/* THis is the message div inside the modal dialog */

.message {
	width: 240px;
	height: 100px;
	padding: 10px 10px 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	background: url(https://www.yakwax.com/assets/2009/12/18/82301dea7ff854a71f0e580509e66e3e_source.jpg);
	text-align: center;
font-weight: bold;
}