/* CSS Document */

/*transition-animations*/
/* 
Define this in your CSS 
.ease-inAnimation = Replace it by the name you want to give your animation
.easeinAnimObj = Assign this class to the elements to which you want to apply the animation
*/

.easeinAnimObjL1 {
	position: relative;
	opacity: 0%;
	/* Chrome, Safari*/
	-webkit-animation-name: ease-outL;
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-delay: 0s;
	-webkit-animation-direction: normal;
	-webkit-animation-play-state: running;
	-webkit-animation-fill-mode: forwards;
	/* Mozilla */	
	-moz-animation-name: ease-outL;
	-moz-animation-duration: 3s;
	-moz-animation-timing-function: ease-out;
	-moz-animation-delay: 0s;
	-moz-animation-iteration-count: 1;
	-moz-animation-direction: normal;
	-moz-animation-play-state: running;
	-moz-animation-fill-mode: forwards;
	/* Standard syntax */
	animation-name: ease-outL;
	animation-duration: 3s;
	animation-timing-function: ease-out;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction:normal;
	animation-play-state: running;
	animation-fill-mode: forwards;
}

.easeinAnimObjL2 {
	position: relative;
	opacity: 0;
	/* Chrome, Safari*/
	-webkit-animation-name: ease-outL;
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-delay: 7s;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	-webkit-animation-fill-mode: forwards;
	/* Mozilla */	
	-moz-animation-name: ease-outL;
	-moz-animation-duration: 3s;
	-moz-animation-timing-function: ease-out;
	-moz-animation-delay: 7s;
	-moz-animation-iteration-count: 1;
	-moz-animation-direction: alternate;
	-moz-animation-play-state: running;
	-moz-animation-fill-mode: forwards;
	/* Standard syntax */
	animation-name: ease-outL;
	animation-duration: 3s;
	animation-timing-function:ease-out;
	animation-delay: 7s;
	animation-iteration-count:1;
	animation-direction: alternate;
	animation-play-state: running;
	animation-fill-mode: forwards;
}

/* 
Define the keyframe and changes
*/

/* Chrome, Safari */
@-webkit-keyframes ease-outL {
	0% {
		left: -250px;
		opacity: 0%;
		color:#be883f;
		}
	95%{
		left: -125px;
		opacity: 100%;
		color:#be883f;
	}
	100%{
		left: -125px;
		opacity: 100%;
		color:#eee;
	}
}

/* Firefox */
@-moz-keyframes ease-outL {
	0% {
		left: -250px;
		opacity: 0%;
		color:#be883f;
		}
	95%{
		left: -125px;
		opacity: 100%;
		color:#be883f;
	}
	100%{
		left: -125px;
		opacity: 100%;
		color:#eee;
	}
}

/* Standard syntax */
@keyframes ease-outL {
	0% {
		left: -250px;
		opacity: 0%;
		color:#be883f;
		}
	95%{
		left: -125px;
		opacity: 100%;
		color:#be883f;
	}
	100%{
		left: -125px;
		opacity: 100%;
		color:#eee;
	}
}



.easeinAnimObjR1 {
	position: relative;
	opacity: 0;
	color:#be883f;
	/* Chrome, Safari*/
	-webkit-animation-name: ease-outR;
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-delay: 3.5s;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	-webkit-animation-fill-mode: forwards;
	/* Mozilla */	
	-moz-animation-name: ease-outR;
	-moz-animation-duration: 3s;
	-moz-animation-timing-function: ease-out;
	-moz-animation-delay: 3.5s;
	-moz-animation-iteration-count: 1;
	-moz-animation-direction: alternate;
	-moz-animation-play-state: running;
	-moz-animation-fill-mode: forwards;
	/* Standard syntax */
	animation-name: ease-outR;
	animation-duration: 3s;
	animation-timing-function:ease-out;
	animation-delay: 3.5s;
	animation-iteration-count:1;
	animation-direction: alternate;
	animation-play-state: running;
	animation-fill-mode: forwards;
}



/* Chrome, Safari */
@-webkit-keyframes ease-outR {
	0% {
		left: 250px;
		opacity: 0%;
		color:#be883f;
		}
	95%{
		left: 125px;
		opacity: 100%;
		color:#be883f;
	}
	100%{
		left: 125px;
		opacity: 100%;
		color:#eee;
	}
}

/* Firefox */
@-moz-keyframes ease-outR {
	0% {
		left: 250px;
		opacity: 0%;
		color:#be883f;
		}
	95%{
		left: 125px;
		opacity: 100%;
		color:#be883f;
	}
	100%{
		left: 125px;
		opacity: 100%;
		color:#eee;
	}
}

/* Standard syntax */
@keyframes ease-outR {
	0% {
		left: 250px;
		opacity: 0%;
		color:#be883f;
		}
	95%{
		left: 125px;
		opacity: 100%;
		color:#be883f;
	}
	100%{
		left: 125px;
		opacity: 100%;
		color:#eee;
	}
}

