:not(img).fadeInScale70_100,
img.loadable.loaded.fadeInScale70_100{
    animation: animation_fadeInScale70_100 ease-in-out 0.25s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode:forwards; /*when the spec is finished*/
    -webkit-animation: animation_fadeInScale70_100 ease-in-out 0.25s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
    -moz-animation: animation_fadeInScale70_100 ease-in-out 0.25s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode:forwards; /*FF 5+*/
    -o-animation: animation_fadeInScale70_100 ease-in-out 0.25s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode:forwards; /*Not implemented yet*/
    -ms-animation: animation_fadeInScale70_100 ease-in-out 0.25s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode:forwards; /*IE 10+*/
}
.delay_010{
    -webkit-animation-delay: 0.1s !important; /* Safari 4.0 - 8.0 */
    animation-delay: 0.1s !important;
}
.delay_025{
    -webkit-animation-delay: 0.25s !important; /* Safari 4.0 - 8.0 */
    animation-delay: 0.25s !important;
}

@keyframes animation_fadeInScale70_100{
    0% {
        opacity:0;
        transform:  scaleX(0.70) scaleY(0.70) ;
    }
    100% {
        opacity:1;
        transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-moz-keyframes animation_fadeInScale70_100{
    0% {
        opacity:0;
        -moz-transform:  scaleX(0.70) scaleY(0.70) ;
    }
    100% {
        opacity:1;
        -moz-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-webkit-keyframes animation_fadeInScale70_100 {
    0% {
        opacity:0;
        -webkit-transform:  scaleX(0.70) scaleY(0.70) ;
    }
    100% {
        opacity:1;
        -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-o-keyframes animation_fadeInScale70_100 {
    0% {
        opacity:0;
        -o-transform:  scaleX(0.70) scaleY(0.70) ;
    }
    100% {
        opacity:1;
        -o-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-ms-keyframes animation_fadeInScale70_100 {
    0% {
        opacity:0;
        -ms-transform:  scaleX(0.70) scaleY(0.70) ;
    }
    100% {
        opacity:1;
        -ms-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}