﻿/* Fonts */
/* Colors */
/*Screen Sizes break points*/
@keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
body .mainContent .pageHead .title {
  color: #444;
}
body h1:not(.title) {
  font-family: "Gotham", "Arial", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #444;
}
body .loading-dots:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;
  animation: ellipsis steps(4, end) 900ms infinite;
  content: "\2026";
  /* ascii code for the ellipsis character */
  width: 0;
}
body #formSiteSearch {
  display: inline;
}
body #formSiteSearch .siteSearch .form-group {
  margin-bottom: 0;
}
.text-nowrap {
  white-space: nowrap;
}