#popup_container {
    font-family: "Georgia", Arial, sans-serif;
    font-size: 12px;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    background: #FFF;
    border: solid 1px #999;
    color: #000;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
}

#popup_title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.9em;
    color: #FFFFFF;
    background: url(../images/append-prepend-bg.png) repeat-x left top;
    /*border: solid 1px #FFF;*/
    border-bottom: solid 1px #999;
    cursor: default;
    padding: 0em;
    margin: 0em;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

#popup_content {
    /*background: 16px 16px no-repeat url(info.gif);*/
    padding: 1em 1.75em;
    margin: 0em;
}

#popup_content.alert {
    /*background-image: url(info.gif);*/
}

#popup_content.confirm {
    /*background-image: url(important.gif);*/
}

#popup_content.prompt {
    /*background-image: url(help.gif);*/
}

#popup_message {
    padding: 0 0px;
    min-height: 50px;
    font-size: 16px;
    text-align: center;
}

#popup_panel {
    text-align: center;
    margin: 1em 0em 0em;
}

#popup_prompt {
    margin: .5em 0em;
}
#popup_cancel
{
    margin-left: 10px;
}