#popup_container {
    font-family: Arial, sans-serif;
    font-size: 16px;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 800px; /* Dialog will wrap after this width */
    background: #F3F3F3;
    border: 1PX;
    color: #333;
    background-image: linear-gradient(bottom, rgb(176,176,176) 6%, rgb(243,243,243) 73%);
    background-image: -o-linear-gradient(bottom, rgb(176,176,176) 6%, rgb(243,243,243) 73%);
    background-image: -moz-linear-gradient(bottom, rgb(176,176,176) 6%, rgb(243,243,243) 73%);
    background-image: -webkit-linear-gradient(bottom, rgb(176,176,176) 6%, rgb(243,243,243) 73%);
    background-image: -ms-linear-gradient(bottom, rgb(176,176,176) 6%, rgb(243,243,243) 73%);
 
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.06, rgb(176,176,176)),
        color-stop(0.73, rgb(243,243,243))
    );
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 5px 5px 5px #E6E6E6;
    -webkit-box-shadow: 5px 5px 5px #E6E6E6;
    box-shadow: 5px 5px 5px #E6E6E6;
    box-shadow:inset 0 0 10px #666v;
    -moz-box-shadow: inset 0 0 10px #666v;
    -webkit-box-shadow: inset 0 0 10px #666v;
}
 
#popup_title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    color: #FFF;
    background: #CCC url(title.gif) top repeat-x;
    border-bottom: solid 1px #FFF;
    cursor: default;
    padding: 0em;
    margin: 0em;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
 
#popup_content {
    background: 16px 16px no-repeat url(info.png);
    padding: 1em 1.75em;
    margin: 0em;
}
 
#popup_content.alert {
    background-image: url(info.png);
}
 
#popup_content.confirm {
    background-image: url(important.png);
}
 
#popup_content.prompt {
    background-image: url(help.png);
}
 
#popup_message {
    padding-left: 48px;
}
 
#popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}
 
#popup_prompt {
    margin: .5em 0em;
}

