/* Modal Dialog Box */

#modalOverlay {
  background-color:#000;
  cursor:wait;
}

#modalContainer {
  height:100px;
  width:260px;
  left:50%;
  top:30%;
  margin-left:-130px; // half the width, to center
  background: #ffffff;
  border:3px solid #ccc;
}

#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.0em;
line-height: 1.1em;
}

/* THis is the message div inside the modal dialog */

.message {
	width: 240px;
	height: 80px;
	padding: 20px 10px 0 10px;
	font-family: monospace;
	color: #FF0000;
	background: #ffffff;
	text-align: center;
}