@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}

/* slideInCustom */
.slideInCustom{
	-webkit-animation-name:slideInCustom;
	animation-name:slideInCustom
	}
@-webkit-keyframes slideInCustom{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0,100px,0);
		transform:translate3d(0,100px,0)
	}
	to{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes slideInCustom{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0,100px,0);
		transform:translate3d(0,100px,0)
	}
	to{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
