@import url('animations/animista.css');

@-webkit-keyframes none-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes none-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes none-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes none-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#presenter_content.visible {
	display: block;
	-webkit-animation: none-in 0.1s ease-in-out both;
	        animation: none-in 0.1s ease-in-out both;
}

#presenter_content.hide {
	display: block;
	-webkit-animation: none-out 0.1s ease-in-out both;
	        animation: none-out 0.1s ease-in-out both;
}
