/*button {
   background: #000;
   color: #fff;
   text-align: center;
   font-weight: bold;
   padding: 10px 30px;
   border-radius: 3px;
}*/

.dialogueOverlay {
   position: fixed;
   height: 100%; 
   width: 100%;
   top: 0;
   right: 0;  
   bottom: 0;
   left: 0;
   background: rgba(0,0,0,0.8);
   display: none;
}

.dialoguePopup {
   max-width: 600px;
   width: 80%;
   max-height: 300px;
   height: 80%; 
   padding: 20px;
   position: relative;
   background: #fff;
   margin: 20px auto;
}

.dialogueConfirm {
   position: absolute;
   bottom: 10px;
   right: 10px;
   cursor: pointer;
   color: #000;
   background-image: url('../images/ok-icon_64.png');
   height: 64px; 
   width: 64px;
}

.dialogueCancel {
   position: absolute;
   bottom: 10px;
   left: 10px;
   cursor: pointer;
   color: #000;
   background-image: url('../images/Actions-edit-delete-icon_64.png');
   height: 64px; 
   width: 64px;
}

#message {
	position: relative;
	top: 40px;
	left: 50px;
}

#spanDisplayMessageTitle {
	font-weight: bold;
	font-size: 20px;
}

#spanDisplayMessageText {
	font-size: 16px;
}