.Notify_container {
    width: 500px;
    height: 110px;
    position: fixed;
    left: 50%;
    margin-left: -250px;
    top: 50%;
    margin-top: -125px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 15px #808080;
    -moz-box-shadow: 0px 0px 15px #808080;
    box-shadow: 0px 0px 15px #808080;
    display: none;
}

.Notify_container .wrapper {
    border: 2px solid #808080;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    background-color: #eee;
}

.Notify_container .title {
    height: 30px;
    max-height: 30px;
    border-bottom: 1px solid #555555;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    overflow: hidden;
    word-break: break-all;
}

.Notify_container .content {
    height: 60px;
    max-height: 60px;
    text-align: center;
    overflow: auto;
    word-break: break-all;
    padding: 5px;
    font-weight: bold;
    color: #333333;
}

.Notify_container .actions {
    height: 36px;
    max-height: 36px;
    text-align: center;
}

.Notify_container .actions .button_close {
    height: 33px;
    padding: 6px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #ae474a;
    border: 2px solid #722c2f;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;;
    text-align: center;
    color: #FFFFFF;
    font-weight: 900;
}