#chart-button {
	border-bottom: medium none;
	box-shadow: none;
	text-decoration: none;
	outline: none;
}

@-webkit-keyframes fadeEffext {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes fadeEffext {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@-webkit-keyframes animatetop {
	from {
		transform: scale(.7);
		opacity: .2;
	}
	
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes animatetop {
	from {
		transform: scale(.7);
		opacity: .2;
	}
	
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes animateend {
	from {
		transform: scale(1);
		opacity: 1;
	}
	
	to {
		transform: scale(.7);
		opacity: 0;
	}
}

@keyframes animateend {
	from {
		transform: scale(1);
		opacity: 1;
	}
	
	to {
		transform: scale(.7);
		opacity: 0;
	}
}

@keyframes cssAnimation {
	100% {
		visibility: hidden;
	}
}

@-webkit-keyframes cssAnimation {
	100% {
		visibility: hidden;
	}
}