
body { background:#dedfe4 !important;}
.intro-logo {
    width: 531px;
    display: block;
    height: 144px;
    margin: 10% auto 0 auto;
}
#loading {
    position: relative;
    z-index: -30;
    pointer-events: none;
    opacity: 0.5;
}

.loading-msg {
  color: #acb1bb;
  text-shadow: 0px 1px 1px #fff;
  text-align: center;
  margin-top: 10px;
}
.bspinner,
.bspinner-small {
  margin: 30px auto 0;
  width: 100px;
  text-align: center;
}
.bspinner > *,
.bspinner-small > * {
  width: 12px;
  height: 12px;
  margin-right: 12px;
  background-color: #bfc3cc;
  border-radius: 100%;
  display: inline-block;
  box-shadow: 0px 1px 1px #fff;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  -moz-animation: bouncedelay 1.4s infinite ease-in-out;
  -o-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.bspinner .bounce1,
.bspinner-small .bounce1 {
  -webkit-animation-delay: -0.32s;
  -moz-animation-delay: -0.32s;
  -o-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.bspinner .bounce2,
.bspinner-small .bounce2 {
  -webkit-animation-delay: -0.16s;
  -moz-animation-delay: -0.16s;
  -o-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.bspinner-small {
  float: right !important;
  width: 40px;
  margin: 7px auto 0;
  text-align: right;
}
.bspinner-small > * {
  width: 5px;
  height: 5px;
  margin-right: 5px;
}
a :visited {
  color: #F00;

}

.nav a:focus {
  border-bottom: 3px solid #6393dd;
  height: 17px;
}

@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}