.rDialog {
    position: fixed;
    _position: absolute;
}
.rDialog-wrap {
    position: relative;
    background: #fff;
    /*opacity: .7;*/
    width: 15rem;
    background-clip: padding-box;
    -webkit-border-radius: 0.7rem;
    -moz-border-radius: 0.7rem;
    -o-border-radius: 0.7rem;
    border-radius: 0.7rem;
    box-shadow: 0.1rem 0.1rem 0.1rem #000;
    padding: 1rem 1rem;
    margin: auto;
}
.rDialog-header-load {
    text-align: center;
    background: url("../img/alert-loading.gif");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    width: 3.2rem;
    height: 3.4rem;
    margin: auto;
}
.rDialog-header-alert,.rDialog-header-ok {
    text-align: center;
    background: url("../img/alert-icons.png");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 3.2rem;
    height: 3.4rem;
    margin: auto;
}
.rDialog-header-alert{
    background-position: 0 -3.5rem;
}
.rDialog-header-ok {
    background-position: 0 0;
}
.rDialog-content {
    padding: 1em 1em;
    font-size: 0.8em;
    color: #000;
    overflow: hidden;
    text-align: center;
}
.rDialog-footer {
    padding-left: 1rem;
    text-align: center;
}
.rDialog-footer a {
    display: inline-block;
    margin: 0 0.4rem 0.4rem 0;
    height: 2.4rem;
    width: 15%;
    line-height: 2.4rem;
    padding: 0 2rem;
    font-size: 0.96em;
    -moz-border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
}
.rDialog-footer a:link, .rDialog-footer a:visited, .rDialog-footer a:hover {
    color: #fff;
    text-decoration: none;
}
.rDialog-ok,.rDialog-ok:hover {
    background: #FBA733;
    color: #fff;
}
.rDialog-cancel,.rDialog-cancel:hover  {
    background: #ff7374;
    color: #A7A7A7;
}
.rDialog-mask {
    position: fixed;
    _position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    filter: alpha(opacity=30);
    opacity: .3;
}