html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

button, input[type=button], input[type=reset], input[type=submit],
.button,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  background-color: #007dae;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  line-height: 1;
  padding: 0.75em 1em;
  text-decoration: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover, button:focus, input[type=button]:hover, input[type=button]:focus, input[type=reset]:hover, input[type=reset]:focus, input[type=submit]:hover, input[type=submit]:focus,
.button:hover,
.button:focus,
button:hover,
button:focus {
  background-color: #004662;
  outline: inherit;
  outline-color: transparent;
  color: #fff;
}
button:disabled, input[type=button]:disabled, input[type=reset]:disabled, input[type=submit]:disabled,
.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

fieldset {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  margin: 0 0 0.75em;
  padding: 1.5em;
}

input,
label,
select {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
}

label {
  font-weight: 600;
  margin-bottom: 0.375em;
}
label.required::after {
  content: "*";
}
label abbr {
  display: none;
}

input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea,
select[multiple=multiple],
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color;
  width: 100%;
}
input[type=color]:hover, input[type=date]:hover, input[type=datetime]:hover, input[type=datetime-local]:hover, input[type=email]:hover, input[type=month]:hover, input[type=number]:hover, input[type=password]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=time]:hover, input[type=url]:hover, input[type=week]:hover, textarea:hover,
select[multiple=multiple]:hover,
textarea:hover {
  border-color: #c4c4c4;
}
input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, textarea:focus,
select[multiple=multiple]:focus,
textarea:focus {
  border-color: #c4c4c4;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 106, 149, 0.2);
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=checkbox],
input[type=radio] {
  display: inline;
  margin-right: 0.375em;
}

input[type=file] {
  padding-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto;
}

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

.entry-content ul, .single-col-content ul {
  padding: 25px 0 25px 40px;
  list-style: disc;
}
.entry-content ul li ul, .single-col-content ul li ul {
  list-style: circle;
}
.entry-content ol, .single-col-content ol {
  padding: 0 0 25px 40px;
  list-style: decimal;
}

table {
  -webkit-font-feature-settings: "kern", "liga", "tnum";
  -moz-font-feature-settings: "kern", "liga", "tnum";
  -ms-font-feature-settings: "kern", "liga", "tnum";
  font-feature-settings: "kern", "liga", "tnum";
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #b7b7b7;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left;
}

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

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

body {
  -webkit-font-feature-settings: "kern", "liga", "pnum";
  -moz-font-feature-settings: "kern", "liga", "pnum";
  -ms-font-feature-settings: "kern", "liga", "pnum";
  font-feature-settings: "kern", "liga", "pnum";
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.414em 0 0.5em;
  line-height: 1.2;
  font-weight: normal;
}

h1, .entry-title {
  font-size: 1.75em;
  font-weight: normal;
  margin-top: 0;
}
@media screen and (min-width: 48em) {
  h1, .entry-title {
    font-size: 2.5em;
  }
}

.section-title {
  font-weight: bold;
  font-size: 26px;
}

h2 {
  font-size: 1.25em;
}
@media screen and (min-width: 48em) {
  h2 {
    font-size: 1.75em;
  }
}

h3 {
  font-size: 1em;
}
@media screen and (min-width: 48em) {
  h3 {
    font-size: 1.25em;
  }
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.85em;
}

h6 {
  font-size: 0.75em;
}

p {
  margin-bottom: 1.3em;
}
p.leader {
  font-size: 18px;
  font-weight: 300;
}
@media screen and (min-width: 48em) {
  p.leader {
    font-size: 1.25em;
    line-height: 150%;
  }
}

a {
  color: #007dae;
  text-decoration: none;
  transition: color 0.1s linear;
}
a:active, a:focus, a:hover {
  color: #00A1E1;
}
a:active, a:focus {
  outline: none;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0;
  width: 100%;
}

span.amp {
  font-family: "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic !important;
  font-weight: normal !important;
}

pre {
  font-size: 14px;
  font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}

.text_white {
  color: #fff !important;
}

.text_black {
  color: #000 !important;
}

.text-gray {
  color: #666 !important;
}

.text-dark {
  color: #333 !important;
}

@media screen and (max-width: 30em) {
  .su-pullquote {
    width: 100% !important;
  }
}

.sidebar .widget_search .screen-reader-text,
.error-404 .screen-reader-text {
  display: none;
}

