@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/


.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}


@keyframes animWidth1 {
  0% {
    opacity: 0;
	width: 0%;
	left: 20%;
  }
  

  100% {
    opacity: 1;
	width: 35vw;
	left: 0;
  }
}

.animWidth1 {
	-webkit-animation-name: animWidth1;
	animation-name: animWidth1;
	animation-delay: 0.5s;
	animation-duration: 2s;
	animation-fill-mode: both;
}



@keyframes animWidth2 {
  0% {
    opacity: 0;
	width: 0%;
	right: 20%;
  }
  

  100% {
    opacity: 1;
	width: 35vw;
	right: 0;
  }
}

.animWidth2 {
	-webkit-animation-name: animWidth2;
	animation-name: animWidth2;
	animation-delay: 0.5s;
	animation-duration: 2s;
	animation-fill-mode: both;
}





@keyframes animWidth3 {
  0% {
    opacity: 0;
	width: 0%;
	left: 20%;
  }
  
  100% {
    opacity: 1;
	width: 100%;
	left: 0;
  }
}

.animWidth3 {
	-webkit-animation-name: animWidth3;
	animation-name: animWidth3;
	animation-delay: 0s;
	animation-duration: 2s;
	animation-fill-mode: both;
}





@keyframes animWidth4 {
  0% {
    opacity: 0;
	width: 0%;
	right: 10%;
  }
  

  100% {
    opacity: 1;
	width: 100%;
	right: 0;
  }
}

.animWidth4 {
	-webkit-animation-name: animWidth4;
	animation-name: animWidth4;
	animation-delay: 0s;
	animation-duration: 2s;
	animation-fill-mode: both;
}




@keyframes animWidth5 {
  0% {
    opacity: 0;
	width: 0%;
	left: 20%;
  }
  

  100% {
    opacity: 1;
	width: 80%;
	left: 10%;
  }
}

.animWidth5 {
	-webkit-animation-name: animWidth5;
	animation-name: animWidth5;
	animation-delay: 0s;
	animation-duration: 2s;
	animation-fill-mode: both;
}




