#scsMsgTtl, #scsMsgBd{
    -moz-animation: cssAnimat 1s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimat 1s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimat 1s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimat 1s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimat {
    to {
        /*width:0;*/
        height:0;
        opacity:0;
        display:none;
        padding:0;
    }
}
@-webkit-keyframes cssAnimat {
    to {
        /*width:0;*/
        height:0;
        opacity:0;
        display:none;
        padding:0;
    }
}