.sidebar .widget_search .search-field,
.error-404 .search-field {
  width: 75%;
  float: left;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.sidebar .widget_search .search-submit,
.error-404 .search-submit {
  width: 25%;
  height: 35px;
  line-height: 35px;
  padding: 0 1em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fw-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.rounded {
  border-radius: 50%;
}

.bordered {
  border: 4px solid #fff;
}

.shadowed {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
}

.subheading {
  border-bottom: 1px solid #eee;
  margin: 1.25em 0 1.25em 0;
}
.subheading h2 {
  margin: 0;
  color: #00A1E1;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 48em) {
  .subheading h2 {
    font-size: 2.625em;
  }
}
.subheading h3 {
  margin-top: 0;
  color: #007dae;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 48em) {
  .subheading h3 {
    font-size: 2em;
  }
}

.single-col-content {
  margin-bottom: 3.125em;
}

/*!
 * Margin Offsets
 */
.mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mh0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 48em) {
  .mv10 {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }

  .mh10 {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }

  .m10 {
    margin: 0.625em !important;
  }

  .mt10 {
    margin-top: 0.625em !important;
  }

  .mb10 {
    margin-bottom: 0.625em !important;
  }

  .mv20 {
    margin-top: 1.25em !important;
    margin-bottom: 1.25em !important;
  }

  .mh20 {
    margin-left: 1.25em !important;
    margin-right: 1.25em !important;
  }

  .m20 {
    margin: 1.25em !important;
  }

  .mt20 {
    margin-top: 1.25em !important;
  }

  .mb20 {
    margin-bottom: 1.25em !important;
  }

  .mv30 {
    margin-top: 1.875em !important;
    margin-bottom: 1.875em !important;
  }

  .mh30 {
    margin-left: 1.875em !important;
    margin-right: 1.875em !important;
  }

  .m30 {
    margin: 1.875em !important;
  }

  .mt30 {
    margin-top: 1.875em !important;
  }

  .mb30 {
    margin-bottom: 1.875em !important;
  }

  .mv40 {
    margin-top: 2.5em !important;
    margin-bottom: 2.5em !important;
  }

  .mh40 {
    margin-left: 2.5em !important;
    margin-right: 2.5em !important;
  }

  .m40 {
    margin: 2.5em !important;
  }

  .mt40 {
    margin-top: 2.5em !important;
  }

  .mb40 {
    margin-bottom: 2.5em !important;
  }

  .mv50 {
    margin-top: 3.125em !important;
    margin-bottom: 3.125em !important;
  }

  .mh50 {
    margin-left: 3.125em !important;
    margin-right: 3.125em !important;
  }

  .m50 {
    margin: 3.125em !important;
  }

  .mt50 {
    margin-top: 3.125em !important;
  }

  .mb50 {
    margin-bottom: 3.125em !important;
  }

  .mv60 {
    margin-top: 3.75em !important;
    margin-bottom: 3.75em !important;
  }

  .mh60 {
    margin-left: 3.75em !important;
    margin-right: 3.75em !important;
  }

  .m60 {
    margin: 3.75em !important;
  }

  .mt60 {
    margin-top: 3.75em !important;
  }

  .mb60 {
    margin-bottom: 3.75em !important;
  }

  .mv70 {
    margin-top: 4.375em !important;
    margin-bottom: 4.375em !important;
  }

  .mh70 {
    margin-left: 4.375em !important;
    margin-right: 4.375em !important;
  }

  .m70 {
    margin: 4.375em !important;
  }

  .mt70 {
    margin-top: 4.375em !important;
  }

  .mb70 {
    margin-bottom: 4.375em !important;
  }

  .mv80 {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }

  .mh80 {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }

  .m80 {
    margin: 5em !important;
  }

  .mt80 {
    margin-top: 5em !important;
  }

  .mb80 {
    margin-bottom: 5em !important;
  }

  .mv90 {
    margin-top: 5.625em !important;
    margin-bottom: 5.625em !important;
  }

  .mh90 {
    margin-left: 5.625em !important;
    margin-right: 5.625em !important;
  }

  .m90 {
    margin: 5.625em !important;
  }

  .mt90 {
    margin-top: 5.625em !important;
  }

  .mb90 {
    margin-bottom: 5.625em !important;
  }
}
/*!
 * Padding Offsets
 */
.pv0 {
  padding-top: 0em !important;
  padding-bottom: 0em !important;
}

.ph0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 48em) {
  .pv10 {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }

  .ph10 {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }

  .p10 {
    padding: 0.625em !important;
  }

  .pt10 {
    padding-top: 0.625em !important;
  }

  .pb10 {
    padding-bottom: 0.625em !important;
  }

  .pv20 {
    padding-top: 1.25em !important;
    padding-bottom: 1.25em !important;
  }

  .ph20 {
    padding-left: 1.25em !important;
    padding-right: 1.25em !important;
  }

  .p20 {
    padding: 1.25em !important;
  }

  .pt20 {
    padding-top: 1.25em !important;
  }

  .pb20 {
    padding-bottom: 1.25em !important;
  }

  .pv30 {
    padding-top: 1.875em !important;
    padding-bottom: 1.875em !important;
  }

  .ph30 {
    padding-left: 1.875em !important;
    padding-right: 1.875em !important;
  }

  .p30 {
    padding: 1.875em !important;
  }

  .pt30 {
    padding-top: 1.875em !important;
  }

  .pb30 {
    padding-bottom: 1.875em !important;
  }

  .pv40 {
    padding-top: 2.5em !important;
    padding-bottom: 2.5em !important;
  }

  .ph40 {
    padding-left: 2.5em !important;
    padding-right: 2.5em !important;
  }

  .p40 {
    padding: 2.5em !important;
  }

  .pt40 {
    padding-top: 2.5em !important;
  }

  .pb40 {
    padding-bottom: 2.5em !important;
  }

  .pv50 {
    padding-top: 3.125em !important;
    padding-bottom: 3.125em !important;
  }

  .ph50 {
    padding-left: 3.125em !important;
    padding-right: 3.125em !important;
  }

  .p50 {
    padding: 3.125em !important;
  }

  .pt50 {
    padding-top: 3.125em !important;
  }

  .pb50 {
    padding-bottom: 3.125em !important;
  }

  .pv60 {
    padding-top: 3.75em !important;
    padding-bottom: 3.75em !important;
  }

  .ph60 {
    padding-left: 3.75em !important;
    padding-right: 3.75em !important;
  }

  .p60 {
    padding: 3.75em !important;
  }

  .pt60 {
    padding-top: 3.75em !important;
  }

  .pb60 {
    padding-bottom: 3.75em !important;
  }

  .pv70 {
    padding-top: 4.375em !important;
    padding-bottom: 4.375em !important;
  }

  .ph70 {
    padding-left: 4.375em !important;
    padding-right: 4.375em !important;
  }

  .p70 {
    padding: 4.375em !important;
  }

  .pt70 {
    padding-top: 4.375em !important;
  }

  .pb70 {
    padding-bottom: 4.375em !important;
  }

  .pv80 {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }

  .ph80 {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }

  .p80 {
    padding: 5em !important;
  }

  .pt80 {
    padding-top: 5em !important;
  }

  .pb80 {
    padding-bottom: 5em !important;
  }

  .pv90 {
    padding-top: 5.625em !important;
    padding-bottom: 5.625em !important;
  }

  .ph90 {
    padding-left: 5.625em !important;
    padding-right: 5.625em !important;
  }

  .p90 {
    padding: 5.625em !important;
  }

  .pt90 {
    padding-top: 5.625em !important;
  }

  .pb90 {
    padding-bottom: 5.625em !important;
  }
}
/*!
 * Utility Alignments
 */
