/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 13/1.5 Arial, Helvetica, sans-serif;
  color: #48484a;
  background-color: #fdfdfd;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * `main` element
 */
main {
  display: block;
  /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 11.375;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #2a7ae2;
  text-decoration: underline;
}
a:visited {
  color: #1756a9;
}
a:hover {
  color: #48484a;
  text-decoration: underline;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 14.625;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 12.1875;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(800px - (30px));
  max-width: calc(800px - (30px));
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(800px - (30px * 2));
    max-width: calc(800px - (30px * 2));
    padding-right: 30px;
    padding-left: 30px;
  }
}

.nowrap {
  margin: 0 auto;
  max-width: none;
  padding: 0;
}
@media screen and (min-width: 800px) {
  .nowrap {
    margin: 0 auto;
    max-width: none;
    padding: 0;
  }
}

/**
 * Clearfix
 */
.wrapper:after, .nowrap:after, .footer-col-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.orange {
  color: #f66a0a;
}

.grey {
  color: #828282;
}

.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: currentColor;
  padding: 5px 3px 2px 5px;
  vertical-align: text-bottom;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: #757579;
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
}
table tr:nth-child(even) {
  background-color: #f7f7f7;
}
table th, table td {
  padding: 10px 15px;
}
table th {
  background-color: #f0f0f0;
  border: 1px solid #dedede;
  border-bottom-color: #c9c9c9;
}
table td {
  border: 1px solid #e8e8e8;
}

/**
 * Site header
 */
.site-header {
  position: relative;
}

