#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: url(../../images/popup-bg.png) left bottom no-repeat;
    width: 657px;
    height: 283px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -200px 0 0 -328px;

}

#confirmBox h1,
#confirmBox p {
    font: 14px/1 'Cuprum', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    background: url(../../images/popup-head-bg.png);
    height: 46px;
    width: 467px;
    color: #fff;
}

#confirmBox h1 {
    margin: 96px 0 0 91px;
    text-transform: uppercase;
}

#confirmBox h1 span {
    display: block;
    float: left;
    margin: 14px 0 0 60px;
}

#confirmBox p {
    background: none;
    font-size: 14px;
    line-height: 1.4;
    padding-top: 45px;
    text-align:center;
    margin: 0 0 0 91px;
}

#confirmButtons {
    padding: 15px 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: 0;
}

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

#confirmBox i {
    display: block;
    float: right;
    width: 16px;
    height: 18px;
    background: url(../../images/popup-x.png);
    margin: 12px 15px 0 0;
    cursor: pointer;
}

