.box-word {
	font-size: 1.15em;
	margin-top: 15px;
	color: #E10012;
}
.box-word-content {
	font-size: 1em;
	margin-top: 0px;
	color: #CCC;
}
.effect-background {
	position: absolute;
	width: 80%;
	height: 100%;
  z-index: -1;
	background-color: red;
}
.effect-img {
	position: absolute;
	z-index: 1000;
}
@keyframes fadeInOut
{
0% {
    opacity: 0; 
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1; 
  }
  75% {
    opacity: 0.5; 
  }
  100% {
    opacity: 0; 
  }
}

@-moz-keyframes fadeInOut /* Firefox */
{
0% {
    opacity: 0; 
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1; 
  }
  75% {
    opacity: 0.5; 
  }
  100% {
    opacity: 0; 
  }
}

@-webkit-keyframes fadeInOut /* Safari and Chrome */
{
0% {
    opacity: 0; 
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1; 
  }
  75% {
    opacity: 0.5; 
  }
  100% {
    opacity: 0; 
  }
}

@-o-keyframes fadeInOut /* Opera */
{
	0% {
    opacity: 0; 
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1; 
  }
  75% {
    opacity: 0.5; 
  }
  100% {
    opacity: 0; 
  }
}

@keyframes fadeInOut1
{
	0% {
    opacity: 0; 
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.5; 
  }
  75% {
    opacity: 0.8; 
  }
  100% {
    opacity: 0.3; 
  }
}

@-moz-keyframes fadeInOut1 /* Firefox */
{
	0% {
    opacity: 0; 
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.5; 
  }
  75% {
    opacity: 0.8; 
  }
  100% {
    opacity: 0.3; 
  }
}

@-webkit-keyframes fadeInOut1 /* Safari and Chrome */
{
	0% {
    opacity: 0; 
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.5; 
  }
  75% {
    opacity: 0.8; 
  }
  100% {
    opacity: 0.3; 
  }
}

@-o-keyframes fadeInOut1 /* Opera */
{
	0% {
    opacity: 0; 
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.5; 
  }
  75% {
    opacity: 0.8; 
  }
  100% {
    opacity: 0.3; 
  }
}
.fadeInOut {
  
  animation-name: fadeInOut; 
  -webkit-animation: fadeInOut;
  animation-duration: 3s; 
  -webkit-animation-duration: 3s;
  animation-iteration-count: infinite; 
  -webkit-animation-iteration-count: infinite; 
  animation-delay: 0s; 
  -webkit-animation-delay: 0s;
}
.flash {
  
  animation-name: fadeInOut; 
  -webkit-animation: fadeInOut;
  animation-duration: 0.2s; 
  -webkit-animation-duration: 0.2s;
  animation-iteration-count: infinite; 
  -webkit-animation-iteration-count: infinite; 
  animation-delay: 0s;
  -webkit-animation-delay: 0s; 
}
.random {
 
  animation-name: fadeInOut1; 
  -webkit-animation: fadeInOut1;
  animation-duration: 1s; 
  -webkit-animation-duration: 1s;
  animation-iteration-count: infinite; 
  -webkit-animation-iteration-count: infinite; 
  animation-delay: 0s;
  -webkit-animation-delay: 0s; 
}