.text-center {
  text-align: center;
  display: block;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

.aligncenter {
  text-align: center;
  margin: 1.875em auto;
  display: block;
}

@media screen and (max-width: 30em) {
  .m-center {
    text-align: center;
  }
}

@media screen and (max-width: 30em) {
  .m-hide {
    display: none !important;
  }
}

.alignright {
  margin: 0.9375em auto;
  display: block;
}
@media screen and (min-width: 48em) {
  .alignright {
    float: right;
    display: inline-block;
    margin: 0.9375em 0.3125em 1.875em 1.875em;
  }
}

.alignleft {
  margin: 0.9375em auto;
  display: block;
}
@media screen and (min-width: 48em) {
  .alignleft {
    float: left;
    display: inline-block;
    margin: 0.9375em 1.875em 1.875em 0;
  }
}

@media screen and (min-width: 48em) {
  .squeeze {
    padding: 0 5% !important;
  }
}

@media screen and (min-width: 48em) {
  .squeeze-more {
    padding: 0 15% !important;
  }
}

.wp-embedded-content {
  width: 100%;
}

.wp-embedded-content, .wp-video {
  margin: 1.25em auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin: 1.25em auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

figure,
img,
picture {
  float: none;
  max-width: 100% !important;
  height: auto !important;
}

figure img {
  margin: 0 auto;
}

/* Quick Columns*/
@media screen and (min-width: 48em) {
  .row {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .one_half {
    width: 48%;
  }

  .one_third {
    width: 30.66%;
  }

  .two_thirds {
    width: 65.33%;
  }

  .one_fourth {
    width: 22%;
  }

  .three_fourths {
    width: 74%;
  }

  .one_fifth {
    width: 16.8%;
  }

  .two_fifth {
    width: 37.6%;
  }

  .three_fifth {
    width: 58.4%;
  }

  .four_fifth {
    width: 79.2%;
  }

  .one_sixth {
    width: 13.33%;
  }

  .five_sixth {
    width: 82.67%;
  }

  .one_half,
.one_third,
.two_thirds,
.three_fourths,
.one_fourth,
.one_fifth,
.two_fifth,
.three_fifth,
.four_fifth,
.one_sixth,
.five_sixth {
    position: relative;
    margin-right: 4%;
    float: left;
  }

  .last {
    margin-right: 0 !important;
  }
}
.clear::after {
  clear: both;
  content: "";
  display: table;
}

.wrap {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
}
.container::after {
  clear: both;
  content: "";
  display: table;
}
.container .pad {
  padding: 0 1.25em;
}
.container .pad.v {
  padding: 1.25em;
}

/* @group Video Header */
#regbar {
  line-height: 100%;
  padding: 0.25em 0;
  background: #00587b;
  color: #fff;
  text-align: center;
  z-index: 2;
  position: relative;
  width: 100% !important;
  text-transform: uppercase;
  height: 52px;
  border-bottom: 2px solid #004662;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#regbar span {
  display: block;
  letter-spacing: 0.09em;
  font-weight: bold;
  padding-bottom: 4px;
}
#regbar a {
  color: #fff;
  border: 1px solid #fff;
  padding: 2px 8px;
  font-size: 14px;
  display: inline-block;
}
#regbar a:hover {
  background: #fff;
  color: #007dae;
}
#regbar.fixto-fixed {
  height: auto;
}

.video_header {
  padding: 2.5em 0;
}
.video_header .inner {
  z-index: 1;
  color: #fff;
  padding: 0 1.25em;
  position: relative;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 70%;
}
@media screen and (min-width: 48em) {
  .video_header .inner {
    font-size: 100%;
  }
}
.video_header .inner .logo {
  background: url("../img/logo-white-full.png");
  background-size: 100%;
  margin: 0 auto 1.25em auto;
  display: block;
  width: 260px;
  height: 105px;
}
@media screen and (min-width: 48em) {
  .video_header .inner .logo {
    width: 482px;
    height: 195px;
  }
}
.video_header .inner .heading span {
  display: block;
  line-height: 110%;
  font-weight: 700;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.5);
}
.video_header .inner .heading span.annual {
  font-size: 2em;
  font-weight: 400;
}
.video_header .inner .heading span.title {
  font-size: 2.625em;
}
.video_header .inner .heading span.year {
  font-size: 2.5em;
  line-height: 100%;
  font-weight: 700;
}
.video_header .inner .heading span.date {
  font-size: 1.875em;
  font-weight: 700;
}
.video_header .inner .heading span.loc {
  display: inline-block;
  font-size: 1.5em;
}
.video_header .inner .heading span.loc span {
  display: inline-block;
  font-weight: 400;
}
.video_header.basic {
  padding: 0.625em 0;
}
@media screen and (min-width: 48em) {
  .video_header.basic {
    padding: 1.75em 0;
  }
}
.video_header.basic .inner.container a.navtoggle {
  top: 5px;
}
.video_header.basic #site-title {
  margin: 0;
  padding: 0;
}
.video_header.basic #site-title a {
  display: block;
  margin: 0;
  text-indent: -9999em;
  background: url("../img/logo-small.png");
  width: 262px;
  height: 105px;
  background-size: 100%;
}

