/*
* Custom Styles
*/

    .splash {
        background-color: rgb(47,99,135);
        background-color: rgba(47,99,135,.9);
    }

     .splash-center {
            text-align: center;
            width: 40%;
            /*background: #fff;*/
            margin: 10% auto 0;
			/*height:300px;*/
     }



@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
          animation-name: flash;
		   -webkit-animation-duration: 3s;
          animation-duration: 3s;
		  z-index:1;
		  position:absolute;
}


@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
		  z-index:3;
		  position:absolute;
		  -webkit-animation-delay: 2s; /* Chrome, Safari, Opera */
          animation-delay: 2s;
}
.unilogo{
		  text-align:right;
		  z-index:0;
		  position:absolute;
		  
}
.powder{
		  text-align:right;
		  z-index:2;
		  position:absolute;
}
.skipbtn{
	z-index:6;
	position:absolute;
	margin-left:32%;
	padding-top:200px;
}