#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:100000;
}

#confirmBox{
    background: #fff;
    width: 460px;
    height: 260px;
    width: 700px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid rgba(33, 33, 33, 0.6);
    opacity: 1;
    transition: 5s opacity;
       -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.working {
	opacity: .1;
}
#confirmBox h1,
#confirmBox p{
	font:26px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
	background:#fff;
	padding: 1px 25px 0;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	color:#394B59;
}

#confirmBox h1 {
    color: #394b59;
    font-family: "ProximaNova-Light";
    font-size: 28px;
    font-weight: bold;
    line-height: 1em;
    padding: 20px 25px 15px;
    margin-top: 0 !important;
    text-transform: none;
}

#confirmBox p{
    font-family: 'Univers W01',Arial,"Helvetica Neue",Helvetica,sans-serif;
    line-height: 1.45;
    font-weight: 200;
    color: #231f20;
}

#confirmButtons{
	padding:15px 0 25px;
	text-align:center;
}

#confirmBox .button{
    position: relative;
    display: inline-block;
    text-decoration: none;
    background-color: #00adef;
    color: #fff;
    padding: .2em 1em;
    border-radius: 5em;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4em;
    font-weight: 400;
    text-align: center;
    -webkit-transition: background-color 200ms ease 0ms;
    -moz-trasition: background-color 200ms ease 0ms;
    -ms-transition: background-color 200ms ease 0ms;
    -o-transitionsition: background-color 200ms ease 0ms;
    transition: background-color 200ms ease 0ms;
    behavior: url(pie.htc);
	margin-right: 10px;
}

#confirmBox .button:hover{
	background-color: #23c2ff;
}

#confirmBox .button.gray{
    position: relative;
    display: inline-block;
    text-decoration: none;
    background-color: #ccc;
    color: #fff;
    padding: .2em 1em;
    border-radius: 5em;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4em;
    font-weight: 400;
    text-align: center;
    -webkit-transition: background-color 200ms ease 0ms;
    -moz-trasition: background-color 200ms ease 0ms;
    -ms-transition: background-color 200ms ease 0ms;
    -o-transitionsition: background-color 200ms ease 0ms;
    transition: background-color 200ms ease 0ms;
    behavior: url(pie.htc);
}

#confirmBox .button.gray:hover{
	background-color: #bbb;
}

#confirmBox .button:last-child{	margin-right:0;}

#confirmBox .button span{
	position:absolute;
	top:0;
	right:-5px;
	/* background:url('buttons.png') no-repeat; */
	width:5px;
	height:33px
}

#confirmBox p.larger {
	font-size: 16px;
	font-family: 'Univers W01',Arial,"Helvetica Neue",Helvetica,sans-serif;
	line-height: 1.45;
	font-weight: 200;
	color: #231f20;
	font-size: 1.15em;
	margin: .2em 0 .6em 0;
}
#confirmBox p.smaller {
    margin: .2em 0 .6em 0;
    font-size: 14px;
    line-height: 1.3em;
    margin-bottom: 10px;
    color: #394B59666;
}
/* #confirmBox .blue{				background-position:left top;text-shadow:1px 1px 0 #5889a2;}
#confirmBox .blue span{			background-position:-195px 0;}
#confirmBox .blue:hover{		background-position:left bottom;}
#confirmBox .blue:hover span{	background-position:-195px bottom;}

#confirmBox .gray{				background-position:-200px top;text-shadow:1px 1px 0 #707070;}
#confirmBox .gray span{			background-position:-395px 0;}
#confirmBox .gray:hover{		background-position:-200px bottom;}
#confirmBox .gray:hover span{	background-position:-395px bottom;} */
#confirmBox  .close {
    color: #58595b;
    background: none;
    position: absolute;
    top: 5px;
    display: block;
    right: 5px;
    width: auto;
    height: auto;
    cursor: pointer;
	-webkit-transition: all 200ms ease 0ms;
		-moz-trasition: all 200ms ease 0ms;
		-ms-transition: all 200ms ease 0ms;
    -o-transitionsition: all 200ms ease 0ms;
			transition: all 200ms ease 0ms;
	text-decoration: none;

}
#confirmBox .close:before {
    font-size: 1.4em;
	line-height: 0.5em;
    font-weight: bold;
    font-family: monospace;
    content: 'X';
    border: 3px solid #394B59;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: block;
    text-align: center;
    padding-top: 2px;
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-trasition: all 200ms ease 0ms;
    -ms-transition: all 200ms ease 0ms;
    -o-transitionsition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    position: relative;
    top: 0px;
	text-shadow: 0 0 0;
}


#confirmBox .close:hover:before,
#confirmBox .close:hover {
    color: #00adef;
    border-color: #00adef;
}