.buttons {
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25em;
  text-align: center;
}
.buttons::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 48em) {
  .buttons {
    max-width: 71.25em;
    margin-left: auto;
    margin-right: auto;
  }
  .buttons::after {
    clear: both;
    content: "";
    display: table;
  }
}
.buttons .button {
  display: block;
  color: #007dae;
  text-transform: uppercase;
  background: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 0.75em 1.875em;
  margin: 0.625em 0.125em;
}
@media screen and (min-width: 48em) {
  .buttons .button {
    display: inline-block;
    margin: 0 0.125em;
    min-width: 10.625em;
  }
}
.buttons .button:hover {
  background: #007dae;
  text-shadow: 0px 1px 1px #004662, 0px -1px 1px #004662;
  box-shadow: 0px 0px 16px rgba(25, 32, 71, 0.5);
  color: #fff;
}

/* @end */
/* @group Countdown */
.title-bar {
  background: #007dae;
  color: #fff;
  padding: 0.625em 0;
  text-align: center;
}

#countdown {
  text-transform: uppercase;
}
#countdown div {
  display: inline-block;
  min-width: 3.4375em;
}
@media screen and (min-width: 48em) {
  #countdown div {
    min-width: 4.6875em;
  }
}
#countdown .time {
  display: block;
  font-size: 2.25em;
  line-height: 100%;
  font-weight: 700;
  text-shadow: 0px 1px 0px #003448;
}
#countdown .interval {
  display: block;
  line-height: 100%;
  font-weight: 400;
}

/* @end */
/* @group Home Page */
.welcome {
  text-align: center;
  font-weight: 700;
  line-height: 120%;
  font-size: 1.125em;
}
@media screen and (min-width: 48em) {
  .welcome {
    font-size: 1.625em;
    padding: 0 1.25em 0 1.25em;
  }
}

ul.nav-links {
  margin-bottom: 2.5em;
}
@media screen and (min-width: 48em) {
  ul.nav-links {
    text-align: center;
  }
}
ul.nav-links li {
  margin: 0 1.25em;
}
@media screen and (min-width: 48em) {
  ul.nav-links li {
    float: none;
    display: inline;
  }
}
ul.nav-links li a {
  background: #007dae;
  color: #fff;
  display: block;
  padding: 0.625em;
  margin-bottom: 0.125em;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: uppercase;
}
@media screen and (min-width: 48em) {
  ul.nav-links li a {
    display: inline-block;
    background: none;
    color: #007dae;
    padding: 0;
  }
}
ul.nav-links li a:hover {
  background: #00A1E1;
}
@media screen and (min-width: 48em) {
  ul.nav-links li a:hover {
    background: none;
    color: #00A1E1;
  }
}

.fs-tooltip {
  position: relative;
  opacity: 0;
}
.fs-tooltip.fs-tooltip-visible {
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.fs-tooltip .fs-tooltip-content {
  padding: 0.9375em;
  background: #fff;
  font-size: 0.875em;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.27);
}
.fs-tooltip .fs-tooltip-caret {
  display: block;
  position: absolute;
  bottom: -17px;
  width: 28px;
  height: 18px;
  background: url("../img/tooltip_corner.png") 0 50% no-repeat;
  background-size: 100%;
}
.fs-tooltip.fs-tooltip-bottom .fs-tooltip-caret {
  top: -17px;
  background: url("../img/tooltip_corner_bottom.png") 50% 0 no-repeat;
  background-size: 100%;
}

/* @end */
/* @group Speaker Slider */
.slide-container {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.625em;
  display: block;
}
.slide-container::after {
  clear: both;
  content: "";
  display: table;
}
.slide-container::after {
  clear: both;
  content: "";
  display: table;
}
.slide-container .slider {
  margin: 1.25em 0;
}
.slide-container .slider * {
  outline: none;
}

