/*Modal confirmation*/
/* Z-index of #mask must lower than #boxes .window */
#mask {
  position:absolute;
  z-index:9000;
  background-color:#000;
  display:none;
  top: 0;
  left: 0;
}
  
#boxes .window {
  position:absolute;
  width:440px;
  height:200px;
  display:none;
  z-index:9999;
  padding:50px 20px 0;
}


/* Customize your modal window here, you can add background image too */
#boxes #dialog {
  width:530px; 
  height:225px;
  background:#FFF;
  border:3px solid #C00;
}

#modalButtons {
	text-align:center;
}
#modalButtons img {
	margin:0 2px;
	cursor:pointer;
}
#modalSuccess {
	font-size:15px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	background:url(tick.gif) left center no-repeat;
	text-align:left;
	padding-left:80px;
	margin-left:40px;
	margin-bottom:30px;
	padding-top:15px;
	color:#000;
	height:54px;
}