.cssanimations .run_animations a {
	transition: color 0.3s ease-in;
  -webkit-transition: color 0.3s ease-in;
  -moz-transition: color 0.3s ease-in;
}
.cssanimations .run_animations header .container {
	-webkit-animation: fadeInDown 1.5s 0s ease forwards;
	   -moz-animation: fadeInDown 1.5s 0s ease forwards;
	     -o-animation: fadeInDown 1.5s 0s ease forwards;
	        animation: fadeInDown 1.5s 0s ease forwards;
	opacity: 0;	
}
.cssanimations .run_animations div.page_title h2 {
	-webkit-animation: fadeInDown 1.5s 0.5s ease forwards;
	   -moz-animation: fadeInDown 1.5s 0.5s ease forwards;
	     -o-animation: fadeInDown 1.5s 0.5s ease forwards;
	        animation: fadeInDown 1.5s 0.5s ease forwards;
	opacity: 0;
}
.cssanimations .run_animations .album.grid .wall_entry,
.cssanimations .run_animations .filter_content.without_filters .element {
	-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0);
		-webkit-animation: scaleUp 0.8s ease-in-out forwards;
		-moz-animation: scaleUp 0.8s ease-in-out forwards;
		animation: scaleUp 0.8s ease-in-out forwards;
  opacity: 0;
}
@-webkit-keyframes scaleUp {
	to { -webkit-transform: scale(1); opacity: 1; }
}

@-moz-keyframes scaleUp {
	to { -moz-transform: scale(1); opacity: 1; }
}

@keyframes scaleUp {
	to { transform: scale(1); opacity: 1; }
}