#confirmOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	background:url('ie.png');
	background: -moz-linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)) repeat-x rgba(0,0,0,0.7);
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0.7)), to(rgba(0,0,0,0.7))) repeat-x rgba(0,0,0,0.7);
    
	z-index:100000;
}

#confirmBox{
	background:#fff;
	width:460px;
	position:fixed;
	left:50%;
	top:50%;
	margin:-130px 0 0 -230px;
	
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow:    0px 0px 30px 0px rgba(0, 0, 0, 1);
    box-shadow:         0px 0px 30px 0px rgba(0, 0, 0, 1);
}

#confirmBox h1
{
    font-family:'ProximaSemiBold';
    font-size:24px;
    color:#00ba9c;
    text-align:center;
    margin:-47px auto 0px auto;
    padding-top:100px;
    display:block;
    /*background:transparent url(ie.png) no-repeat top center;*/
}
#confirmBox p{
	font-family:'ProximaRegular';
    font-size:18px;
    color:#000;
    text-align:center;
	padding:10px 0 25px 0;
    width:85%;
    margin:0 auto;
    line-height:1.4;
}

#confirmButtons{
	padding:0;
	text-align:center;
    border-top:1px solid #ccc;
}

#confirmBox .button{
	display:inline-block;
    padding:15px 0px;
	background:transparent;
	color:white;
	position:relative;
	height: 100%;
	width:50%;
    text-align:center;
	font-family:'ProximaRegular';
    font-size:24px;
    color:#000;
	text-decoration:none;
	border:none;
    border-right:1px solid #ccc;
}

#confirmBox .button:hover{
	color:#00ba9c;
}


#confirmBox .button:last-child{border-right:none}


