/* ------------------------------------------------------------ *\
	Animations
\* ------------------------------------------------------------ */

.animated { opacity: 0; filter: alpha(opacity=0); visibility: hidden; 
transition: all .8s ease-in-out;
-webkit-transition: opacity 0.8s ease 0s, visibility 0.8s ease 0s;
        -moz-transition: all .8s ease-out;
        -o-transition: all .8s ease-out;
}

.animated-in { opacity: .999 !important; filter: alpha(opacity=100); visibility: visible; }