.button-anim {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 20px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #33CAFF; -webkit-box-shadow: 0 0 3px #33CAFF; }
  50% { background-color: #B5EAFC; -webkit-box-shadow: 0 0 40px #B5EAFC; }
  100% { background-color: #33CAFF; -webkit-box-shadow: 0 0 3px #33CAFF; }
}

@-moz-keyframes glowing {
  0% { background-color: #33CAFF; -moz-box-shadow: 0 0 3px #33CAFF; }
  50% { background-color: #B5EAFC; -moz-box-shadow: 0 0 40px #B5EAFC; }
  100% { background-color: #33CAFF; -moz-box-shadow: 0 0 3px #33CAFF; }
}

@-o-keyframes glowing {
  0% { background-color: #33CAFF; box-shadow: 0 0 3px #33CAFF; }
  50% { background-color: #B5EAFC; box-shadow: 0 0 40px #B5EAFC; }
  100% { background-color: #33CAFF; box-shadow: 0 0 3px #33CAFF; }
}

@keyframes glowing {
  0% { background-color: #33CAFF; box-shadow: 0 0 3px #33CAFF; }
  50% { background-color: #B5EAFC; box-shadow: 0 0 40px #B5EAFC; }
  100% { background-color: #33CAFF; box-shadow: 0 0 3px #33CAFF; }
}

.align-left{
  text-align: left !important;
}

.light-grey{
    color: #8a8a8a !important;
}

.search-banner {
   background-color: #39AE95;
   color: #ffffff;
   padding: 15px 25px;
}

Banner objects (style specific objects within the banner)

.search-banner a {
   font-weight: bold;
}

.search-banner a:hover {
   text-decoration: underline;
}

.search-banner p {
   font-size: 12px;
}

.search-banner h2 {
   font-size: 20px;
   color: #824fd2;
   border-bottom: 1px solid #ffffff;
}

.search-banner img {
   max-width: 100%;
}