#popup_container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    background: #FFF;
    border: 1px solid #aa0014;
    color: #000;
}

#popup_title {
    background: #aa0014;
    text-align: left;
    z-index: 1;
    height: 40px;
    line-height: 40px;
    padding: 0 45px 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 100;
}

#icon-exclamation {
    background: url(images/modal-title-icon.png) no-repeat;
    width: 12px;
    height: 51px;
    position: absolute;
    left: 20px;
    top: 3px;
    display: inline-block;
}

#icon-popup-closer {
    background: url(images/modal-closer.png) no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 12px;
    display: inline-block;
    text-indent: -9999px;
}

#popup_content {
    /*background: 16px 16px no-repeat url(images/info.gif);*/
    padding: 1em 1.75em;
    margin: 0em;
}

    #popup_content.alert {
        /*background-image: url(images/info.gif);*/
    }

    #popup_content.confirm {
        /*background-image: url(images/important.gif);*/
    }

    #popup_content.prompt {
        /*background-image: url(images/help.gif);*/
    }

#popup_message {
    padding: 20px 0px 20px 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color:black;
}

#popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}

#popup_prompt {
    margin: .5em 0em;
}

.btn {
    display: inline-block;
    padding: 0;
    height: 30px;
    line-height: 30px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: none;
    text-decoration: none;
}

.btn-danger {
    color: #fff;
    background-color: #aa0014;
}
