	body {
		background-color: #94e0d4;
	}
	
	@keyframes shake-y {
	    0%   {top:0px;}
	    25%  {top:-10px;}
	    75%  {top:10px;}
	    100% {top:0px;}
	}

	@keyframes shake-x {
	    0%   {left:0px;}
	    25%  {left:-10px;}
	    75%  {left:10px;}
	    100% {left:0px;}
	}

	.presente, .diferente {
		animation-name: shake-y;
	}

	.no-presente {
		animation-name: shake-x;
	}
	.indicador {
		animation-duration: 0.5s;
		position: relative;
	}

	.filter {
		display:none;
		margin-bottom: 2px;
	}

	/* Estilo de bootstrap para e tooltip */
	div.tooltip-inner {
    	max-width: 900px ;
	}
