/*Changing leaf backgrounds for the counters on ourdata.html*/

.leaf-fade {
    background: url('http://www.gcer.co.uk/img/l2100.png') 0px 0px no-repeat ;
    background-size: 120px 150px;
    background-position: center;
    -webkit-animation: fadein 9s; /* Safari and Chrome */
    -moz-animation: fadein 9s; /* Firefox */
    -ms-animation: fadein 9s; /* Internet Explorer */
    -o-animation: fadein 9s; /* Opera */
    animation: fadein 9s;
    height: 100px;
    position: relative;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

