﻿/*javascript alert popups*/
.popup_body {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    opacity: 0.9; /*background: #000;*/
}

#popup_container {
    font-size: 12px;
    min-width: 370px;
    max-width: 600px;
    background: #FFF;
    color: #000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

#popup_title {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    line-height: 1.75em;
    color: #fff;
    background: #859095;
    border-bottom: solid 1px #859095;
    cursor: default;
    padding: 0 5px;
    font-family: Arial;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

#popup_content {
    background: 16px 16px /*no-repeat url('../images/info.gif')*/;
    padding: 1em 1.75em;
    margin: 0em;
}

    #popup_content.alert {
        background-image: url('../Images/help-icon.png');
        color: #000;
        background-repeat: no-repeat;
    }

    #popup_content.success {
        background-image: url('../Images/success.png');
        color: #000;
        background-repeat: no-repeat;
    }

    #popup_content.confirm {
        background-image: url('../Images/question_mark.png');
        color: #000;
        background-repeat: no-repeat;
    }

    #popup_content.prompt {
        background-image: url('../Images/alert-icon.png');
        color: #000;
        background-repeat: no-repeat;
    }

#popup_message {
    text-align: center;
    font-size: 14px;
    width: 73%;
    margin: 0 auto;
    font-family: 'Conv_Roboto-Black',sans-serif;
    word-wrap: break-word;
}

#popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}

#popup_prompt {
    margin: .5em 0em;
}

h1#popup_title {
    margin-top: 0px !important;
}
/*javascript alert popups close*/
