<style>
#confirmDialog {
    background:#fff;
    width:300px;
    height:200px;
	height:250px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display:none;
    margin:0 auto;
    margin-top:150px;
    padding:10px;
    font-family: arial;
    z-index:999;
    text-align:center;
}

#confirmDialog p{
    text-align:center;
    margin:0 auto;
    padding-bottom:10px;
}

#bg {
    background:rgba(0,0,0,0.8);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    z-index:998;
}

a.ok, a.cancel {
    display:inline-block;
    padding:10px;
    border-radius:5px;
    box-shadow:0 0 5px rgba(0,0,0,0.2);
    text-align:center;
    color:#fff;
    font-weight:bold;
    text-decoration:none;
}

a.ok {
    background:#41b403;
    border-bottom:3px solid #328b02;
}

a.cancel {
    background:#c4340d;
    border-bottom:3px solid #9f2909;
}


</style>