/* ALERT */
#ALERT_shadow  {
    position:fixed; z-index:202;
    top:0;left:0;
    width:100%;
    height:100%;
    background:rgba(33,66,66,0.5);
}

#ALERT {
    position:fixed; z-index:203;
    font-size:13px;
    color:#333;

    left:50%;
    top:50%;
    width:400px;margin-left:-200px;
    height:150px;margin-top:-50px;
    background:white;
    border:1px solid orange;
    border-radius:5px;
}

#ALERT_message {
    position: absolute;
    top: 50px;
    width: 100%;
    text-align: center;
    padding-right: 30px;
    font-size: 14px;
    font-weight: bold;
    margin-top: -5px;
}

#ALERT_close {
    width:50px;
    height:50px;
    position:absolute;
    z-index:10;
    top: -15px;
    right: -15px;
    cursor:pointer;
    background:url('/css/images/ALERT/ALERT_close.png') 0 0 no-repeat;
}