@charset "UTF-8";
/* CSS Animation Document */

.showHide {
	animation-name: showHide;
	animation-duration: 4s;
	animation-delay:0s;
	animation-timing-function:ease-in-out;
	animation-iteration-count:infinite;
	
	-webkit-animation-name: showHide;
	-webkit-animation-duration: 4s;
	-webkit-animation-delay:0s;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-iteration-count:infinite;
}
@-webkit-keyframes showHide {
	0%   {opacity: 1;}
	25%  {opacity: 1;}
    50%  {opacity: 0;}
	75%  {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes showHide {
 0%   {opacity: 1;}
	25%  {opacity: 1;}
    50%  {opacity: 0;}
	75%  {opacity: 0;}
    100% {opacity: 1;}
}


/* Bounce */
.bounce {
	animation-name: bounce;
	animation-duration: 2s;
	animation-delay:1s;
	animation-timing-function:ease-in-out;
	animation-iteration-count:infinite;
	
	-webkit-animation-name: bounce;
	-webkit-animation-duration: 2s;
	-webkit-animation-delay:1s;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-iteration-count:infinite;
}
@-webkit-keyframes bounce {
	0%   {bottom: 140px;}
	25%  {bottom: 140px;}
    50%  {bottom: 135px;}
	75%  {bottom: 140px;}
    100% {bottom: 140px;}
}
@keyframes bounce {
	0%   {bottom: 140px;}
	25%  {bottom: 140px;}
    50%  {bottom: 135px;}
	75%  {bottom: 140px;}
    100% {bottom: 140px;}
}