/* Modal Dialog Box */

#modalOverlay {
  background-color:#000;
  cursor:wait;
}

#modalContainer {
  height:150px;
  width:350px;
  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:120px;
  right:125px;
  cursor:pointer;
  color: #ffffff;
}

/* THis is the message div inside the modal dialog */

.message {
	width: 330px;
	height: 130px;
	padding: 20px 10px 0 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #40200C;
	background: #ffffff;
	text-align: center;
	font-size: 13px;
}