#confirmOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	/*background:url('ie.png');*/
	background: -moz-linear-gradient(rgba(11,11,11,0.1), rgba(11,11,11,0.6)) repeat-x rgba(11,11,11,0.2);
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11,11,11,0.1)), to(rgba(11,11,11,0.6))) repeat-x rgba(11,11,11,0.2);
	z-index:5000;
}

#confirmBox{
	background: #e5e5e5;
	min-width:300px;
	position:absolute;
	left:50%;
	top:20%;
	/*margin:-130px 0 0 -230px;*/
	transform: translateX(-50%);
	border: 1px solid rgba(33, 33, 33, 0.6);
	
	-moz-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
}

#confirmBox h3{
	font-size:20px;/* change by girish = initially there was missing -size */
	background: #4083bf;
	padding: 12px 25px;
	color:#fff;
	text-align: center;
	letter-spacing:0.3px;
	margin:0;
}
#confirmBox.conf-error-msg h3{
	background: #e0584b;
}
#confirmBox.conf-warning-msg h3{
	background: #fba900;
}
#confirmBox.conf-success-msg h3{
	background: #abd431;
}
#confirmBox.conf-default-msg h3{
	background: #4a4a4a;
}
#confirmBox.conf-info-msg h3{
	background: #4083bf;
}

#confirmBox p{
	padding: 18px;
	color:#333;
	text-align: center;
	background:none;
	font-size:14px;
	line-height:1.4;
}

#confirmButtons{
	padding:15px 0px;
	text-align:center;
}
#confirmButtons a{
	padding:7px 25px;
	margin:0px 10px;
}
