/* alert div */
#widgetAlert_alert_div {
    font-size:12px;
    font-family:verdana;
    outline:0;
}
/* this is the "fieldset", body of the alert */
#widgetAlert_fieldset{
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
    -ms-border-radius:15px;
    border-radius:15px;
    background-color:#FFFFFF;
    border: 2px solid #c6c7c8;
    padding-left:10px;
    padding-right:10px;
    padding-bottom: 35px;
}
/* this is the legend */
#widgetAlert_legend{
    color:#363535;
    font-weight:bold;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-top-left-radius: 15px;
    -moz-border-top-right-radius: 15px;
    -ms-border-top-left-radius: 15px;
    -ms-border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display:inline-block;
    background-color:#FFFFFF;
    position: relative;
    white-space: nowrap;
    left: 10px;
    top: -10px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 3px;
    border-top: 2px solid #c6c7c8;
    border-left: 2px solid #c6c7c8;
    border-right: 2px solid #c6c7c8;
}
/*this is the table containing the message */
#widgetAlert_text_area_table{
    margin-top:10px;
    margin-bottom:20px;
    width:100%;
}
/* this is the td containing the message */
#widgetAlert_text_area_table td{
    
    font-size:11px;
    font-weight:bold;
    font-family:verdana;
    text-align: center;
    margin:auto;
}
/* this is the close utton */
#widgetAlert_close_button{
    display:inline-block;
    float:right;
}
/* this is the main alert object */
#widgetAlert_alert{
    visibility:visible;
    position:absolute;
    margin-top:0px;
    margin-bottom:0px;
    margin-left:auto;
    margin-right:auto;
    padding:5px;
    overflow:visible;
    visibility:visible;
    
    z-index : 10001;
}
/* opaque div */
#widgetAlert_modal_div{
    position:         absolute;
    opacity:          0.64;
    
    /* IE 8 */
    -ms-filter:       "progid:DXImageTransform.Microsoft.Alpha(Opacity=64)";
    
    /* IE 7 */
    filter:           alpha(opacity=64);
    top:              0px;
    bottom:           0px;
    background-color: black;
    width:            100%;
    
    z-index : 10000;
}