.slide {
  margin: 0 0.3125em;
  position: relative;
  z-index: 5;
}
.slide img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.slide .speaker {
  position: relative;
}
.slide .speaker-overlay {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  opacity: 0;
}
.slide .speaker-overlay .caption {
  display: none;
}
@media screen and (min-width: 48em) {
  .slide .speaker-overlay .caption {
    display: inline-block;
  }
}
.slide:hover .speaker-overlay, .slide:focus .speaker-overlay {
  opacity: 1;
  z-index: 5;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.slide:hover .speaker-overlay .inner, .slide:focus .speaker-overlay .inner {
  position: relative;
  top: 50%;
  padding: 0 1.25em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slide:hover img, .slide:focus img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.slide .title {
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  font-size: 11px;
}
@media screen and (min-width: 48em) {
  .slide .title {
    font-size: 1em;
  }
}
.slide .caption {
  font-size: 0.875em;
  display: block;
}
.slide a.bio {
  color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  margin-top: 0.625em;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.09em;
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.6875em;
  padding: 2px 6px;
}
@media screen and (min-width: 48em) {
  .slide a.bio {
    font-size: 0.8125em;
    padding: 4px 12px;
  }
}
.slide a.bio:hover {
  background: rgba(255, 255, 255, 0.75);
  color: #00A1E1;
}

.speaker.buttons {
  margin: 0 auto 1.875em auto;
}
@media screen and (min-width: 48em) {
  .speaker.buttons {
    margin: 0 0 3.75em 0;
  }
}
.speaker.buttons a.button {
  background: #007dae;
  border: 2px solid #007dae;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
}
.speaker.buttons a.button:hover {
  background: #fff;
  color: #007dae;
}

/* @end */
/* @group News Section */
.news-section {
  margin-bottom: 1.875em;
  padding: 0 1.25em;
}
.news-section h3.title {
  color: hsl(0deg, 0%, 60%);
  text-align: center;
  font-size: 1.25em;
  font-style: italic;
  border-bottom: 1px solid hsl(0deg, 0%, 90%);
  padding-bottom: 0.625em;
}
@media screen and (min-width: 48em) {
  .news-section h3.title {
    font-size: 2em;
  }
}
.news-section h4.post-title {
  font-size: 1.5em;
  min-height: 2.5em;
}
.news-section .post-date {
  color: hsl(0deg, 0%, 55%);
  font-size: 0.8125em;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.3125em;
}
.news-section .excerpt {
  font-size: 0.875em;
}

@media screen and (min-width: 48em) {
  .col3 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 31.914893617%;
  }
  .col3:last-child {
    margin-right: 0;
  }
}

.speakers {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.speakers::after {
  clear: both;
  content: "";
  display: table;
}
.speakers .slide {
  margin: 0.625em;
}
@media screen and (min-width: 48em) {
  .speakers .slide {
    float: left;
  }
}
.speakers .slide .speaker {
  position: relative;
}
.speakers .slide img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .speakers .slide img {
    width: 225px;
  }
}
@media screen and (min-width: 60em) {
  .speakers .slide img {
    width: 200px;
  }
}
@media screen and (min-width: 71.25em) {
  .speakers .slide img {
    width: 340px;
  }
}

/* @end */
/* @group Twitter Buzz */
.buzz {
  background: #ececec;
  padding: 1.25em 1.875em 1.875em 1.875em;
  margin: 0 1.25em 1.25em 1.25em;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 48em) {
  .buzz {
    margin-bottom: 6.875em;
    margin-top: 2.5em;
  }
}
.buzz h3 {
  color: hsl(0deg, 0%, 60%);
  font-size: 2em;
  font-style: italic;
  margin: 0;
}
.buzz h4 {
  color: #007dae;
  border-bottom: 1px solid hsl(0deg, 0%, 83%);
  margin: 0 0 1.25em 0;
  padding-bottom: 0.625em;
}
.buzz .callout {
  display: none;
}
@media screen and (min-width: 48em) {
  .buzz .callout {
    background: url("../img/twitter_callout.png");
    width: 5.8125em;
    height: 3.4375em;
    position: absolute;
    left: 50px;
    bottom: -55px;
    display: block;
  }
}
.buzz .tweet {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
}
.buzz .tweet::after {
  clear: both;
  content: "";
  display: table;
}
.buzz .tweet li {
  color: hsl(0deg, 0%, 43%);
  font-size: 0.9375em;
  margin-bottom: 1.25em;
}
@media screen and (min-width: 48em) {
  .buzz .tweet li {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 23.4042553191%;
    margin-bottom: 0;
  }
  .buzz .tweet li:last-child {
    margin-right: 0;
  }
}

/* @end */
/* @group Footer */
.site-footer {
  background: #00A1E1;
  color: #fff;
  padding: 1.25em;
}
.site-footer p {
  margin: 0;
}
.site-footer .copyright {
  text-align: center;
  font-size: 0.75em;
  color: #80d0f0;
}
.site-footer .copyright a {
  color: #80d0f0;
}
.site-footer .footermenu ul {
  text-align: center;
}
.site-footer .footermenu ul li {
  display: inline-block;
  padding: 0.625em;
}
.site-footer .footermenu ul li a {
  color: #fff;
}
.site-footer .footermenu ul li a:hover {
  border-bottom: 1px dotted #fff;
}

/* @end */
/* @group YouTube Gallery */
.video_gallery {
  padding: 2.5em;
  background: #007dae;
  color: #fff;
  text-align: center;
}
.video_gallery h3 {
  color: #fff;
  font-size: 2em;
  margin-top: 0;
}
.video_gallery .slider {
  display: none;
}
@media screen and (min-width: 48em) {
  .video_gallery .slider {
    display: block;
  }
}
.video_gallery .slick-prev:before,
.video_gallery .slick-next:before {
  color: #fff !important;
  opacity: 1 !important;
}
.video_gallery .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video_gallery .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video.buttons {
  margin: 0 auto;
}
.video.buttons a.button {
  background: #000;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
}
.video.buttons a.button:hover {
  background: #fff;
  color: #007dae;
}

/* @end */
/* @group Sponsors */
.sponsors-section {
  padding: 2.5em 1.25em;
  text-align: center;
}
.sponsors-section h3 {
  text-align: center;
}
@media screen and (min-width: 48em) {
  .sponsors-section .col2 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 48.9361702128%;
  }
  .sponsors-section .col2:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .sponsors-section .col3 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 31.914893617%;
  }
  .sponsors-section .col3:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .sponsors-section .col4 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 23.4042553191%;
  }
  .sponsors-section .col4:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .sponsors-section .col5 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 18.2978723404%;
  }
  .sponsors-section .col5:last-child {
    margin-right: 0;
  }
}

.brought-section {
  padding: 2.5em 1.25em;
  background: #f3f3f3;
}
.brought-section h3 {
  text-align: center;
}
@media screen and (min-width: 48em) {
  .brought-section .col2 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 48.9361702128%;
  }
  .brought-section .col2:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .brought-section .col3 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 31.914893617%;
  }
  .brought-section .col3:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .brought-section .col4 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 23.4042553191%;
  }
  .brought-section .col4:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .brought-section .col5 {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 18.2978723404%;
  }
  .brought-section .col5:last-child {
    margin-right: 0;
  }
}

