

#popup_container
{
    font-family: "Lucida Grande","Lucida Sans Unicode","Arial,Verdana,sans-serif";
    font-size: 11px;
    min-width: 300px; /* dialog will be no smaller than this */
    max-width: 600px; /* dialog will wrap after this width */
    background: #822c7f;
    border: solid 5px #822c7f;
    color: white;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#popup_title
{
    font-family: "Lucida Grande","Lucida Sans Unicode","Arial,Verdana,sans-serif";
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    color: white;
    /*
    background: #CCC url(js/Alerts/images/title.gif) top repeat-x;
    border: solid 1px #FFF;
    border-bottom: solid 1px #999;
    */
    cursor: default;
    padding: 0px;
    margin: 10px 0px 0px 0px;
    min-width: 300px;
    max-width: 600px;
}

#popup_content
{
    background: url(images/alert.png) 10px top no-repeat;
    margin: 0px;
    padding: 17px 10px 5px 5px;
}

#popup_content.alert
{ 
    background-image: url(images/alert.png);
}

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

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

#popup_message
{ 
    padding-left: 50px;
}

#popup_panel
{
    text-align: center;
    margin: 10px 0px 0px 0px;
}

#popup_prompt
{ 
    margin: 5px 0px;
}

#popup_container INPUT[type='button'], #popup_panel INPUT[type='button']
{
    background: #6B1A69;
    border: outset 0px #6B1A69;
    color: white;
    font-weight: bold;
    /*
    width: 50px;
    height: 20px;
    */
    margin: 10px 0px 5px 0px;
    padding: 6px 10px;
    -moz-outline-style: none;
    outline: 0;

    -moz-box-shadow: 2px 2px 2px #470c45;
    -webkit-box-shadow: 2px 2px 2px #470c45;
    box-shadow: 2px 2px 2px #470c45;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

    cursor: pointer;
    cursor: hand;
}