﻿@-webkit-keyframes _Animate-Blink{
	0%{
		opacity:.2;
	}
	20%{
		opacity:1;
	}
	100%{
		opacity:.2;
	}
}
@-moz-keyframes _Animate-Blink{
	0%{
		opacity:.2;
	}
	20%{
		opacity:1;
	}
	100%{
		opacity:.2;
	}
}
@-o-keyframes _Animate-Blink{
	0%{
		opacity:.2;
	}
	20%{
		opacity:1;
	}
	100%{
		opacity:.2;
	}
}
@keyframes _Animate-Blink{
	0%{
		opacity:.2;
	}
	20%{
		opacity:1;
	}
	100%{
		opacity:.2;
	}
}
@keyframes _Animate-LS-BKG{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes _Animate-LS-TextColor{
	0% {
		color:#c65400;
	}
	25% {
		color:#0077d0;
	}
	50% {
		color:#666;
	}
	75% {
		color:#617d00;
	}
	100%{
		color:#c65400;
	}
}
@keyframes _Rotation{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(359deg);
    }
}