
#popup_container
{
    font-size: 15pt;
    width:300px; /* Dialog will be no smaller than this */
    height:150px;
    border: solid 5px #444;
    background: #f1f1f1;
    color:#504B56;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    z-index:100;

}

#popup_title
{
    font-size: 13pt;
    font-weight: bold;
    text-align: center;
    background:#F9FAFA;
    box-shadow:  0 1px 2px #D2D4D4;
    padding:7px;
    color:#3F3D3D;
    border:solid 1px #D9DADA;
}

#popup_content
{
    margin:0; padding:0; width:310px; height:auto;
    display:table;
}

#popup_content.alert , #popup_content.confirm,#popup_content.prompt
{
    color:#000;
    text-align:center;
    height:auto;
}

#popup_message
{
    display:block;
    padding:10px 0 10px 0;
    text-align:center;
    margin:0px;
    font-size: 15px;
    font-weight: 400;
}

#popup_panel
{
    text-align: center;
    display:block;
}
#popup_ok
{
		outline: none;
    font-size: 10pt;
    width:90px;
    height:50px;
    background-color:#0954a1;
    border:1px solid #000;
    color:#fff;
    margin:2px;
    padding:5px;
    cursor:pointer;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
}
/*#popup_ok:hover {background-color:#009fc5;}*/
#popup_cancel
{
    font-size: 10pt;
    width:90px;
    height:50px;
    background-color:#B3B3B3;
    color:#ffffff;
    margin:2px;
    padding:5px;
    cursor:pointer;
    border:solid 1px #444;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
#popup_cancel:hover {background-color:#7f7e7e;}