#confirmOverlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    
    z-index: 100000;
}

#confirmBox {
    background-color: #EDF5E8;
    width: 460px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin:-130px 0 0 -230px;
    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;
    -ms-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
    -o-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

#confirmBox h1,
#confirmBox p {
    font: 20px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    /* background: url('header_bg.jpg') repeat-x left bottom #f5f5f5; */
    padding: 10px 15px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}

#confirmBox h1 {
    margin: 0px;
    padding: 15px;
    background-color: #6EB43F;
    letter-spacing: 0.3px;
    color: #FFFFFF;
}

#confirmBox p {
    background-color: transparent;
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
    padding-top: 0px;
}

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

#confirmBox .button{
    display: inline-block;
    background: url('buttons.png') no-repeat;
    color: white;
    position: relative;
    height: 33px;
    font: 17px/33px 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    margin-right: 15px;
    padding: 0 35px 0 40px;
    text-decoration: none;
    border: none;
}

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

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

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