.site-title {
  font-size: 21.125;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
@media screen and (max-width: 768px) {
  .site-title {
    padding-right: 45px;
  }
}
.site-title, .site-title:visited {
  color: #424242;
}

.site-nav {
  position: absolute;
  top: 9px;
  right: 15px;
  background-color: #fdfdfd;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  text-align: right;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  float: right;
  width: 36px;
  height: 26px;
  line-height: 0;
  padding-top: 10px;
  text-align: center;
}
.site-nav .menu-icon > svg path {
  fill: #424242;
}
.site-nav label[for="nav-trigger"] {
  display: block;
  float: right;
  width: 36px;
  height: 36px;
  z-index: 2;
  cursor: pointer;
}
.site-nav input ~ .trigger {
  clear: both;
  display: none;
}
.site-nav input:checked ~ .trigger {
  display: block;
  padding-bottom: 5px;
}
.site-nav .page-link {
  color: #48484a;
  line-height: 1.5;
  display: block;
  padding: 5px 10px;
  margin-left: 20px;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .site-nav {
    position: static;
    float: right;
    border: none;
    background-color: inherit;
  }
  .site-nav label[for="nav-trigger"] {
    display: none;
  }
  .site-nav .menu-icon {
    display: none;
  }
  .site-nav input ~ .trigger {
    display: block;
  }
  .site-nav .page-link {
    display: inline;
    padding: 0;
    margin-left: auto;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 20px;
  }
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #e8e8e8;
  clear: both;
  padding: 20px 0 10px;
}

.footer-heading {
  font-size: 14.625;
  margin-bottom: 15px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 12.1875;
  color: #828282;
  margin-left: -15px;
}

.footer-col {
  width: -webkit-calc(100% - (30px / 2));
  width: calc(100% - (30px / 2));
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1,
.footer-col-2 {
  width: -webkit-calc(50% - (30px / 2));
  width: calc(50% - (30px / 2));
}

.footer-col-3 {
  width: -webkit-calc(100% - (30px / 2));
  width: calc(100% - (30px / 2));
}

@media screen and (min-width: 800px) {
  .footer-col-1 {
    width: -webkit-calc(35% - (30px / 2));
    width: calc(35% - (30px / 2));
  }

  .footer-col-2 {
    width: -webkit-calc(20% - (30px / 2));
    width: calc(20% - (30px / 2));
  }

  .footer-col-3 {
    width: -webkit-calc(45% - (30px / 2));
    width: calc(45% - (30px / 2));
  }
}
@media screen and (min-width: 768px) {
  .footer-col {
    float: left;
  }
}
/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1 0 auto;
}

.page-heading {
  font-size: 26;
}

.post-list-heading {
  font-size: 22.75;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 11.375;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 19.5;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title,
.post-content h1 {
  font-size: 34.125;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (min-width: 800px) {
  .post-title,
  .post-content h1 {
    font-size: 34.125;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h2 {
  font-size: 22.75;
}
@media screen and (min-width: 800px) {
  .post-content h2 {
    font-size: 26;
  }
}
.post-content h3 {
  font-size: 17.875;
}
@media screen and (min-width: 800px) {
  .post-content h3 {
    font-size: 21.125;
  }
}
.post-content h4 {
  font-size: 14.625;
}
@media screen and (min-width: 800px) {
  .post-content h4 {
    font-size: 16.25;
  }
}

.social-media-list {
  display: table;
  margin: 0 auto;
}
.social-media-list li {
  float: left;
  margin: 0 5px;
}
.social-media-list li:first-of-type {
  margin-left: 0;
}
.social-media-list li:last-of-type {
  margin-right: 0;
}
.social-media-list li a {
  display: block;
  padding: 7.5px;
  border: 1px solid #e8e8e8;
}
.social-media-list li:hover .svg-icon {
  fill: currentColor;
}

/**
 * Grid helpers
 */
@media screen and (min-width: 800px) {
  .one-half {
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - (30px / 2));
  }
}
/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

/**
 * Base - Custom
 */
body {
  color: #48484a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.384615;
}

p {
  margin: 0 0 16px;
  padding: 0;
}

h1,
h2,
h3 {
  text-align: center;
}

h1,
h2 {
  color: #48484a;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.333333;
  margin: 0 0 8px;
}

.content-wide h1 {
  margin: 0 0 8px;
  width: 100%;
}

.content-wide h2,
.sidebar h2 {
  margin: 20px 0 8px;
  width: 100%;
}

.content h1,
.content h2 {
  margin: 16px 0 20px;
  text-align: initial;
}

.content h1 {
  margin: 0 0 20px;
}

h3 {
  color: #48484a;
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h4,
h5,
h6 {
  font-size: 12px;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #3d73aa;
}

ul {
  margin: 0;
  padding: 0 0 0 25px;
}

/**
 * Custom
 */
.site-header,
.subheader,
.content-wide,
.summary,
.sidebar,
.speakers,
.organizers,
.speakers-list,
.organizers-list,
.sidebar-social-list {
  display: flex;
  flex-wrap: wrap;
}

.site-header,
.subheader,
.content-wide,
.summary,
.sidebar,
.speakers,
.organizers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#oho {
  padding: 40px 20px 20px;
}

.site-header {
  border-bottom: 3px solid #231f20;
  display: block;
  float: none;
  padding: 0 0 10px;
}

.site-logo {
  display: flex;
  justify-content: center;
}

.site-title {
  padding: 0;
}

.nowrap {
  margin: 0 auto;
  max-width: initial;
  padding: 0;
}

/**
 * 404
 */
.body-404 .container {
  margin: 10px auto;
  max-width: 600px;
  text-align: center;
}
.body-404 h1 {
  margin: 30px 0;
  font-size: 4em;
  line-height: 1;
  letter-spacing: -1px;
}
.body-404 .content h1 {
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  background: none;
}

@media only screen and (min-width: 425px) {
  .body-404 .container {
    margin: 10px auto;
    max-width: 600px;
    text-align: center;
  }
  .body-404 h1 {
    margin: 30px 0;
    font-size: 4em;
    line-height: 1;
    letter-spacing: -1px;
  }
  .body-404 .content h1 {
    margin: 0 0 20px;
    text-align: center;
    padding: 0;
    background: none;
  }
}
/**
 * Non-Homepage
 */
.content {
  padding: 16px 0 0;
}

/**
 * About 2014
 */
body.about.two-thirds .content {
  max-width: 775px;
}

/**
 * Figure 2010
 */
.figure-2010 img {
  margin: 0 0 6px;
}

figcaption {
  padding: 0 0 0 6px;
}

.about2010 .figure-2010,
.about2010 .figcaption {
  font-family: Arial, Helvetica, sans-serif;
}

@media only screen and (min-width: 576px) {
  .figure-2010 {
    width: 445px;
  }

  .about2010 .figure-2010,
  .about2010 .figcaption {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  .about2010 .figure-2010,
  .about2010 .figcaption {
    margin: 0;
    padding: 0 0 0 10px;
  }
}
/**
 * About 2010
 */
@media only screen and (min-width: 920px) {
  .about2010 .content,
  .press2010 .content {
    width: 775px;
  }
}
/**
 * Sidebar
 */
.sidebar {
  margin: 0 0 26px;
}

.sidebar-social-list {
  padding: 0 30px;
}

.sidebar-list {
  text-align: center;
  width: 100%;
}

.sidebar-video {
  /* margin: 0 10px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
.sidebar-video p {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .sidebar-video p {
    margin: 4px auto 16px 10px;
    text-align: left;
  }
}
/**
 * Speakers & Organizers
 */
.sidebar .speakers-list img,
.sidebar .organizers-list img {
  padding: 0 0 6px;
}
.sidebar .speakers-list a,
.sidebar .speakers-list a div,
.sidebar .speakers-list img,
.sidebar .organizers-list a,
.sidebar .organizers-list a div,
.sidebar .organizers-list img {
  color: #000000;
  font-size: 11px;
  text-decoration: none;
  width: 90px;
}
.sidebar .speakers-list a,
.sidebar .organizers-list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 9px 16px;
}
.sidebar .speakers-list a:last-of-type,
.sidebar .organizers-list a:last-of-type {
  justify-self: flex-start;
}
.sidebar .speakers-list a div,
.sidebar .organizers-list a div {
  margin: 0 6px;
}

.sidebar .speakers-list,
.sidebar .organizers-list {
  padding: 0;
}

.speakers-list a span,
.organizers-list a span {
  display: block;
}

.sidebar .speakers-list a,
.sidebar .organizers-list a {
  margin: 0 0 32px;
  text-align: center;
  width: 50%;
}

.content-wide .speakers-list img,
.content-wide .organizers-list img {
  border: 1px solid #b2b4b5;
  margin: 0 auto;
}

.organizers-list {
  padding: 0;
}
.organizers-list a {
  width: 50%;
}

ul,
ol {
  padding: 0 0 15px 20px;
}

/**
 * Site Footer
 */
.site-footer {
  margin: 0 0 16px;
  padding: 20px 20px 0;
  text-align: center;
}

/*
=============================================================
COMMON CSS
=============================================================
*/
img {
  border: 0;
}

.imgLeft {
  float: left;
  margin: 0 15px 0;
}

.imgRight {
  float: right;
  margin: 0 0 0 15px;
}

.align-center {
  display: block;
  margin: 0 auto;
}

.full-width {
  width: 100%;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.list-style-none {
  list-style: none;
  list-style-type: none;
  padding: 0;
}

.margin-top-tall,
.content h2.margin-top-tall {
  margin-top: 50px;
}

.margin-bottom-16 {
  margin-bottom: 16px;
}

.mb6 {
  margin: 0 0 6px;
}

.mt0 {
  margin-top: 0;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.btn-spacing-bottom {
  margin: 0 0 34px;
}

.mt50,
.margin-top-extra {
  margin-top: 50px;
}

.maw-775 {
  max-width: 775px;
}

.giant-text {
  color: #48484a;
  font-family: Georgia,Times, serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  margin: 0 0 8px;
}

.paragraph-header,
.content h3.paragraph-header {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.384615;
  margin: 36px 0 16px;
  text-align: left;
  text-transform: none;
}

.hide {
  display: none;
}

.no-bold {
  font-weight: 400;
}

@media only screen and (max-width: 425px), (max-width: 2000px) {
  .content h1.paragraph-header,
  .content h2.paragraph-header {
    background: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.384615;
    margin: 0 0 8px;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
  }
}
/**
 * Responsive Video - YouTube
 */
.video-responsive {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.video-responsive iframe {
  height: 100%;
  left: 0;
  max-height: 315px;
  max-width: 560px;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-2015 {
  overflow: hidden;
}
.video-2015 iframe {
  height: 100%;
  left: 0;
  max-height: 315px;
  max-width: 560px;
  position: static;
  top: 0;
  width: 100%;
}

/**
* Homepage - General
*/
/**
 * Home 2015
 */
.home2015 .mt25 {
  margin-top: 25px;
}
.home2015 .sidebar-list h3 {
  margin: 16px 0;
}

.home2012 ul {
  list-style: none;
  padding: 0 0 15px;
}

/**
 * Home 2014
 */
.home2014 .content-wide h2 {
  word-break: break-word;
}
.home2014 .subheader .cta img {
  margin: 10px auto;
}

@media only screen and (min-width: 576px) {
  .home2014 .subheader .cta {
    flex-direction: column;
  }
  .home2014 .subheader .cta .omic-tag {
    width: 60%;
    align-self: center;
  }
}
@media only screen and (min-width: 768px) {
  .home2014 .subheader .row-top {
    width: 68%;
  }
  .home2014 .subheader .cta {
    width: 180px;
  }
  .home2014 .subheader .cta .omic-tag {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .home2014 .subheader {
    height: 274px;
  }
  .home2014 .subheader .row-top {
    width: 75%;
  }
  .home2014 .subheader .row-top .summary {
    margin: 40px 0 0;
    padding: 0;
    text-align: left;
    width: 50%;
  }
  .home2014 .subheader .cta,
  .home2014 .subheader .cta h3 {
    text-align: right;
  }
  .home2014 .subheader .cta a img {
    margin: 10px 0 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .home2014 .subheader .cta {
    width: 200px;
  }
}
/**
* Home 2011
*/
.home2011 {
  padding: 16px 0 0;
}
.home2011 .sidebar-list {
  text-align: center;
}

.conference-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.conference-award-img {
  margin: 0 0 36px;
}

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

@media only screen and (min-width: 425px) {
  .home2011 .sidebar {
    margin: 0 auto;
    width: 250px;
  }
}
@media only screen and (min-width: 576px) {
  .conference-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 500px;
  }

  .conference-award-img {
    margin: 0 2% 0 0;
    width: 150px;
  }

  .conference-text {
    text-align: left;
    width: 300px;
  }

  .home2011 .sidebar {
    width: auto;
  }
  .home2011 .sidebar .speakers-list a {
    margin: 0 9px 16px;
  }
}
@media only screen and (min-width: 768px) {
  .home2011 {
    padding: 0;
    width: auto;
  }
  .home2011 .content-wide h1 {
    margin: 0 0 20px 24px;
  }
  .home2011 .conference-box {
    justify-content: space-between;
    width: 450px;
  }
  .home2011 .conference-text {
    width: 285px;
  }
  .home2011 .sidebar {
    width: 230px;
  }
  .home2011 .sidebar .speakers .speakers-list a {
    padding: 0 0 9px;
    margin: 0 9px;
  }
  .home2011 .sidebar-header h3 {
    margin: 0 10px 16px;
  }
  .home2011 .sidebar-list {
    text-align: left;
  }
  .home2011 .sidebar-list a,
  .home2011 .sidebar-list p {
    padding: 0;
  }
}
@media only screen and (min-width: 920px) {
  .conference-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 6px 0 0;
    width: 575px;
  }

  .conference-text p {
    padding: 0 30px 0 0;
  }

  .conference-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 395px;
  }
}
@media only screen and (min-width: 1024px) {
  .conference-box {
    justify-content: flex-start;
    width: 525px;
  }

  .conference-text p {
    padding: 0;
  }

  .conference-text {
    width: 330px;
    width: 62.75%;
  }
}
@media only screen and (min-width: 1200px) {
  .home2011 {
    padding: 0;
  }
  .home2011 .content-wide h1 {
    margin: 0 0 20px -25px;
  }
  .home2011 .conference-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 6px 0 0;
    width: 575px;
  }
  .home2011 .conference-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 395px;
  }
  .home2011 .conference-text p {
    padding: 0 13px 0 0;
  }
}
/**
 * Home 2010
 */
.home2010 .content-wide {
  box-sizing: content-box;
  max-width: 500px;
}
.home2010 .content-wide h1:first-child {
  margin: 0 0 8px;
  text-align: left;
}

.top-nav {
  background-color: transparent;
  border: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 50%;
}
.top-nav li {
  display: block;
  float: left;
  width: 80%;
}
.top-nav li a,
.top-nav li a:visited {
  color: #48484a;
  display: block;
  float: left;
  font-size: 12px;
  font-size: 14px;
  margin: 0 25px 0 0;
  padding: 10px 0;
  text-decoration: none;
  text-transform: uppercase;
}
.top-nav li:last-of-type a {
  padding: 10px 0 16px;
}
.top-nav li:last-of-type a a:hover {
  color: #d91f2a;
  display: block;
}

.site-nav input:checked ~ .trigger {
  background: white;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 52px 0 15px;
  position: absolute;
  z-index: -1;
}
.site-nav .menu-icon > svg path {
  fill: white;
}
.site-nav .menu-icon {
  height: 21px;
  padding: 15px 0;
  width: 46px;
}

.site-nav label[for="nav-trigger"] {
  background: black;
  border: 1px solid black;
  height: 50px;
  width: 46px;
}

@media only screen and (min-width: 576px) {
  .top-nav {
    display: block;
    float: right;
    height: 28px;
    list-style: none;
  }
  .top-nav li {
    display: block;
  }
  .top-nav li a,
  .top-nav li a:visited {
    color: #48484a;
    display: block;
    float: left;
    font-size: 12px;
    margin: 0 25px 0 0;
    text-decoration: none;
    text-transform: uppercase;
  }
  .top-nav li a:hover {
    color: #d91f2a;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .top-nav {
    width: auto;
  }
  .top-nav li {
    width: auto;
  }
  .top-nav li a, .top-nav li:last-of-type a {
    padding: 0;
  }

  .site-nav {
    background-color: inherit;
    border: none;
    float: right;
    position: static;
    width: auto;
  }
  .site-nav label[for="nav-trigger"] {
    display: none;
  }
  .site-nav .menu-icon {
    display: none;
  }
  .site-nav input ~ .trigger {
    display: block;
  }
  .site-nav .page-link {
    display: inline;
    padding: 0;
    margin-left: auto;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 20px;
  }

  .site-nav.nav2011 ul li a {
    margin: 0 24px 0 0;
  }

  .site-nav.nav2013 {
    padding: 21px 0 1px;
  }
  .site-nav.nav2013 ul li a {
    margin: 0 17px 0 0;
  }

  .site-nav.nav2010,
  .site-nav.nav2012,
  .site-nav.nav2014 {
    padding: 21px 0 1px;
    width: 100%;
  }
  .site-nav.nav2010 ul,
  .site-nav.nav2012 ul,
  .site-nav.nav2014 ul {
    float: right;
  }
  .site-nav.nav2010 ul li a,
  .site-nav.nav2012 ul li a,
  .site-nav.nav2014 ul li a {
    margin: 0 24px 0 0;
  }
  .site-nav.nav2010 ul li a:last-of-type a,
  .site-nav.nav2012 ul li a:last-of-type a,
  .site-nav.nav2014 ul li a:last-of-type a {
    margin: 0 10px 0 0;
  }

  .site-nav.nav2010 ul li a,
  .site-nav.nav2014 ul li a {
    margin: 0 36px 0 0;
  }

  .site-nav.nav2010
  .site-nav.nav2013 {
    padding: 21px 0 1px;
  }
  .site-nav.nav2010
  .site-nav.nav2013 li a,
  .site-nav.nav2010
  .site-nav.nav2013 li a:visited {
    margin: 0 16px 0 0;
  }
  .site-nav.nav2010
  .site-nav.nav2013 li:last-of-type a {
    margin: 0;
  }
}
@media only screen and (min-width: 920px) {
  .site-nav.nav2012 ul {
    float: right;
    margin: 0 auto;
  }
  .site-nav.nav2012 ul li a,
  .site-nav.nav2012 ul li a:last-of-type {
    margin: 0 25px 0 0;
  }

  .site-nav.nav2013 {
    margin: 0 25px 0 0;
    padding: 21px 0 1px;
  }
  .site-nav.nav2013 ul li a,
  .site-nav.nav2013 ul li a:visited {
    margin: 0 25px 0 0;
  }
  .site-nav.nav2013 ul li:last-of-type a {
    margin: 0;
  }

  .site-nav.nav2010,
  .site-nav.nav2014 {
    padding: 71px 0 1px;
    width: auto;
  }
  .site-nav.nav2010 ul li a,
  .site-nav.nav2014 ul li a {
    margin: 0 25px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .top-nav {
    display: block;
    float: right;
    height: 28px;
    list-style: none;
    padding: 0;
  }

  .site-nav.nav2012 ul {
    width: 780px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-nav.nav2012 {
    padding: 71px 0 0;
    width: auto;
  }
  .site-nav.nav2012 ul {
    float: initial;
    width: auto;
  }

  .site-nav.nav2013 {
    padding: 71px 0 1px;
  }
}
/**
 * Subheader
 */
.subheader {
  box-sizing: border-box;
  padding: 0 16px;
  width: 100%;
}

.content-wide {
  padding: 16px;
}

.row-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cta {
  text-align: center;
}

.summary {
  margin: 20px 0;
  padding: 0 20px;
  text-align: center;
}

.register-btn {
  margin: 10px auto;
}

/**
 * 2015
 */
@media only screen and (min-width: 576px) {
  .home2015 .subheader {
    display: flex;
    margin: 0;
  }
  .home2015 .subheader .row-top {
    justify-content: center;
  }
  .home2015 .subheader .cta {
    justify-content: flex-end;
    margin: 0 40px 20px 0;
    width: 200px;
  }
  .home2015 .subheader .summary {
    margin: 20px 0;
    padding: 20px 40px 0;
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .home2015 .subheader {
    display: flex;
    margin: 0;
  }
  .home2015 .subheader .get-logo {
    width: 200px;
  }
  .home2015 .subheader .row-top {
    flex-wrap: wrap;
    justify-content: space-around;
    width: 70%;
  }
  .home2015 .subheader .cta {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: -36px 0 0px;
    width: 190px;
  }
  .home2015 .subheader .cta h3 {
    margin: 0 0 18px;
  }
  .home2015 .subheader .cta p {
    font-size: 14px;
  }
  .home2015 .subheader .summary {
    align-content: baseline;
    display: block;
    flex-direction: column;
    margin: 20px 0;
    padding: 20px 0px 0;
    width: 240px;
  }
}
@media only screen and (min-width: 920px) {
  .home2015 .subheader .summary {
    width: 340px;
  }

  .home2015 .subheader .row-top {
    width: 74%;
  }

  .home2015 .subheader .cta {
    margin: 10px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .home2015 .subheader .row-top {
    width: 77%;
  }
  .home2015 .subheader .get-logo {
    padding: 0 30px 0 0;
  }
  .home2015 .subheader .summary {
    margin: 38px 0 0;
    padding: 0;
    width: 60%;
  }
  .home2015 .subheader .cta {
    justify-content: space-between;
    margin: 42px 0 20px;
    padding: 0 12px;
    text-align: center;
    width: 160px;
  }
  .home2015 .subheader .cta h3 {
    margin: 0 0 8px;
    padding: 0 8px 0 0;
  }
  .home2015 .subheader .cta p {
    padding: 0 8px 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .home2015 .subheader .cta {
    justify-content: flex-start;
    margin: 40px 0 20px;
  }
  .home2015 .subheader .cta h3 {
    margin: 2px 0 28px;
    padding: 0;
  }
}
/**
 * Home 2014
 */
.home2014 .content-wide h2 {
  word-break: break-word;
}
.home2014 .subheader .cta img {
  margin: 10px auto;
}

@media only screen and (min-width: 576px) {
  .home2014 .subheader .omic-tag {
    width: 60%;
    align-self: center;
  }
}
@media only screen and (min-width: 768px) {
  .home2014 .subheader {
    width: 100%;
  }
  .home2014 .subheader .row-top {
    width: 68%;
  }
  .home2014 .subheader .cta {
    width: 180px;
  }
  .home2014 .subheader .cta .omic-tag {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .home2014 .subheader {
    height: 264px;
  }
  .home2014 .subheader .row-top {
    width: 75%;
  }
  .home2014 .subheader .summary {
    margin: 40px 0 0;
    padding: 0;
    text-align: left;
    width: 50%;
  }
}
@media only screen and (min-width: 576px) {
  .home2013 .subheader .cta {
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .home2013 .subheader {
    height: 272px;
  }
  .home2013 .subheader .row-top .get-logo {
    width: 200px;
  }
  .home2013 .subheader .row-top .summary {
    width: 58%;
  }
  .home2013 .subheader .cta {
    align-items: flex-end;
    justify-content: flex-start;
    margin: 42px 0 0;
    width: 176px;
  }
}
@media only screen and (min-width: 1024px) {
  .home2013 .subheader .row-top {
    max-width: 600px;
    width: auto;
  }
  .home2013 .subheader .row-top .summary {
    width: 50%;
  }
  .home2013 .subheader .cta {
    width: 190px;
  }
}
@media only screen and (min-width: 1200px) {
  .home2013 .subheader .cta {
    width: 196px;
  }
}
/**
 * Home 2012
 */
.home2012 .subheader {
  box-sizing: border-box;
  width: 100%;
}
.home2012 .subheader .cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .home2012 .subheader .row-top .summary {
    margin: 40px 0 20px;
  }
  .home2012 .subheader .cta {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .home2012 .subheader {
    height: 276px;
  }
  .home2012 .subheader .row-top .get-logo {
    width: 200px;
  }
  .home2012 .subheader .row-top .summary {
    margin: 46px 0 20px;
    width: 59%;
  }
  .home2012 .subheader .cta {
    justify-content: flex-start;
    margin: 42px 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .home2012 .subheader .row-top .summary {
    width: 56%;
  }
}
/**
 * Home 2011
 */
.home2011 .subheader {
  width: 100%;
}
.home2011 .subheader .cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .home2011 .subheader .row-top .summary {
    margin: 40px 0 20px;
  }
  .home2011 .subheader .cta {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .home2011 .subheader {
    height: 276px;
  }
  .home2011 .subheader .row-top .get-logo {
    width: 200px;
  }
  .home2011 .subheader .row-top .summary {
    margin: 46px 0 20px;
    width: 59%;
  }
  .home2011 .subheader .cta {
    align-items: flex-end;
    justify-content: flex-start;
    margin: 42px 10px 20px 0;
    padding: 0 12px 0 0;
    text-align: right;
    width: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .home2011 .subheader .cta {
    width: 190px;
  }
}
@media only screen and (min-width: 1024px) {
  .home2011 .subheader .row-top {
    max-width: 600px;
  }
  .home2011 .subheader .row-top .get-logo {
    padding: 0 40px 0 0;
  }
  .home2011 .subheader .row-top .summary {
    width: 56%;
  }
  .home2011 .subheader .cta {
    width: 190px;
  }
}
@media only screen and (min-width: 1200px) {
  .home2011 .subheader .row-top {
    max-width: 660px;
  }
  .home2011 .subheader .row-top .get-logo {
    padding: 0 80px 0 0;
  }
}
/**
 * Home 2010
 */
.home2010 .subheader {
  width: 100%;
}
.home2010 .subheader .cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .home2010 .subheader .row-top .summary {
    margin: 40px 0 20px;
  }
  .home2010 .subheader .cta {
    flex-direction: column;
    margin: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .home2010 .subheader {
    height: 276px;
  }
  .home2010 .subheader .row-top .get-logo {
    width: 200px;
  }
  .home2010 .subheader .row-top .summary {
    margin: 46px 0 20px;
    width: 59%;
  }
  .home2010 .subheader .cta {
    align-items: flex-end;
    justify-content: flex-start;
    margin: 42px 10px 20px 0;
    padding: 0 12px 0 0;
    text-align: right;
    width: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .home2010 .subheader .cta {
    width: 190px;
  }
}
@media only screen and (min-width: 1024px) {
  .home2010 .subheader .row-top {
    max-width: 600px;
  }
  .home2010 .subheader .row-top .get-logo {
    padding: 0 40px 0 0;
  }
  .home2010 .subheader .row-top .summary {
    width: 56%;
  }
  .home2010 .subheader .cta {
    width: 190px;
  }
}
@media only screen and (min-width: 1200px) {
  .home2010 .subheader .row-top {
    max-width: 720px;
  }
  .home2010 .subheader .row-top .get-logo {
    padding: 0 80px 0 0;
  }
}
/**
 * Common - Speakers, Awards, Media Partners
 */
.speakers-list,
.sponsors-list,
.awards-list {
  list-style: none;
  padding: 0;
}

.speaker,
.sponsor,
.award {
  justify-content: space-between;
}

.speaker,
.sponsor {
  margin: 0 0 6px;
}

.speaker-img,
.award-img {
  align-self: flex-start;
}

/**
 * Sponsors
 */
.sponsor-bio {
  width: 90%;
}
.sponsor-bio a {
  font-weight: 700;
}

.sponsor {
  flex-direction: column-reverse;
  justify-content: flex-start;
}

.sponsor-img {
  align-self: flex-start;
  padding: 0 0 16px;
}

.sponsors .collections-tag {
  padding: 0 20px 16px 0;
}

.sponsors2014 .sponsor-bio a {
  color: #000;
  text-decoration: none;
}
.sponsors2014 .sponsor-bio a:hover {
  text-decoration: underline;
}

/**
 * Sponsors 2011
 */
.sponsors2011 .sponsor {
  flex-direction: column-reverse;
  justify-content: flex-start;
}
.sponsors2011 .sponsor-img {
  align-self: flex-start;
  padding: 0 0 16px;
}
.sponsors2011 .org-left,
.sponsors2011 .org-right {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 80%;
}
.sponsors2011 .org-left img,
.sponsors2011 .org-right img {
  margin: 0 0 0 25px;
  padding: 35px 0;
}
.sponsors2011 .org-left a:first-of-type img {
  margin: 0 0 0 25px;
  padding: 10px 0 30px;
}

@media only screen and (min-width: 425px) {
  .sponsors2011 .sponsors-list {
    margin: 0 0 25px;
  }
  .sponsors2011 .org-left,
  .sponsors2011 .org-right {
    display: block;
    width: auto;
  }
}
@media only screen and (min-width: 576px) {
  .sponsor-img {
    align-self: flex-start;
    padding: 0 0 16px;
  }

  .sponsors2011 .sponsor {
    flex-direction: row;
    justify-content: flex-start;
  }
  .sponsors2011 .sponsor-bio {
    padding: 0 30px 0 0;
  }
  .sponsors2011 .org-left,
  .sponsors2011 .org-right {
    width: 66%;
  }
  .sponsors2011 .org-left img,
  .sponsors2011 .org-right img {
    margin: 0 0 0 25px;
    padding: 35px 0;
  }
  .sponsors2011 .org-left a:first-of-type img {
    margin: 0 0 0 25px;
    padding: 10px 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sponsors2011 .sponsor-bio {
    padding: 0 30px 0 0;
  }
  .sponsors2011 .organizing-sponsors-box {
    display: flex;
    justify-content: space-around;
    justify-content: initial;
    margin: 0 0 0 -20px;
    width: 730px;
  }
  .sponsors2011 .org-left,
  .sponsors2011 .org-right {
    width: initial;
  }
  .sponsors2011 .org-right {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    padding: 40px 0 0;
  }
  .sponsors2011 .org-left img,
  .sponsors2011 .org-right img {
    padding: 35px 0 40px;
  }
}
/**
 * Speakers
 */
.speakers-list {
  margin: 0 10px;
}

.speaker-img {
  align-self: baseline;
  margin: 0 auto 16px;
  padding: 0;
}

.speakers .collections-tag {
  margin: 0 10px;
}

.speakers2011 .speaker-bio {
  max-width: 426px;
}

.h3-steering-committee {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.384615;
  text-align: left;
  text-transform: none;
}

.steering-committee {
  list-style: none;
  padding: 0;
}
.steering-committee li {
  margin: 0 0 16px;
}

.speakers2010 .content h2 {
  background: none;
  font-size: 24px;
  padding: 0;
}

@media only screen and (min-width: 576px) {
  .speakers2010 .speakers-list {
    margin: 0 auto 50px;
  }
  .speakers2010 .content h2 {
    margin: 25px 0 16px;
  }
}
@media only screen and (min-width: 576px) {
  .speakers2010 .content h2 {
    background: none;
    color: #48484a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.384615;
    margin: 0 0 16px;
    padding: 0;
  }
}
/**
 * Awards
 */
.awards .content h2 {
  margin: 25px 0 26px;
}
.awards .content h1.awards-header {
  margin: 25px 0 1px;
}

.awards-banner {
  display: flex;
  margin: 4px 0 48px;
  width: auto;
}
.awards-banner img {
  align-self: center;
  margin: 0;
}
.awards-banner .gety-text {
  font-size: 16px;
  padding: 13px 0 2px;
}

.awards-header {
  margin: 70px 0 0;
}

.award-title {
  font-weight: 700;
}

.awards-banner {
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 30px;
  text-align: center;
}

.content h1,
.content h2 {
  text-align: center;
}

.awards-header {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.awards-list {
  display: block;
}

.award {
  display: block;
}

.award-links a,
.media-partner-img {
  margin: 0;
  width: initial;
}

.award-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 0;
}

img {
  display: block;
  vertical-align: middle;
}

.award-content {
  text-align: center;
  margin: 0;
}

/**
 * Media Partners
 */
.media-partners {
  margin: 0 0 32px;
  max-width: 100%;
  padding: 0 20px 0 0;
  width: 675px;
}

.media-partner-img {
  margin: 0;
  width: initial;
}

.partner-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 0;
}

img {
  display: block;
  vertical-align: middle;
}

/**
 * Judges
 */
.judges-list {
  list-style: none;
  list-style-type: none;
  width: 90%;
}

.judge {
  margin: 0 0 26px;
}

.judge-img {
  margin: 0 auto 16px;
}

/**
 * Media Sponsors
 */
.partner-row {
  flex-direction: column;
  align-items: center;
}

/**
 * Agenda
 */
.agenda-heading {
  font-size: 14px;
  font-weight: 700;
  margin: 0 20px 16px;
  text-align: left;
}

.heading2013 h4 {
  background: url("images/h2_bg.gif") 0 5px no-repeat;
  color: #48484a;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  margin: 0 0 20px;
  padding: 0 0 0 25px;
}

.sessions {
  list-style-type: none;
}

.session-time {
  display: inline-block;
  margin: 0 31px 0 0;
  vertical-align: top;
  width: 51px;
}

.session-title {
  font-weight: 700;
}

.no-bold {
  font-weight: 400;
}

.session-details {
  clear: both;
  display: inline-block;
  max-width: 76%;
  width: 600px;
}

.session-list {
  margin: 0 0 20px;
  max-width: 800px;
}

.agenda-left {
  display: inline-block;
  margin: 0 20px 0 0;
  vertical-align: top;
  width: 65px;
}

.content .venue h2 {
  margin: 25px 0;
}

.venue-address,
.venue-img {
  margin: 0 0 16px;
}

/**
 * Agenda Detailed
 */
.sessions,
.agenda-detailed .sessions {
  margin: 0px 0 10px;
}

.session-title,
.agenda-detailed .session-title {
  margin: 0 0 2px;
  display: block;
}

.agenda-detailed .session-time {
  margin: 0 15px 0 0;
}
.agenda-detailed .session-list {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
}

.session-details,
.agenda-detailed .session-details {
  max-width: 60%;
  min-width: 210px;
}

/**
 * Agenda - Two Columns - Agenda 2012
 */
.two-cols-header {
  display: flex;
}
.two-cols-header .session-title {
  max-width: 60%;
  min-width: 210px;
  width: 90%;
}

.two-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 0 77px;
  max-width: none !important;
  width: auto;
}
.two-cols .col-left {
  width: 45%;
}
.two-cols .col-right {
  width: 45%;
}

@media only screen and (min-width: 425px) {
  .session-details,
  .agenda-detailed .session-details {
    max-width: 60%;
    min-width: 210px;
  }
}
@media only screen and (min-width: 576px) {
  .session-time,
  .agenda-detailed .session-time {
    margin: 0 30px 0 0;
  }
  .session-time:first-of-type,
  .agenda-detailed .session-time:first-of-type {
    margin: 0 25px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .agenda-heading,
  .agenda-detailed .agenda-heading {
    margin: 0 25px 16px;
  }

  .session-list,
  .agenda-detailed .session-list {
    padding: 0px 25px 0;
  }

  .sessions,
  .agenda-detailed .sessions {
    min-height: 30px;
  }

  .session-time:first-of-type,
  .agenda-detailed .session-time:first-of-type {
    margin: 0 25px 0 0;
  }
}
.labs-btn {
  margin: 10px 0 40px;
}

.list-style-none {
  list-style: none;
  list-style-type: none;
  padding: 0;
}

.labs-agenda-list {
  list-style: none;
  padding: 0;
}

.lab-header {
  font-weight: 700;
}

.labs-participants {
  list-style: none;
  padding: 0 5px 15px;
}

.lab-entry {
  margin: 40px 0;
}

.lab-link img {
  margin: 0 auto;
}

.labs-giant {
  font-size: 30px;
  margin: 0 0 8px 0;
  font-weight: normal;
  color: #48484a;
  font-family: Georgia,Times, serif;
  line-height: 40px;
}

.labs2014 .lab-entry:last-of-type {
  margin: 40px 0 20px;
}

.labs-footer2014 {
  max-width: 500px;
}
.labs-footer2014 p:first-of-type {
  margin: 0 0 36px;
}

@media only screen and (min-width: 576px) {
  .lab-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
  }

  .lab-header,
  .lab-about {
    width: 55%;
    /*   width: 50%; */
  }

  .lab-link {
    margin: 0 10px 0 0;
  }

  .lab-link img {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .labs .content {
    width: 700px;
  }

  .labs .content h1,
  .labs .content h2 {
    margin: 25px 0 20px;
    padding: 0 0 0 25px;
  }

  .labs .content h1 {
    margin: 0 0 20px;
  }

  .video-responsive {
    padding-bottom: 42.25%;
  }

  .labs-agenda {
    margin: 29px 0 50px;
  }

  .labs-agenda-list {
    list-style: none;
    padding: 0;
  }
  .labs-agenda-list time {
    font-weight: 700;
  }

  .lab-header,
  .lab-about {
    width: 450px;
  }

  .lab-header {
    font-weight: 700;
  }

  .lab-about {
    margin: 0 20px 0 0;
  }

  .lab-link {
    width: 200px;
  }

  .lab-img {
    float: left;
    margin: 0 20px 0 0;
  }
}
@media only screen and (min-width: 920px) {
  .labs .content {
    width: 775px;
  }

  .lab-header,
  .lab-about {
    width: 500px;
  }

  .lab-link {
    margin: 0;
  }
}
@media only screen and (min-width: 425px) {
  .content {
    padding: 20px 0;
  }

  .content h1,
  .content h2 {
    background: url("images/h2_bg.gif") 0 5px no-repeat;
    margin: 20px 0;
    padding: 0 0 0 20px;
    text-align: initial;
  }

  .content h1 {
    margin: 0 0 20px;
  }

  .sidebar-header {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  .speakers,
  .organizers {
    margin: 20px 0;
  }

  .sidebar .speakers-list,
  .sidebar .organizers-list {
    justify-content: center;
  }
  .sidebar .speakers-list a,
  .sidebar .organizers-list a {
    display: block;
    margin: 0 10px 16px;
    width: auto;
  }
  .sidebar .speakers-list a div,
  .sidebar .organizers-list a div {
    margin: 0;
  }
  .sidebar .speakers-list span,
  .sidebar .organizers-list span {
    width: 100px;
  }

  .awards-speaker {
    margin: 0 auto;
  }

  .sidebar-social-list {
    text-align: center;
  }

  /**
   * Awards
   */
  .awards-header h2,
  .awards .awards-h2 {
    background: none;
    padding: 0;
    text-align: center;
  }

  .awards .awards-h2 {
    margin: 40px 0 20px;
  }

  .award-links a {
    margin: 0;
    width: initial;
  }

  /**
   * Judges
   */
  .judge-img {
    margin: 0 auto 16px 0;
  }
}
@media only screen and (min-width: 576px) {
  .content-wide h1 {
    margin: 20px 0 8px;
  }

  .subheader {
    display: block;
    margin: 16px 6.5% 0 0;
  }
  .subheader .summary {
    line-height: 20px;
    padding: 0;
    width: 200px;
  }
  .subheader .summary h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 20px;
    margin: 0 0 20px;
  }
  .subheader .summary p {
    font-size: 14px;
  }
  .subheader .cta {
    display: flex;
    flex-wrap: wrap;
    float: none;
    justify-content: space-around;
    margin: 0 0 20px;
    padding: 0 12px;
    width: auto;
  }
  .subheader .cta h3 {
    font-size: 14px;
    font-weight: bold;
  }
  .subheader > img {
    padding: 0 0 0 30px;
  }

  .cta-row {
    text-align: center;
    width: 50%;
  }

  .row-top {
    display: flex;
    justify-content: space-around;
  }

  .content,
  .sidebar {
    padding-bottom: 20px;
  }

  .sidebar h2,
  .sidebar h3 {
    width: 100%;
  }

  .content-wide {
    padding: 0 30px;
  }
  .content-wide .home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .speakers-list,
  .sponsors-list,
  .awards-list {
    margin: 0 auto;
  }

  .speaker,
  .sponsor,
  .award {
    display: flex;
  }

  .speaker,
  .sponsor {
    margin: 0 0 26px;
  }

  .collections-tag {
    padding: 0 20px 16px;
  }

  /**
   * 576 - Speaker
   */
  .speaker-img {
    padding: 0 20px 0 0;
  }

  .speaker-bio {
    padding: 0 0 0 20px;
    max-width: 540px;
  }

  .speakers .collections-tag {
    margin: 0 10px 0 111px;
  }

  /**
   * 576 - Awards
   */
  .awards-banner {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 30px;
    width: auto;
  }

  .awards-banner img {
    align-self: center;
    margin: 0 40px 0 10px;
  }

  .awards-banner .gety-text {
    text-align: left;
    font-size: 18px;
  }

  .gety-text p {
    margin: 0 0 8px;
  }

  .awards-header {
    margin: 30px 0 0;
  }

  .awards-header h2,
  .awards .awards-h2 {
    background: url("images/h2_bg.gif") 0 5px no-repeat;
    padding: 0 0 0 20px;
    margin: 0 0 20px 0;
    text-align: initial;
  }

  .awards.awards-h2 {
    margin: 40px 0 20px;
  }

  .award-img {
    margin: 0 50px 0 0;
    min-width: 120px;
  }

  .awards-header h2 {
    background: url("images/h2_bg.gif") 0 5px no-repeat;
    text-align: left;
    margin: 0 0 20px 20px;
    padding: 0 0 0 20px;
  }

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

  .award-title {
    font-weight: 700;
  }

  .award {
    margin: 30px 0 30px;
    margin: 30px 0;
  }

  .award-img {
    padding: 0;
  }

  /**
   * Judges
   */
  .judge {
    display: flex;
  }

  .judge-bio {
    padding: 0 0 0 20px;
  }

  .judge-img {
    align-self: baseline;
    margin: 0 20px 16px 0;
  }
}
@media only screen and (min-width: 768px) {
  #oho {
    margin: 0 auto;
    padding: 50px 0 20px;
    width: calc(100vw - 6vw);
  }

  .site-header {
    border-bottom: 3px solid #231f20;
    justify-content: space-between;
    padding: 0;
  }

  .site-logo,
  .site-title,
  .subheader {
    padding: 0;
  }

  .site-logo {
    display: block;
    float: left;
    padding: 0 0 0 16px;
  }

  .top-nav {
    display: block;
    float: right;
    height: 28px;
    list-style: none;
    padding: 71px 0 1px 0;
    position: static;
  }
  .top-nav li {
    display: block;
    float: left;
  }
  .top-nav li a,
  .top-nav li a:visited {
    color: #48484a;
    display: block;
    float: left;
    font-size: 12px;
    margin: 0 25px 0 0;
    text-decoration: none;
    text-transform: uppercase;
  }
  .top-nav li a:hover {
    color: #d91f2a;
    display: block;
  }

  .get-logo {
    width: 50%;
  }

  .subheader {
    border-bottom: 3px solid #231f20;
    display: inline-flex;
    justify-content: space-between;
    margin: 0;
  }
  .subheader .cta {
    display: inline-flex;
    margin: 40px 0 10px;
    width: 140px;
  }
  .subheader .summary {
    align-content: flex-start;
    margin: 40px 0 0;
    padding: 0;
    width: 50%;
  }

  .row-top {
    display: inline-flex;
    justify-content: space-between;
    width: 70%;
  }

  .cta-row {
    width: 100%;
  }
  .cta-row h3 {
    margin: 0 0 8px;
  }

  /**
   * Main
   */
  /**
   * Main - Non-Homepage
   */
  .content {
    padding: 25px 0 20px 15px;
  }
  .content h1,
  .content h2 {
    margin: 25px 0;
    padding: 0 0 0 25px;
  }
  .content h1 {
    margin: 0 0 25px;
  }

  /**
   * Main - Homepage
   */
  .content-wide,
  .sidebar {
    padding: 20px 0;
  }

  .content-wide {
    box-sizing: border-box;
    float: left;
    padding: 20px 30px;
    width: 62%;
  }
  .content-wide .home {
    justify-content: flex-start;
  }
  .content-wide h1, .content-wide h2 {
    background: url("images/h2_bg.gif") 0 5px no-repeat;
    font-size: 16px;
    font-style: italic;
    line-height: 20px;
    margin: 0 0 20px -25px;
    padding: 0 0 0 25px;
    text-align: left;
  }
  .content-wide .mt20 {
    margin-top: 20px;
  }

  .get-img {
    margin: 0 auto;
  }

  /**
   * Homepage - Sidebar
   */
  .sidebar {
    float: right;
    margin: 0;
    width: 37%;
  }

  .sidebar h2,
  .sidebar h3 {
    text-align: left;
  }

  .sidebar h3 {
    font-size: 14px;
  }

  /**
   * Sidebar - Speakers
   */
  .sidebar .speakers,
  .sidebar .organizers {
    justify-content: flex-start;
  }

  .sidebar .speakers {
    margin: 0 0 20px;
  }

  .sidebar .speakers-list,
  .sidebar .organizers-list {
    justify-content: flex-start;
  }
  .sidebar .speakers-list a,
  .sidebar .organizers-list a {
    margin: 0 5px 16px;
    width: 76px;
  }
  .sidebar .speakers-list a div,
  .sidebar .speakers-list img,
  .sidebar .organizers-list a div,
  .sidebar .organizers-list img {
    margin: 0 auto;
    width: 76px;
  }

  .organizers-list {
    justify-content: flex-start;
    width: 70%;
  }
  .organizers-list a span {
    margin: 0;
  }

  .sidebar-social-list {
    display: flex;
    flex-wrap: wrap;
    float: right;
    justify-content: flex-start;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  .sidebar-list {
    margin: 0 10px;
    text-align: left;
  }

  .sidebar-list span,
  .sidebar-list a,
  .sidebar-list p {
    padding: 0 0 0 4px;
  }

  #sidebar .personnel h3 {
    clear: both;
    display: block;
    margin: 0 0 15px;
  }

  /**
   * Sponsors
   */
  .sponsors h2 {
    margin: 25px 0 26px;
    padding: 0 0 0 25px;
  }

  .sponsor {
    display: flex;
    flex-direction: row;
  }

  .sponsor-bio {
    width: 392px;
  }
  .sponsor-bio p {
    display: inline;
  }

  .sponsor-img {
    margin: 0 0 0 35px;
    padding: 0 20px 0 0;
  }

  /**
   * 768 - Awards
   */
  body.awards .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .awards-list {
    width: 675px;
  }

  .awards-banner img {
    margin: 0 28px 0 0;
  }
  .awards-banner .gety-text {
    font-size: 20px;
  }

  .awards-banner {
    margin: 4px 0 30px;
  }

  .awards-banner img {
    margin: 0 48px 0 0;
  }

  .award-img {
    margin: 0 80px 0 0;
    min-width: 120px;
  }

  .awards .gety-text {
    padding: 6px;
  }

  .awards-header h2 {
    margin: 0 0 1px;
  }

  .awards-list {
    margin: 0 0 20px;
  }

  .award {
    width: 675px;
  }

  .award-img {
    flex-direction: column;
  }
  .award-img img {
    align-self: end;
  }

  .award-content {
    margin: 0 0 0 36px;
  }

  .award-title {
    font-weight: 700;
    margin: 0;
  }

  .awards-header {
    margin: 40px 0 0;
  }

  .awards .awards-h2 {
    margin: 40px 0 20px 20px;
  }

  .judge {
    justify-content: flex-start;
    display: flex;
    margin: 0 0 26px;
  }

  .judges-list {
    width: 675px;
    display: block;
    margin: 0;
  }

  .judge-img {
    align-self: baseline;
    margin: 0 auto 16px;
    padding: 0;
  }

  .judge-bio {
    padding: 0 0 0 20px;
  }

  .judge-img {
    align-self: baseline;
    margin: 0 20px 16px 0;
    padding: 0;
  }

  .media-partners {
    margin: 0 0 20px;
    padding: 0 20px 0 0;
    width: 100%;
  }

  .media-partner-img {
    margin: 0;
    width: initial;
    width: 320px;
    margin-right: 40px;
  }

  .partner-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    padding: 20px 0;
    width: 675px;
    justify-content: space-between;
    margin: 0;
    max-width: 675px;
    align-items: center;
  }

  .partner-fb,
  .partner-tw {
    margin: 0 40px 0 0;
    vertical-align: initial;
    width: 60px;
  }
}
@media only screen and (min-width: 920px) {
  .sidebar .speakers-list a,
  .sidebar .speakers-list a div,
  .sidebar .speakers-list img,
  .sidebar .organizers-list a,
  .sidebar .organizers-list a div,
  .sidebar .organizers-list img {
    width: 90px;
  }
}
@media only screen and (min-width: 1024px) {
  #oho {
    width: calc(100vw - 20vw);
  }

  .site-logo,
  .subheader {
    padding: 0;
  }

  /**
   * Subheader
   */
  .subheader {
    display: block;
    height: 244px;
  }
  .subheader .cta {
    display: inline-flex;
    float: right;
    margin: 40px 0 20px;
    padding: 0 12px;
    width: 140px;
  }
  .subheader .cta .cta-row,
  .subheader .cta .cta-row h3 {
    text-align: right;
  }
  .subheader .summary {
    align-content: flex-start;
    float: left;
    justify-content: flex-start;
    margin: 47px 0 0;
    padding: 0;
    text-align: left;
    width: 50%;
  }
  .subheader .summary h2 {
    margin: 0 0 27px;
    text-align: left;
  }

  .row-top {
    display: inline-flex;
    justify-content: flex-start;
    max-width: 650px;
    width: auto;
  }

  .get-logo {
    padding: 0 80px 0 0;
    width: 196px;
  }

  .register-btn {
    margin: 10px 0 0 auto;
  }

  .content-wide {
    width: 59%;
  }

  /**
   * Sidebar
   */
  .sidebar {
    width: 330px;
  }
  .sidebar .speakers-list a,
  .sidebar .speakers-list a div,
  .sidebar .speakers-list img,
  .sidebar .organizers-list a,
  .sidebar .organizers-list a div,
  .sidebar .organizers-list img {
    width: 90px;
  }
  .sidebar .speakers-list a,
  .sidebar .organizers-list a {
    margin: 0 9px 16px;
  }
}
@media only screen and (min-width: 1200px) {
  #oho {
    margin: 0 auto;
    width: 1000px;
  }

  .subheader {
    height: 272px;
  }

  .row-top {
    max-width: 800px;
  }

  .cta-row {
    margin: 0 0 20px;
  }
  .cta-row:last-of-type {
    margin: 0;
  }

  .content-wide {
    box-sizing: border-box;
    padding: 25px 40px 20px 40px;
    width: 65.5%;
  }

  .sidebar {
    padding: 30px 0 20px;
    width: 33%;
  }

  .speakers {
    margin: 0 0 20px;
  }

  .sidebar .speakers-list a,
  .sidebar .speakers-list a div,
  .sidebar .speakers-list img,
  .sidebar .organizers-list a,
  .sidebar .organizers-list a div,
  .sidebar .organizers-list img {
    width: 90px;
  }
  .sidebar .speakers-list a,
  .sidebar .organizers-list a {
    margin: 0 9px 16px;
  }
}
