* {
  box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0; }

body {
  -webkit-font-smoothing: antialiased;
  background-color: white;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.25; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Roboto Slab", serif;
  line-height: 1.2;
  text-align: center; }

h1 {
  font-size: 50px; }

h2 {
  font-size: 32px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 34px; }

h5 {
  font-size: 22px; }

h6 {
  font-size: 16px; }

p {
  margin: 0 0 10px; }

a {
  color: #b1d035;
  text-decoration: none;
  transition: color, .1s; }
  a:hover {
    color: shade(#b1d035, 15%); }
  a:active, a:focus {
    color: shade(#b1d035, 15%);
    outline: none; }

hr {
  margin: 20px 0;
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0; }

img,
picture {
  max-width: 100%;
  margin: 0; }

blockquote {
  margin: 20px 0;
  padding-left: 10px;
  border-left: 2px solid #ddd;
  color: white; }

cite {
  color: white;
  font-style: italic; }
  cite:before {
    content: "\2014 \00A0"; }

input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b1d035;
  border: 0;
  border-radius: 3px;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  cursor: pointer; }
  input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
    background-color: shade(#b1d035, 15%);
    color: white; }
  input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: .5; }

fieldset {
  margin: 0 0 10px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #ddd; }

input,
label,
select {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px; }

label {
  margin-bottom: 5px;
  font-weight: bold; }
  label.required:after {
    content: "*"; }
  label abbr {
    display: none; }

textarea,
input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"],
select[multiple=multiple] {
  width: 100%;
  margin-bottom: 10px;
  padding: 6.66667px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color, .3s; }
  textarea:hover,
  input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover,
  select[multiple=multiple]:hover {
    border-color: shade(#ddd, 10%); }
  textarea:focus,
  input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus,
  select[multiple=multiple]:focus {
    border-color: #b1d035;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 5px rgba(177, 208, 53, 0.5);
    outline: none; }

textarea {
  resize: vertical; }

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 5px; }

input[type="file"] {
  width: 100%;
  padding-bottom: 10px; }

select {
  width: auto;
  max-width: 100%;
  margin-bottom: 20px; }

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none; }
dl {
  margin-bottom: 10px; }
  dl dt {
    margin-top: 10px;
    font-weight: bold; }
  dl dd {
    margin: 0; }

table {
  width: 100%;
  margin: 10px 0;
  border-collapse: collapse;
  table-layout: fixed; }

th {
  padding: 10px 0;
  border-bottom: 1px solid #bcbcbc;
  font-weight: bold;
  text-align: left; }

td {
  padding: 10px 0;
  border-bottom: 1px solid #ddd; }

tr,
td,
th {
  vertical-align: middle; }

section {
  overflow: auto; }

.contain {
  max-width: 900px;
  width: 100%;
  margin: 0 auto; }

.half {
  width: 45%;
  float: left; }
  .half:first-of-type {
    margin-right: 10%; }

.twoThirds {
  width: 50%;
  float: left; }

.oneThird {
  width: 40%;
  float: left; }

.darkHeader, .history h2, .tech h2 {
  background-color: #3e3d40;
  font-weight: 100;
  padding: 15px; }
  @media screen and (max-width: 767px) {
    .darkHeader, .history h2, .tech h2 {
      font-size: 20px; }
      .darkHeader .dots, .history h2 .dots, .tech h2 .dots {
        display: none; } }

.extraText {
  display: none; }

.dots {
  position: relative;
  top: -7px;
  margin: 0 7px; }

.dotsRight {
  transform: rotate(180deg); }

a {
  cursor: pointer; }

.video {
  width: 100%; }

.videoWrapper {
  position: relative;
  padding-top: 25px;
  padding-bottom: 56.25%;
  height: 0; }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

table tr td:first-child {
  padding-right: 35px; }

header {
  background: url("../img/header-bkgd.jpg") 0 0 no-repeat;
  background-size: cover;
  padding: 200px 0 175px 0;
  text-align: center;
  text-shadow: 1px 1px 3px #000; }
  header h1 {
    margin-bottom: 15px; }
  header h3 {
    margin-bottom: 35px; }
  header p {
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto; }
  header em {
    background: rgba(63, 90, 47, 0.75);
    padding: 2px; }

nav {
  position: fixed;
  background: #3e3e40;
  padding: 20px 0;
  font-family: "Roboto Slab", serif;
  box-shadow: 0px 5px 5px #000;
  display: block;
  width: 100%;
  text-align: center;
  z-index: 100; }
  nav a {
    margin: 0 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap; }
    nav a.active {
      border-bottom: 3px solid #b1d035; }
    @media screen and (max-width: 767px) {
      nav a {
        margin-bottom: 10px;
        line-height: 1.75;
        font-size: 12px; } }

.intro__next {
  border-radius: 50%;
  display: block;
  width: 45px;
  height: 40px;
  border: 2px solid #fff;
  position: relative;
  margin: 0 auto;
  top: 195px;
  padding: 3px 0 0 3px; }
  .intro__next i {
    background: #fff;
    border-radius: 50%;
    display: block;
    font-size: 35px;
    text-shadow: none;
    text-align: center;
    width: 35px;
    height: 35px; }

.button, .contact a, .comments h2 a {
  padding: 5px 20px;
  color: #fff; }

.intro {
  color: #3e3e40;
  padding: 75px 0; }
  .intro h2 {
    margin-bottom: 35px;
    font-weight: 100; }
  @media screen and (max-width: 767px) {
    .intro .half {
      width: 90%;
      margin: 0 auto 15px auto;
      float: none; } }

.history {
  background-color: #7396ac; }

.blueDecade:before, .decade.fourty:before, .decade.sixty:before {
  content: "";
  width: 100%;
  min-height: 52px;
  max-height: 52px;
  margin-top: -52px;
  margin-bottom: -21px;
  background: url("../img/timeline/upArrow.png") top center no-repeat;
  display: block;
  background-size: cover; }
  @media screen and (max-width: 767px) {
    .blueDecade:before, .decade.fourty:before, .decade.sixty:before {
      margin-bottom: -34px; } }

.photoDecade, .decade.thirty, .decade.fifty, .decade.seventy {
  background-color: #414041;
  background-size: cover; }
  .photoDecade:before, .decade.thirty:before, .decade.fifty:before, .decade.seventy:before {
    content: "";
    width: 100%;
    max-height: 31px;
    min-height: 31px;
    margin-bottom: -31px;
    display: block;
    background: url("../img/timeline/downArrow.png") bottom center no-repeat;
    background-size: cover; }
  .photoDecade .contain, .decade.thirty .contain, .decade.fifty .contain, .decade.seventy .contain {
    padding: 50px 0; }

.decade.thirty {
  background: url("../img/timeline/timeline_background_1.jpg") center center no-repeat;
  background-size: cover; }
  .decade.thirty:before {
    display: none; }
.decade.fifty {
  background: url("../img/timeline/timeline_background_2.jpg") center center no-repeat;
  background-size: cover; }
.decade.seventy {
  background: url("../img/timeline/timeline_background_3.jpg") center center no-repeat;
  background-size: cover; }
.decade .contain {
  background: url("../img/timeline/bkgdLine.png") top center repeat-y;
  overflow: auto;
  padding: 15px 0; }
  @media screen and (max-width: 767px) {
    .decade .contain {
      background-position: 25px 0; } }

.date {
  width: 50%;
  clear: both;
  margin: 10px 0;
  position: relative; }
  @media screen and (max-width: 767px) {
    .date {
      width: 100%;
      margin: 25px 0; } }
  .date::before {
    content: "";
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d3d3d3;
    top: 5px; }
  .date.left {
    float: left;
    text-align: right;
    padding: 0 24px 0 0; }
    @media screen and (max-width: 767px) {
      .date.left {
        float: right;
        text-align: left;
        padding: 0 0 0 50px; } }
    .date.left::before {
      right: -14px; }
      @media screen and (max-width: 767px) {
        .date.left::before {
          left: 15px; } }
    .date.left img {
      float: left;
      margin-right: 20px;
      margin-bottom: 2px; }
      @media screen and (max-width: 767px) {
        .date.left img {
          float: right;
          margin-left: 20px; } }
  .date.right {
    float: right;
    padding: 0 0 0 24px; }
    @media screen and (max-width: 767px) {
      .date.right {
        padding: 0 0 0 50px; } }
    .date.right::before {
      left: -14px; }
      @media screen and (max-width: 767px) {
        .date.right::before {
          left: 15px; } }
    .date.right img {
      float: right;
      margin-left: 20px;
      margin-bottom: 2px; }
      @media screen and (max-width: 767px) {
        .date.right img {
          margin-right: 20px; } }
  .date strong {
    font-size: 28px;
    display: block;
    font-family: "Roboto Slab", serif; }

.sponsors {
  padding: 75px 0; }
  .sponsors .half {
    text-align: center; }
    @media screen and (max-width: 767px) {
      .sponsors .half {
        margin: 0;
        margin-bottom: 65px;
        width: 100%; } }
  .sponsors a {
    color: #3e3e40; }
    .sponsors a.aaas img {
      margin-bottom: 25px; }

.contact {
  padding: 75px 0;
  background: #6097ae;
  text-align: center; }
  .contact h2 {
    font-family: "Open Sans", sans-serif;
    margin-bottom: 35px;
    font-weight: 100; }
  .contact a {
    margin-right: 10px; }
    .contact a:last-of-type {
      margin-right: none; }
    .contact a i {
      margin-right: 5px; }
    @media screen and (max-width: 767px) {
      .contact a {
        margin-right: 0;
        padding-top: 15px; }
        .contact a i {
          font-size: 25px;
          margin: 0; }
        .contact a span {
          display: none; } }

.contact__facebook {
  background-color: #005c9e; }

.contact__twitter {
  background-color: #00abe2; }

.contact__google {
  background-color: #ea3635; }

.comments {
  background: #3e3e40;
  padding: 75px 0 25px 0;
  text-align: center; }
  .comments h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    font-size: 24px;
    margin-bottom: 15px; }
    .comments h2 a {
      background: #a5cf2e;
      font-weight: 700;
      font-size: 15px;
      padding: 7px 25px; }
      @media screen and (max-width: 767px) {
        .comments h2 a {
          display: block;
          width: 90%;
          margin: 15px auto 0 auto; } }

.copy {
  text-align: center;
  font-size: 12px;
  margin-top: 15px; }

.tech {
  background-color: #7396AC; }

.contactModal h1 {
  color: #fff;
  background: red; }
.contactModal .button.yellow, .contactModal .contact a.yellow, .contact .contactModal a.yellow, .contactModal .comments h2 a.yellow, .comments h2 .contactModal a.yellow {
  background: #a5cf2e;
  cursor: pointer;
  float: right; }

.explainerText {
  text-align: left; }

.tech {
  padding-bottom: 50px; }
  @media screen and (max-width: 767px) {
    .tech {
      min-height: auto; } }
  .tech .contain {
    position: relative; }
  .tech .intro {
    font-size: 22px;
    color: #fff;
    padding: 25px 0; }
    @media screen and (max-width: 767px) {
      .tech .intro {
        width: 90%;
        margin: 0 auto; } }
  .tech .accordionMobileHeader {
    display: none;
    text-align: center;
    margin-top: 35px;
    font-size: 23px; }
    @media screen and (max-width: 767px) {
      .tech .accordionMobileHeader {
        display: block; } }
  .tech .button, .tech .contact a, .contact .tech a, .tech .comments h2 a, .comments h2 .tech a {
    background: #a5cf2e;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 25px;
    width: 90%;
    display: none;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase; }
    @media screen and (max-width: 767px) {
      .tech .button, .tech .contact a, .contact .tech a, .tech .comments h2 a, .comments h2 .tech a {
        display: block; } }
  .tech .semLazer {
    background: url("../img/animation/animation_bkgd.png") right top no-repeat; }
  .tech .legend li {
    margin-bottom: 15px; }
    .tech .legend li .em {
      float: left;
      border-radius: 50%;
      background: #b1d035;
      display: block;
      text-align: center;
      font-weight: bold;
      padding-top: 2px;
      width: 25px;
      height: 25px;
      margin-right: 15px; }
    .tech .legend li h3 {
      font-family: "Open Sans", sans-serif;
      font-size: 22px;
      text-align: left;
      margin-bottom: 5px;
      text-shadow: 0px 0px 2px #68798c; }
    .tech .legend li a {
      cursor: pointer; }
    .tech .legend li p {
      margin-left: 41px; }
  .tech .accordionWrap {
    margin-top: 120px; }
    @media screen and (max-width: 767px) {
      .tech .accordionWrap {
        width: 90%;
        margin: 0 auto; } }
    .tech .accordionWrap h3 {
      font-size: 18px;
      margin-top: 5px;
      cursor: pointer;
      text-align: left;
      font-family: "Open Sans", sans-serif; }
      .tech .accordionWrap h3 i {
        float: right;
        color: #b1d035;
        font-weight: bold;
        margin-top: 3px; }
  .tech .accordionWrap__item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    padding: 5px 15px;
    margin-top: 5px; }
    .tech .accordionWrap__item img {
      float: left;
      margin: 5px 10px 5px 5px; }
  .tech .twoThirds {
    position: absolute;
    z-index: 10; }
    @media screen and (max-width: 767px) {
      .tech .twoThirds {
        width: 100%;
        position: static; } }
    @media screen and (max-width: 767px) {
      .tech .twoThirds ul {
        display: none; } }
  .tech .animationWrap {
    float: left;
    height: 1700px;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .tech .animationWrap {
        display: none; } }
    .tech .animationWrap .downArrow {
      position: absolute;
      width: 160px;
      height: 560px;
      right: 157px;
      top: 931px;
      display: none;
      background: url("../img/animation/downArrow.png") top center no-repeat; }
    .tech .animationWrap .replayAnimation {
      position: absolute;
      top: 1505px;
      right: 28px;
      width: 250px; }
    .tech .animationWrap img {
      position: relative;
      display: none; }
      .tech .animationWrap img.number-dots {
        float: right;
        top: -1207px;
        right: 50px;
        display: block; }
      .tech .animationWrap img.small_callout {
        position: absolute;
        bottom: -750px;
        right: 150px; }
      .tech .animationWrap img.lines {
        position: absolute;
        bottom: -1027px;
        right: -42px;
        transform: rotate(14deg); }
      .tech .animationWrap img.big_callout {
        position: absolute;
        bottom: -1250px;
        right: -90px; }
      .tech .animationWrap img.arrowOne {
        transform: rotate(-7deg);
        left: 580px;
        top: -300px; }
      .tech .animationWrap img.arrowTwo {
        transform: rotate(-53deg);
        top: -110px;
        left: 510px; }
      .tech .animationWrap img.arrowThree {
        transform: rotate(-23deg);
        left: 390px; }
      .tech .animationWrap img.arrowFour {
        transform: rotate(-5deg);
        top: 60px;
        left: 293px; }
      .tech .animationWrap img.arrowFive {
        transform: rotate(-43deg);
        top: 200px;
        left: 137px; }

/*# sourceMappingURL=style.css.map */