/* @end */
/* @group Hotels */
.hotel {
  border-bottom: 2px solid #eee;
}

/* @end */
/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
  color: #007dae;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "\f053";
}
[dir=rtl] .slick-prev:before {
  content: "\f054";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\f054";
}
[dir=rtl] .slick-next:before {
  content: "\f053";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f111";
  width: 20px;
  height: 20px;
  font-family: "FontAwesome";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* @group Navigation */
.fs-navigation-element {
  outline: none;
}

.fs-navigation-overlay-content:before {
  background: rgba(0, 0, 0, 0.5) !important;
}

a.navtoggle {
  font-size: 2.25em;
  color: #fff;
  z-index: 2;
  position: absolute;
  right: 1.25em;
  top: 0.625em;
  text-align: center;
}
a.navtoggle span {
  position: relative;
  top: 8px;
  font-size: 12px;
  line-height: 100%;
  display: block;
}

#nav {
  z-index: 6;
  background: #00587b;
  box-shadow: -1px 0px 10px rgba(0, 0, 0, 0.5);
  padding: 0.625em;
}
.fs-navigation-lock #nav {
  visibility: visible !important;
}
.admin-bar #nav {
  padding-top: 2em;
}
#nav a {
  color: #fff;
}
#nav ul li {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25em 0;
}
#nav ul li ul {
  padding: 0.625em;
  background: #004662;
  margin: 0.375em 0 0 0;
  display: none;
}
@media screen and (min-width: 48em) {
  #nav ul li ul {
    display: block;
  }
}
#nav ul li ul li {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  border-bottom: 1px dotted #00212f;
  padding: 0.5em 0;
  line-height: 110%;
}
#nav ul li ul li ul {
  margin: 0;
}
#nav ul li ul li ul li {
  border: none;
}
#nav ul li:hover ul {
  display: block;
}
#nav .social {
  border-top: 1px solid #004662;
  border-bottom: 1px solid #004662;
  text-align: center;
  padding: 0.375em 0;
  margin-top: 0.375em;
}
#nav .social a {
  margin: 0 0.5em;
  font-size: 1.5em;
}

