/**
 * WINDOW:
 * background   #EEE
 * border       #DDF;
 * 
 * TITLE (header):
 * background   #7575a9
 * color        #FFF
 *
 * BUTTON (footer):
 * background   #7575a9
 * color        #FFF
 * border       0px
 * 
 * BUTTON:HOVER (footer):
 * background   #3a3a54
 */


.sapo_dialog2 {
    position:           absolute;
    background-color:   #EEE;                               /* CUSTOM */
    border:             2px solid #DDF;                     /* CUSTOM */
    box-shadow:         2px 2px 7px #777;                   /* CUSTOM */
    box-shadow:         2px 2px 7px rgba(0, 0, 0, 0.5);     /* CUSTOM */
}

.sapo_dialog2_modal {
    left:               0;
    top:                0;
}

.sapo_dialog2 .sapo_dialog2_header,
.sapo_dialog2 .sapo_dialog2_footer {
    width:              100%;
    position:           absolute;
    left:               0;
    text-align:         center;
}

.sapo_dialog2 .sapo_dialog2_header {
    top:                0;

    padding:            3px 0 1px 0;    /* CUSTOM */
    background-color:   #7575a9;        /* CUSTOM */
    color:              #FFF;           /* CUSTOM */
    font-weight:        bold;           /* CUSTOM */
    text-shadow:        1px 1px 3px #3a3a54;
    text-shadow:        1px 1px 3px rgba(0, 0, 0, 0.5);
}

.sapo_dialog2 .sapo_dialog2_main {
    position:           absolute;
}

.sapo_dialog2 .sapo_dialog2_footer {
    bottom:             0;

    padding:            4px 0 4px 0;    /* CUSTOM */
    /*background-color: #DDF;*/
}

.sapo_dialog2 .sapo_dialog2_footer button {
    border-width:       0;
    border-radius:      6px;
    color:              #FFF;
    background-color:   #7575a9;
    padding:            4px 8px;
    text-align:         center;
    font-weight:        bold;
}

.sapo_dialog2 .sapo_dialog2_footer button:hover {
    background-color:   #3a3a54;
}



/* GROWLS */

.sapo_dialog2_growls {
    position:           fixed;
    right:              0;
    top:                0;
}

.sapo_dialog2_growls .sapo_dialog2 {
    float:              right;
    clear:              both;
    position:           relative;
}

.sapo_dialog2_growls .sapo_dialog2 .sapo_dialog2_footer {
    bottom:             auto;
    top:                0px;
}

.sapo_dialog2_growls .sapo_dialog2 .sapo_dialog2_footer button {
    position:           absolute;
    right:              2px;
    top:                2px;
    width:              18px;
    height:             18px;

    padding:            0;
}



/* ICONS */

.sapo_dialog2_icon_alert,
.sapo_dialog2_icon_confirm,
.sapo_dialog2_icon_prompt,
.sapo_dialog2_icon_notify {
    position:           absolute;
    width:              30px;
    height:             30px;
}

.sapo_dialog2_icon_alert {      background-image:   url('alert.png');   }
.sapo_dialog2_icon_confirm {    background-image:   url('confirm.png'); }
.sapo_dialog2_icon_prompt {     background-image:   url('prompt.png');  }
.sapo_dialog2_icon_notify {     background-image:   url('notify.png');  }
