

body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
	-webkit-backface-visibility: hidden;
}
.animated  {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
	  animation-delay: 0s;      
	     
	        
}
.animated {
    transition: transform 1s ease-in-out,opacity .8s ease-in-out;
        transition-property: transform, opacity;
        transition-duration: 1s, 0.8s;
        transition-timing-function: ease-in-out, ease-in-out;
        transition-delay: 0s, 0s;
}

.post444 {    border: 11px solid red !important;}


@-webkit-keyframes bounceInUp {
	0% {
		-webkit-transform: translateY(100px);
		
	}
	50% {
		
	}
	100% {
		
		-webkit-transform: translateY(0);
	}
}
@-moz-keyframes bounceInUp {
	0% {
		-moz-transform: translateY(100px);
		 
	}
	50% {
		
	}

	100% {
	  
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInUp {
	0% {
		-o-transform: translateY(100px);
		
	}
	50% {
		 
	}
	100% {
		
		-o-transform: translateY(0);
	}
}



@keyframes bounceInUp {
	0% {
		transform: translateY(100px);
		 
	}
	50% {
		
	}
	100% {
		
		transform: translateY(0);
		 
	}
}

.animated.bounceInUp {
	-webkit-animation-name: bounceInUp;
	-moz-animation-name: bounceInUp;
	-o-animation-name: bounceInUp;
	animation-name: bounceInUp;
}