/* @end */
/* @group Agenda */
.event_time {
  position: relative;
}
.event_time h3 {
  position: relative;
  text-align: center;
  color: #00A1E1;
  font-family: Cambria, Georgia, serif;
  font-style: italic;
  font-size: 1.5em;
}
.event_time h3 span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
.event_time h3:before {
  background-image: -webkit-radial-gradient(50% 50%, circle, #fff 10%, #007dae 30%, #fff);
  background-image: radial-gradient(  circle at 50% 50%, #fff 10%, #007dae 30%, #fff);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
}
.event_time .event-anchor {
  position: absolute;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: none;
  z-index: 9;
}
.event_time:hover .event-anchor {
  display: block;
}

.event_detail {
  margin: 2.5em 0;
}

.event_title h2, .event_title h3 {
  margin: 0;
}
.event_title h2 {
  color: #000;
}
.event_title h3 {
  color: #007dae;
}

/* @end */
/* @group Blog */
.main {
  padding: 1.875em 1.25em 0 1.25em;
}
@media screen and (min-width: 48em) {
  .main {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 70.2127659574%;
  }
  .main:last-child {
    margin-right: 0;
  }
  .main.wide {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 100%;
  }
  .main.wide:last-child {
    margin-right: 0;
  }
}
.main .post {
  padding-bottom: 1.875em;
  margin-bottom: 1.875em;
  border-bottom: 2px solid #eee;
  display: block;
}
.main .post::after {
  clear: both;
  content: "";
  display: table;
}
.main .post .alignleft {
  text-align: center;
}
.main .post .entry-meta, .main .post .entry-footer {
  color: hsl(0deg, 0%, 60%);
  font-size: 0.8125em;
}
.main .post .entry-meta a, .main .post .entry-footer a {
  color: hsl(0deg, 0%, 40%);
  border-bottom: 1px dotted hsl(0deg, 0%, 40%);
}
.main .post .entry-meta a:hover, .main .post .entry-footer a:hover {
  color: #007dae;
  border-color: #007dae;
}
.main .post .entry-meta .posted-on, .main .post .entry-meta .cat-links, .main .post .entry-meta .comments-link, .main .post .entry-footer .posted-on, .main .post .entry-footer .cat-links, .main .post .entry-footer .comments-link {
  margin-right: 10px;
}
.main .post .entry-meta .posted-on:before, .main .post .entry-meta .cat-links:before, .main .post .entry-meta .comments-link:before, .main .post .entry-footer .posted-on:before, .main .post .entry-footer .cat-links:before, .main .post .entry-footer .comments-link:before {
  font-family: "FontAwesome";
  margin-right: 4px;
}
.main .post .entry-meta .posted-on:before, .main .post .entry-footer .posted-on:before {
  content: "\f073";
}
.main .post .entry-meta .cat-links:before, .main .post .entry-footer .cat-links:before {
  content: "\f114";
}
.main .post .entry-meta .comments-link, .main .post .entry-footer .comments-link {
  float: right;
  margin-right: 0;
}
.main .post .entry-meta .comments-link:before, .main .post .entry-footer .comments-link:before {
  content: "\f075";
}
.main .post .entry-meta .comments-link a, .main .post .entry-footer .comments-link a {
  border: none;
}
.main .post .entry-title {
  font-weight: bold;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: -0.035em;
}

.sidebar {
  padding: 1.875em 1.25em 0 1.25em;
}
@media screen and (min-width: 48em) {
  .sidebar {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 27.6595744681%;
  }
  .sidebar:last-child {
    margin-right: 0;
  }
}
.sidebar .widget ul li {
  border-bottom: 1px dotted #eee;
  padding: 4px;
}
.sidebar .widget ul li.current-menu-item a {
  font-weight: 700;
}
.sidebar .widget-title {
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  color: #00A1E1;
}

/* @end */
/* @group Sponsors */
h3.sponsorgroup {
  position: relative;
  text-align: center;
  color: #00A1E1;
  font-family: Cambria, Georgia, serif;
  font-style: italic;
  font-size: 1.5em;
  margin: 1.414em 0 1.5em;
  width: 100%;
}
h3.sponsorgroup::after {
  clear: both;
  content: "";
  display: table;
}
h3.sponsorgroup span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
h3.sponsorgroup:before {
  background-image: -webkit-radial-gradient(50% 50%, circle, #fff 10%, #007dae 30%, #fff);
  background-image: radial-gradient(  circle at 50% 50%, #fff 10%, #007dae 30%, #fff);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
}

.sponsors .sponsor {
  padding: 1.25em;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .sponsors .sponsor.fw {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 100%;
  }
  .sponsors .sponsor.fw:last-child {
    margin-right: 0;
  }
  .sponsors .sponsor.fw:nth-child(1n) {
    margin-right: 0;
  }
  .sponsors .sponsor.fw:nth-child(1n+1) {
    clear: left;
  }
  .sponsors .sponsor.half {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 48.9361702128%;
  }
  .sponsors .sponsor.half:last-child {
    margin-right: 0;
  }
  .sponsors .sponsor.half:nth-child(2n) {
    margin-right: 0;
  }
  .sponsors .sponsor.half:nth-child(2n+1) {
    clear: left;
  }
  .sponsors .sponsor.third {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 31.914893617%;
  }
  .sponsors .sponsor.third:last-child {
    margin-right: 0;
  }
  .sponsors .sponsor.third:nth-child(3n) {
    margin-right: 0;
  }
  .sponsors .sponsor.third:nth-child(3n+1) {
    clear: left;
  }
  .sponsors .sponsor.fourth {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 23.4042553191%;
  }
  .sponsors .sponsor.fourth:last-child {
    margin-right: 0;
  }
  .sponsors .sponsor.fourth:nth-child(4n) {
    margin-right: 0;
  }
  .sponsors .sponsor.fourth:nth-child(4n+1) {
    clear: left;
  }
  .sponsors .sponsor.fifth {
    float: left;
    display: block;
    margin-right: 2.1276595745%;
    width: 18.2978723404%;
  }
  .sponsors .sponsor.fifth:last-child {
    margin-right: 0;
  }
  .sponsors .sponsor.fifth:nth-child(5n) {
    margin-right: 0;
  }
  .sponsors .sponsor.fifth:nth-child(5n+1) {
    clear: left;
  }
}

/* @end */
/* blog */
.blog-image {
  max-width: 400px;
  margin: 0 0 2em;
  font-style: italic;
  font-size: 0.8125em;
}
@media screen and (min-width: 48em) {
  .blog-image {
    max-width: 300px;
    float: right;
    margin: 0 0 2em 2.5em;
  }
}
@media screen and (min-width: 60em) {
  .blog-image {
    max-width: 400px;
  }
}
.blog-image img {
  width: 100%;
}

/* end blog */
/* contact form */
.gform_wrapper label {
  margin: 0 !important;
}
.gform_wrapper input {
  margin-bottom: 4px !important;
}
.gform_wrapper .gfield_description {
  padding-top: 0 !important;
}

/* end form */
/*! formstone v1.2.1 [background.css] 2016-08-02 | GPL-3.0 License | formstone.it */
.fs-background {
  overflow: hidden;
  position: relative;
}

.fs-background, .fs-background-container, .fs-background-media {
  -webkit-transition: none;
  transition: none;
}

.fs-background-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.fs-background-media {
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
}

.fs-background-media.fs-background-animated {
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.fs-background-media iframe, .fs-background-media img, .fs-background-media video {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-user-drag: none;
}

.fs-background-media.fs-background-fixed, .fs-background-media.fs-background-native {
  width: 100%;
  height: 100%;
}

.fs-background-media.fs-background-fixed img, .fs-background-media.fs-background-native img {
  display: none;
}

.fs-background-media.fs-background-native {
  background-position: center;
  background-size: cover;
}

.fs-background-media.fs-background-fixed {
  background-position: center;
  background-attachment: fixed;
}

.fs-background-embed.fs-background-ready:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.fs-background-embed.fs-background-ready iframe {
  z-index: 0;
}

/*! formstone v1.2.1 [navigation.css] 2016-08-02 | GPL-3.0 License | formstone.it */
.fs-navigation, .fs-navigation *, .fs-navigation :after, .fs-navigation :before, .fs-navigation:after, .fs-navigation:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-navigation-toggle-nav.fs-navigation-enabled {
  display: none;
}

.fs-navigation-toggle-nav.fs-navigation-open {
  display: block;
}

.fs-navigation-toggle-handle.fs-navigation-enabled {
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
  display: block;
}

.fs-navigation-overlay-nav.fs-navigation-enabled, .fs-navigation-push-nav.fs-navigation-enabled, .fs-navigation-reveal-nav.fs-navigation-enabled {
  width: 270px;
  height: 100%;
  height: calc(100% + 60px);
  position: fixed;
  top: 0;
  background: #fff;
  display: block;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.fs-navigation-push-nav.fs-navigation-enabled, .fs-navigation-reveal-nav.fs-navigation-enabled {
  visibility: hidden;
}

.fs-navigation-reveal-nav.fs-navigation-animated {
  -webkit-transition: visibility 1ms linear 0.2s;
  transition: visibility 1ms linear 0.2s;
}

.fs-navigation-overlay-nav.fs-navigation-animated, .fs-navigation-push-nav.fs-navigation-animated {
  -webkit-transition: visibility 1ms linear 0.2s, -webkit-transform 0.2s ease;
  transition: visibility 1ms linear 0.2s, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, visibility 1ms linear 0.2s;
  transition: transform 0.2s ease, visibility 1ms linear 0.2s, -webkit-transform 0.2s ease;
}

.fs-navigation-push-nav.fs-navigation-enabled, .fs-navigation-reveal-nav.fs-navigation-enabled {
  z-index: 0;
}

.fs-navigation-overlay-left-nav.fs-navigation-enabled, .fs-navigation-push-left-nav.fs-navigation-enabled, .fs-navigation-reveal-left-nav.fs-navigation-enabled {
  left: 0;
}

.fs-navigation-overlay-right-nav.fs-navigation-enabled, .fs-navigation-push-right-nav.fs-navigation-enabled, .fs-navigation-reveal-right-nav.fs-navigation-enabled {
  right: 0;
}

.fs-navigation-overlay-left-nav.fs-navigation-enabled, .fs-navigation-push-left-nav.fs-navigation-enabled {
  -webkit-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  transform: translateX(-270px);
}

.csstransforms3d .fs-navigation-overlay-left-nav.fs-navigation-enabled, .csstransforms3d .fs-navigation-push-left-nav.fs-navigation-enabled {
  -webkit-transform: translate3D(-270px, 0, 0);
  -ms-transform: translate3D(-270px, 0, 0);
  transform: translate3D(-270px, 0, 0);
}

.fs-navigation-overlay-right-nav.fs-navigation-enabled, .fs-navigation-push-right-nav.fs-navigation-enabled {
  -webkit-transform: translateX(270px);
  -ms-transform: translateX(270px);
  transform: translateX(270px);
}

.csstransforms3d .fs-navigation-overlay-right-nav.fs-navigation-enabled, .csstransforms3d .fs-navigation-push-right-nav.fs-navigation-enabled {
  -webkit-transform: translate3D(270px, 0, 0);
  -ms-transform: translate3D(270px, 0, 0);
  transform: translate3D(270px, 0, 0);
}

.fs-navigation-overlay-nav.fs-navigation-enabled {
  z-index: 3;
}

.fs-navigation-reveal-nav.fs-navigation-open {
  visibility: visible;
  -webkit-transition: visibility 1ms ease;
  transition: visibility 1ms ease;
}

.fs-navigation-overlay-nav.fs-navigation-open, .fs-navigation-push-nav.fs-navigation-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: visibility 1ms ease, -webkit-transform 0.2s ease;
  transition: visibility 1ms ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, visibility 1ms ease;
  transition: transform 0.2s ease, visibility 1ms ease, -webkit-transform 0.2s ease;
  visibility: visible;
}

.csstransforms3d .fs-navigation-overlay-nav.fs-navigation-open, .csstransforms3d .fs-navigation-push-nav.fs-navigation-open {
  -webkit-transform: translate3D(0, 0, 0);
  -ms-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}

.fs-navigation-overlay-handle.fs-navigation-enabled, .fs-navigation-push-handle.fs-navigation-enabled {
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.fs-navigation-overlay-content:before {
  width: 100%;
  height: 100%;
  height: calc(100% + 60px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.fs-navigation-overlay-content.fs-navigation-open:before {
  opacity: 1;
  visibility: visible;
}

.fs-navigation-push-content.fs-navigation-enabled, .fs-navigation-reveal-content.fs-navigation-enabled {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.csstransforms3d .fs-navigation-push-content.fs-navigation-enabled, .csstransforms3d .fs-navigation-reveal-content.fs-navigation-enabled {
  -webkit-transform: translate3D(0, 0, 0);
  -ms-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}

.fs-navigation-push-content.fs-navigation-animated, .fs-navigation-reveal-content.fs-navigation-animated {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.fs-navigation-push-left-content.fs-navigation-open, .fs-navigation-reveal-left-content.fs-navigation-open {
  -webkit-transform: translate3D(270px, 0, 0);
  -ms-transform: translate3D(270px, 0, 0);
  transform: translate3D(270px, 0, 0);
}

.csstransforms3d .fs-navigation-push-left-content.fs-navigation-open, .csstransforms3d .fs-navigation-reveal-left-content.fs-navigation-open {
  -webkit-transform: translateX(270px);
  -ms-transform: translateX(270px);
  transform: translateX(270px);
}

.fs-navigation-push-right-content.fs-navigation-open, .fs-navigation-reveal-right-content.fs-navigation-open {
  -webkit-transform: translate3D(-270px, 0, 0);
  -ms-transform: translate3D(-270px, 0, 0);
  transform: translate3D(-270px, 0, 0);
}

.csstransforms3d .fs-navigation-push-right-content.fs-navigation-open, .csstransforms3d .fs-navigation-reveal-right-content.fs-navigation-open {
  -webkit-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  transform: translateX(-270px);
}

.fs-navigation-handle.fs-navigation-enabled {
  border: none;
  padding: 0;
}

.fs-navigation-lock {
  overflow: hidden !important;
}

/*! formstone v1.2.1 [tooltip.css] 2016-08-02 | GPL-3.0 License | formstone.it */
.fs-tooltip {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -999px;
  left: -999px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fs-tooltip, .fs-tooltip *, .fs-tooltip :after, .fs-tooltip :before, .fs-tooltip:after, .fs-tooltip:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-tooltip-visible {
  opacity: 1;
}

.fs-tooltip-content {
  display: block;
  float: left;
  position: relative;
  white-space: nowrap;
}

.fs-tooltip-caret {
  display: none;
}

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