/** 
 * Variables (placing these before our @import statements for global scope)
 **/
/**
 * Theme Test
 */
.theme-test > div > div {
  width: 100%;
  height: 100px; }

.primary {
  background-color: #ffb618; }

.primary-lightest {
  background-color: #fff8e8; }

.primary-lighter {
  background-color: #ffe2a3; }

.primary-light {
  background-color: #ffd069; }

.primary-dark {
  background-color: #a67610; }

.primary-darker {
  background-color: #66490a; }

.primary-darkest {
  background-color: #1a1202; }

.secondary {
  background-color: #00aadd; }

.secondary-lightest {
  background-color: #e6f7fc; }

.secondary-lighter {
  background-color: #99ddf1; }

.secondary-light {
  background-color: #59c8e9; }

.secondary-dark {
  background-color: #006f90; }

.secondary-darker {
  background-color: #004458; }

.secondary-darkest {
  background-color: #001116; }

.tertiary {
  background-color: #3a2422; }

.tertiary-lightest {
  background-color: #ebe9e9; }

.tertiary-lighter {
  background-color: #b0a7a7; }

.tertiary-light {
  background-color: #7f716f; }

.tertiary-dark {
  background-color: #261716; }

.tertiary-darker {
  background-color: #170e0e; }

.tertiary-darkest {
  background-color: #060403; }

.neutral {
  background-color: #222222; }

.neutral-lightest {
  background-color: #e9e9e9; }

.neutral-lighter {
  background-color: #a7a7a7; }

.neutral-light {
  background-color: #6f6f6f; }

.neutral-dark {
  background-color: #161616; }

.neutral-darker {
  background-color: #0e0e0e; }

.neutral-darkest {
  background-color: #030303; }

/** 
 * Reusables 
 **/
form:after, .row:after, .masthead:after, .masthead--nav--primary:after, .footer:after, .main:after, .content:after, .panelists:after, .panelists--panelist-header:after {
  content: "";
  display: table;
  clear: both; }

/**
 * Button Wipe Animation
 */
@-webkit-keyframes buttonWipeIn {
  from {
    background-position-x: 100%; }
  to {
    background-position-x: 0%; } }

@-moz-keyframes buttonWipeIn {
  from {
    background-position-x: 100%; }
  to {
    background-position-x: 0%; } }

@-o-keyframes buttonWipeIn {
  from {
    background-position-x: 100%; }
  to {
    background-position-x: 0%; } }

@keyframes buttonWipeIn {
  from {
    background-position-x: 100%; }
  to {
    background-position-x: 0%; } }

@-webkit-keyframes buttonWipeOut {
  from {
    background-position-x: 0%; }
  to {
    background-position-x: 100%; } }

@-moz-keyframes buttonWipeOut {
  from {
    background-position-x: 0%; }
  to {
    background-position-x: 100%; } }

@-o-keyframes buttonWipeOut {
  from {
    background-position-x: 0%; }
  to {
    background-position-x: 100%; } }

@keyframes buttonWipeOut {
  from {
    background-position-x: 0%; }
  to {
    background-position-x: 100%; } }

/**
 * Button Drop Animation
 */
@-webkit-keyframes buttonDrop {
  0% {
    width: 0;
    height: 0; }
  60% {
    width: 200%;
    height: 200%; }
  100% {
    opacity: 0; } }

@-moz-keyframes buttonDrop {
  0% {
    width: 0;
    height: 0; }
  60% {
    width: 200%;
    height: 200%; }
  100% {
    opacity: 0; } }

@-o-keyframes buttonDrop {
  0% {
    width: 0;
    height: 0; }
  60% {
    width: 200%;
    height: 200%; }
  100% {
    opacity: 0; } }

@keyframes buttonDrop {
  0% {
    width: 0;
    height: 0; }
  60% {
    width: 200%;
    height: 200%; }
  100% {
    opacity: 0; } }

.button-drop {
  position: relative; }

.button-drop--drop {
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-animation: buttonDrop 0.25s 1 normal backwards;
  -moz-animation: buttonDrop 0.25s 1 normal backwards;
  -o-animation: buttonDrop 0.25s 1 normal backwards;
  animation: buttonDrop 0.25s 1 normal backwards; }

/**
 * Makes a grid with the passed number of columns
 * @param  {int} $cols is the number of columns in each row
 */
/**
 * Arranges children of the current element to have an interlocking stacked appearance
 * @param  {int} $cols is the number of columns in odd numbered rows, even rows will have $cols - 1 columns (must be greater than 1)
 */
.radial {
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555A5F), color-stop(100%, #000));
  background: -webkit-radial-gradient(center, circle cover, #555A5F 0%, #000 100%);
  background: -moz-radial-gradient(center, circle cover, #555A5F 0%, #000 100%);
  background: -o-radial-gradient(center, circle cover, #555A5F 0%, #000 100%);
  background: radial-gradient(center, circle cover, #555A5F 0%, #000 100%);
  background-color: #555A5F;
  width: 100%;
  height: 100%;
  position: absolute; }

.with-black-arrow {
  background-image: url(/img/arrow-vertical-black.png);
  background-repeat: no-repeat;
  background-position: center top; }

.with-white-arrow {
  background-image: url(/img/arrow-vertical-white.png);
  background-repeat: no-repeat;
  background-position: center top; }

/**
 * Hacks...
 */
/**
 * Avatars...
 */
.search--preview--item--avatar, .panelists-browse--panelist--avatar {
  width: 200px;
  display: block;
  height: 200px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  overflow: hidden !important;
  -webkit-box-shadow: 0 0 7px #000;
  -moz-box-shadow: 0 0 7px #000;
  box-shadow: 0 0 7px #000;
  border: 7px solid #fff;
  /*&:after {
		//@include transition(opacity 0.25s ease-in-out);
		@include rounded(50%);
		//content: " ";
		//background-color: #333;
		//opacity: 0.25;
		position: absolute;
		top: 0; left: 0;
		bottom: 0; right: 0;
		@include breakpoint(small) { display: none; }
		@include breakpoint(tiny)  { display: none; }
	}*/ }
  .search.search--preview--item--avatar, .search.panelists-browse--panelist--avatar {
    width: 100%;
    height: auto;
    padding: 100% 0 0 0; }
  .search--preview--item--avatar:hover, .panelists-browse--panelist--avatar:hover {
    z-index: 2; }
    .search--preview--item--avatar:hover .avatar--name, .panelists-browse--panelist--avatar:hover .avatar--name {
      top: 75%;
      padding: 7% 0;
      cursor: pointer; }
  .search--preview--item--avatar .avatar--img, .panelists-browse--panelist--avatar .avatar--img {
    display: block;
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ddd;
    outline: 0;
    border: 0; }
    .search .search--preview--item--avatar .avatar--img, .search .panelists-browse--panelist--avatar .avatar--img {
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%; }
    .search--preview--item--avatar .avatar--img:active, .panelists-browse--panelist--avatar .avatar--img:active {
      outline: 0;
      border: 0; }
  .search--preview--item--avatar .avatar--name, .panelists-browse--panelist--avatar .avatar--name {
    -webkit-transition-duration: .25s;
       -moz-transition-duration: .25s;
         -o-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-property: top, padding;
    -o-transition-property: top, padding;
    -moz-transition-property: top, padding;
    transition-property: top, padding;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.75, 1);
       -moz-transition-timing-function: cubic-bezier(0, 0, 0.75, 1);
         -o-transition-timing-function: cubic-bezier(0, 0, 0.75, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.75, 1);
    background-color: black;
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 47% 0;
    font-size: 16px;
    font-size: 1rem;
    height: auto;
    display/***/: block	;
    filter/***/: alpha(opacity=70)	; }
  @media \0screen {
    .search--preview--item--avatar .avatar--img, .panelists-browse--panelist--avatar .avatar--img {
      left: 0; } }

/**
 * http://onepcssgrid.mattimling.com/
 */
.container {
  margin: 0 auto;
  padding: 0; }

.onerow {
  clear: both;
  padding: 0 10px; }

/* *********************************************************************************************************************
 * Common columns definitions
 */
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
  float: left;
  margin: 0 3% 0 0; }

.col1.last, .col2.last, .col3.last, .col4.last, .col5.last, .col6.last, .col7.last, .col8.last, .col9.last, .col10.last, .col11.last, .col12 {
  margin: 0; }

.col1 {
  width: 5.5%; }

.col2 {
  width: 14%; }

.col3 {
  width: 22.5%; }

.col4 {
  width: 31%; }

.col5 {
  width: 39.5%; }

.col6 {
  width: 48%; }

.col7 {
  width: 56.5%; }

.col8 {
  width: 65%; }

.col9 {
  width: 73.5%; }

.col10 {
  width: 82%; }

.col11 {
  width: 90.5%; }

.col12 {
  width: 99%;
  margin: 0; }

.col1 img, .col2 img, .col3 img, .col4 img, .col5 img, .col6 img, .col7 img, .col8 img, .col9 img, .col10 img, .col11 img, .col12 img {
  width: 100%;
  height: auto;
  display: block; }

/* *********************************************************************************************************************
 * Disable padding left/right 10px if I'm 1024 or gibber - correct percentage math
 */
/*
@media all and (min-width: 960px) {
	.onepcssgrid-1000 {
		max-width: 1000px;
	}

	.onepcssgrid-1000 .onerow {
		padding: 0;
	}
}
*/
/* *********************************************************************************************************************
 * Small devices
 */
@media (max-width: 650px) {
  .col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11 {
    float: none;
    width: 99%; } }

/** 
 * Reset 
 **/
@-ms-viewport {
  zoom: 1.0;
  width: extend-to-zoom; }
@-o-viewport {
  zoom: 1.0;
  width: extend-to-zoom; }
@viewport {
  zoom: 1.0;
  width: extend-to-zoom; }

* {
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility; }

body {
  font-family: "Fira Sans", "Helvetica", Verdana, sans-serif;
  font-weight: normal;
  background: #000;
  font-weight: normal;
  font-size: 100%;
  overflow-x: hidden; }

ins {
  text-decoration: none; }

a {
  text-decoration: none;
  cursor: pointer; }

iframe {
  display: block;
  margin: 0 auto 24px;
  max-width: 100%; }

form {
  font-size: 20px;
  font-size: 1.25rem; }
  form > label {
    display: block;
    padding: 16px 0 4px;
    padding: 1rem 0 .25rem;
    font-weight: 500;
    line-height: 1; }
    form > label + ul {
      list-style-type: none;
      margin: 0 !important; }
  form fieldset {
    border: 0;
    margin: 0;
    padding: 0; }
    form fieldset ul {
      list-style-type: none;
      margin: 0 !important; }
  form > input,
  form > textarea {
    padding: 8px;
    padding: .5rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
    width: 90%;
    font-size: 24px;
    font-size: 1.5rem; }
  form input[type=checkbox] {
    width: initial;
    margin-right: 8px;
    margin-right: .5rem; }

img[style*="float: left"] {
  margin: 0 16px 16px 0;
  margin: 0 16px 1rem 0; }

img[style*="float: right"] {
  margin: 0 0 16px 16px;
  margin: 0 0 1rem 1rem; }

img {
  border: 0; }

/**
 * Simple Grid System -- needs polyfill
 * Containers should clear the grid using @extend %clearfix;
 **/
/*.row {
    @extend %clearfix;
    display: block;
    width: 100%;
}

$gutter: 0;

[class*='col-'] {
	display: block; 
    float: left;
    padding: $gutter;
}

@media only screen and (max-width: 40em) {
	[class*='col-'] {
		width: 100%; 
		padding: 2rem;
	}
}
@media only screen and (min-width: 40em) {
    .col-1 {
        width: 8.33333%;
    }
    .col-2 {
        width: 16.66667%;
    }
    .col-3 {
        width: 25%;
    }
    .col-4 {
        width: 33.33333%;
    }
    .col-5 {
        width: 41.66667%;
    }
    .col-6 {
        width: 50%;
    }
    .col-7 {
        width: 58.33333%;
    }
    .col-8 {
        width: 66.66667%;
    }
    .col-9 {
        width: 75%;
    }
    .col-10 {
        width: 83.33333%;
    }
    .col-11 {
        width: 91.66667%;
    }
    .col-12 {
        width: 100%;
    }
}*/
.container {
  margin: 0 auto; }

.onerow {
  clear: both;
  padding: 0 10px; }

/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/** 
 * JUST THE GRID 
 * THE REST OF THE BOOTSTRAP FRAMEWORK HAS BEEN DISCARDED
 **/
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

/*.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}*/
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  max-width: 1200px;
  margin: 0 auto; }

.column {
  padding: 32px;
  padding: 2rem; }

.column img {
  width: auto;
  max-width: 100%;
  height: auto; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0; } }

html {
  background-color: #150d0c; }

/**
 * Header 
 **/
.masthead {
  display: block;
  width: 100%; }
  @media (max-width: 651px) {
    .masthead {
      overflow: hidden; } }

.masthead--wrapper {
  max-width: 1200px;
  margin: 0 auto; }

.masthead--logo {
  z-index: 100;
  display: block;
  width: 50%;
  float: left;
  padding: 0; }
  @media (min-width: 651px) and (max-width: 960px) {
    .masthead--logo {
      width: 50%;
      float: none;
      margin: 0 auto; } }
  @media (max-width: 650px) {
    .masthead--logo {
      width: 70%;
      float: none;
      margin: 8px auto;
      margin: 0.5rem auto; } }

.masthead--logo--link {
  display: block;
  color: #fff; }

.masthead--logo-image {
  display: block;
  width: 450px;
  width: 380px;
  max-width: 100%;
  /*height: auto;*/
  max-height: 150px;
  margin: 0;
  padding: 20px 8px 0; }
  @media (min-width: 651px) and (max-width: 960px) {
    .masthead--logo-image {
      width: auto;
      margin: 0 auto; } }
  @media (max-width: 650px) {
    .masthead--logo-image {
      height: 68px;
      width: auto;
      margin: 0 auto; } }

/**
 * Primary Navigation
 **/
.masthead--nav {
  clear: both;
  display: block;
  text-align: left;
  text-transform: uppercase;
  /*&:before {
        content: '';
        display: block;
        position: absolute;
        top: 0; bottom: 0; left: 0; right: 0;
        border-top: 1px solid #101010;
        border-bottom: 1px solid #101010;
    }*/ }

.masthead--nav--primary {
  max-width: 1200px;
  margin: 0 auto -1px;
  font-size: 24px;
  font-size: 1.5rem;
  font-size: 23.2px;
  font-size: 1.45rem;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase; }
  @media (min-width: 651px) and (max-width: 960px) {
    .masthead--nav--primary {
      background: none !important;
      text-align: center; } }

.masthead--nav--primary-element {
  display: block;
  float: left; }
  .masthead--nav--primary-element .has-dropdown--open {
    display: none; }
  .masthead--nav--primary-element.hover > .masthead--nav--primary-link,
  .masthead--nav--primary-element:hover > .masthead--nav--primary-link {
    color: #fff; }
  .masthead--nav--primary-element:last-child {
    float: right;
    border: 0; }

.masthead--nav--primary-link {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-family: "Oswald", sans-serif;
  display: block;
  padding: 0 24px;
  padding: 0 1.5rem;
  line-height: 2.25;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  color: #ccc; }

.masthead--nav--primary-link > .fa-search {
  top: -2px;
  margin-bottom: -2px; }

.masthead--nav--primary-element.active > .masthead--nav--primary-link {
  color: #fff;
  border-bottom: 6px solid #FFBF00; }

.masthead--nav--dropdown {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  max-height: 0;
  overflow: hidden;
  z-index: 20;
  position: absolute;
  top: 100%;
  height: auto;
  width: 100%;
  min-width: 300px;
  padding: 0;
  text-align: left;
  background: #f5f5f5; }
  .masthead--nav--primary-element:hover .masthead--nav--dropdown {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: block;
    max-height: 1000px;
    overflow: visible; }
    @media (max-width: 650px) {
      .masthead--nav--primary-element:hover .masthead--nav--dropdown {
        overflow: hidden; } }

.masthead--nav--dropdown-element,
.masthead--nav--dropdown2-element {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  list-style: none;
  width: 300px;
  background: #F5F5F5; }
  .masthead--nav--dropdown-element:hover,
  .masthead--nav--dropdown2-element:hover {
    background: #FFBF00; }
  @media (max-width: 650px) {
    .masthead--nav--dropdown-element,
    .masthead--nav--dropdown2-element {
      width: 100%; } }

.masthead--nav--dropdown2-element {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  list-style: none;
  width: 300px;
  background: #E6E6E6; }
  .masthead--nav--dropdown2-element:hover {
    background: #E5AC00; }
  @media (max-width: 650px) {
    .masthead--nav--dropdown2-element {
      width: 100%; } }

.masthead--nav--dropdown-element:first-of-type {
  -webkit-border-top-left-radius: 4px;
  -moz-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
       border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
       border-top-right-radius: 4px; }
  @media (max-width: 650px) {
    .masthead--nav--dropdown-element:first-of-type {
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px; } }

.masthead--nav--dropdown-element:last-of-type {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
       border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
       border-bottom-right-radius: 4px; }
  @media (max-width: 650px) {
    .masthead--nav--dropdown-element:last-of-type {
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px; } }

.masthead--nav--dropdown2-element:first-of-type {
  -webkit-border-top-right-radius: 4px;
  -moz-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
       border-top-right-radius: 4px; }
  @media (max-width: 650px) {
    .masthead--nav--dropdown2-element:first-of-type {
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px; } }

.masthead--nav--dropdown2-element:last-of-type {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
       border-bottom-right-radius: 4px; }
  @media (max-width: 650px) {
    .masthead--nav--dropdown2-element:last-of-type {
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px; } }

.has-sub-nav--flyout.masthead--nav--dropdown-element.active {
  -webkit-border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-radius-topright: 0;
       border-top-right-radius: 0; }

.masthead--nav--dropdown-link,
.masthead--nav--dropdown2-link {
  -webkit-transition: background 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out;
  -o-transition: background 0.25s ease-in-out;
  transition: background 0.25s ease-in-out;
  display: block;
  width: 100%;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  color: #101010;
  font-size: 1rem; }

.max_none {
  max-height: none !important; }

/* Sub Nav Flyout */
.sub-nav--flyout {
  display: none;
  position: absolute;
  top: 0;
  z-index: 1;
  left: 100%;
  width: 250px;
  margin: 0 !important; }
  @media (max-width: 960px) {
    .sub-nav--flyout {
      position: relative;
      top: auto;
      left: auto;
      display: block !important;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
      filter: alpha(opacity=100) !important;
      -moz-opacity: 1 !important;
      -khtml-opacity: 1 !important;
      -webkit-opacity: 1 !important;
      opacity: 1 !important;
      width: 100%; } }

.has-sub-nav--flyout {
  position: relative; }

.has-sub-nav--flyout > a {
  padding-right: 1.5em; }

.has-sub-nav--flyout > a:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 23px;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0.22em;
  right: 0.5em;
  z-index: 1;
  cursor: pointer; }
  @media (max-width: 960px) {
    .has-sub-nav--flyout > a:after {
      content: "\f107"; } }

.active .sub-nav--flyout {
  display: block; }

/**
 * Secondary (Top) Navigation 
 **/
.masthead--nav--secondary {
  font-family: "Fira Sans", "Helvetica", Verdana, sans-serif;
  font-weight: normal;
  display: block;
  width: 50%;
  padding: 16px 4px 4px;
  padding: 1rem 0.5rem 0.5rem;
  float: right;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  color: #777; }

.masthead--nav--secondary-link {
  color: #A8A8A8; }
  .masthead--nav--secondary-link:hover {
    text-decoration: underline; }

.masthead--nav--secondary-dropdown-link {
  display: block;
  color: #808080;
  line-height: 160%;
  padding: 8px;
  border-bottom: 1px solid #333; }
  .masthead--nav--secondary-dropdown-link:last-of-type {
    border-bottom: 0; }
  .masthead--nav--secondary-dropdown-link:hover {
    text-decoration: underline; }
  @media (max-width: 650px) {
    .masthead--nav--secondary-dropdown-link {
      display: block;
      text-align: center;
      padding: 0;
      border-bottom: 0;
      color: #A8A8A8; }
      .masthead--nav--secondary-dropdown-link:first-of-type {
        margin-bottom: 16px !important; } }

@media (max-width: 650px) {
  .masthead--nav--secondary-link,
  .masthead--nav--secondary-dropdown-link {
    line-height: 120%;
    display: block;
    margin: 0.5rem auto;
    margin: 8px auto !important; } }

.masthead--nav--secondary-element.has-dropdown {
  display: inline-block; }
  @media (max-width: 650px) {
    .masthead--nav--secondary-element.has-dropdown {
      display: block; } }

@media (max-width: 650px) {
  .masthead--nav--secondary-link.has-dropdown {
    display: none; } }

.masthead--nav--secondary-dropdown {
  display: block;
  position: absolute;
  min-width: 160px;
  border: 1px solid #333;
  background: #191919;
  text-align: left;
  z-index: 1000;
  margin-top: -4px; }

.masthead--nav--secondary-element.has-dropdown .masthead--nav--secondary-dropdown {
  max-height: 0;
  overflow: hidden;
  border: 0; }
  @media (max-width: 650px) {
    .masthead--nav--secondary-element.has-dropdown .masthead--nav--secondary-dropdown {
      position: relative;
      display: block !important;
      width: auto;
      max-width: 100%;
      min-width: auto;
      margin: 0 auto;
      padding: 0;
      border: 0;
      background: none;
      text-align: center;
      max-height: none; } }

.masthead--nav--secondary-element.has-dropdown.hover .masthead--nav--secondary-dropdown {
  max-height: none !important;
  border: 1px solid #333; }
  @media (max-width: 650px) {
    .masthead--nav--secondary-element.has-dropdown.hover .masthead--nav--secondary-dropdown {
      border: 0; } }

.masthead--nav--secondary-link--social {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: inline-block;
  width: 25px;
  height: 25px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 25px; }
  .masthead--nav--secondary-link--social:hover {
    background-color: #FFBF00;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%; }

.masthead--nav--secondary-link--donate {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
  text-align: center;
  color: #60C66E;
  border: 1px solid #60C66E; }
  .masthead--nav--secondary-link--donate:hover {
    background: #60C66E;
    color: #fff; }
  @media (max-width: 650px) {
    .masthead--nav--secondary-link--donate {
      margin: 1rem auto;
      margin: 16px auto !important; } }

/**
 * Mobile Nav
 */
.mobile-controls {
  display: none;
  float: left;
  padding: 16px;
  padding: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  width: 100%;
  background-color: #000;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center; }
  @media (max-width: 650px) {
    .mobile-controls {
      display: block; } }

.mobile-controls--menu,
.mobile-controls--search {
  display: inline-block;
  margin: 0 16px;
  margin: 0 1rem; }
  .mobile-controls--menu:hover,
  .mobile-controls--search:hover {
    cursor: pointer; }

@media (min-width: 651px) and (max-width: 960px) {
  .masthead--nav {
    background: none;
    padding: 16px 32px 32px;
    padding: 1em 2em 2em; }
  .masthead--nav--primary-element {
    display: inline-block;
    background: #000;
    margin: 6px;
    float: none !important;
    position: relative; }
    .masthead--nav--primary-element:before {
      position: absolute;
      top: 0;
      right: 16px;
      right: 1rem; }
  .masthead--nav--primary-link:hover {
    background: #ffb618 !important;
    color: #030303 !important; }
  .masthead--nav--secondary {
    width: 100%;
    float: none;
    text-align: center; } }

@media (max-width: 650px) {
  .masthead {
    max-height: 146px;
    clear: both;
    margin-bottom: 16px;
    margin-bottom: 1rem;
    -webkit-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out; }
    .masthead.open {
      max-height: 1500px; }
  .masthead--nav {
    width: 100%;
    padding: 8px;
    padding: 0.5em; }
    .masthead.open .masthead--nav {
      z-index: 100; }
  .masthead--nav--primary-element {
    float: none;
    text-align: center;
    margin: 6px; }
    .masthead--nav--primary-element:hover .masthead--nav--dropdown {
      max-height: 0;
      padding: 0; }
  .masthead--nav--dropdown {
    overflow: hidden;
    text-align: center;
    display: block;
    position: static; }
    .masthead--nav--dropdown.open {
      padding: 0.5rem 0 !important;
      max-height: 500px !important; }
  .masthead--nav--primary-link {
    background: none !important;
    color: #fff !important; }
    .masthead--nav--primary-link:hover {
      background: none !important;
      color: #fff !important; }
  .has-dropdown--open {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    padding: 1.25rem;
    color: #fff; }
    .has-dropdown--open:hover {
      cursor: pointer;
      color: #6f6f6f; }
  .has-dropdown.open {
    background-color: #ffb618 !important; }
  #mastheadNavSearch {
    display: none; }
  .masthead--nav--secondary {
    width: 100%;
    background-color: #2a2a2a;
    text-align: center;
    padding: 24px 8px;
    padding: 1.5rem 0.5rem; }
  .masthead--nav--secondary-link,
  .masthead--nav--secondary-link--donate {
    display: block;
    width: 50%;
    margin: 4px auto;
    margin: 0.25rem auto; }
  .masthead--nav--secondary--separator {
    display: none; } }

/**
 * Slider layout
 */
.slider-center {
  width: 65% !important;
  min-width: 280px !important;
  max-width: 825px !important; }

/**
 * Flexslider Controls
 */
.midnight .flex-control-paging li a {
  background: #999;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3); }

.midnight .flex-control-paging li a.flex-active {
  background: #fff;
  background: rgba(255, 255, 255, 0.9); }

.midnight .flex-control-paging li a:hover {
  background: #ccc;
  background: rgba(255, 255, 255, 0.7); }

.midnight .flex-pauseplay a {
  color: #fff; }

/**
 * Signup Lightbox
 */
.signup--lightbox {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #555;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000; }
  .signup--lightbox.open {
    display: block; }

.signup {
  position: relative;
  display: table;
  width: 80%;
  height: auto;
  margin: 64px auto;
  margin: 4rem auto;
  background-color: #A020C7;
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #A020C7), color-stop(100%, #7d199b));
  background: -webkit-radial-gradient(center, circle cover, #A020C7 0%, #7d199b 100%);
  background: -moz-radial-gradient(center, circle cover, #A020C7 0%, #7d199b 100%);
  background: -o-radial-gradient(center, circle cover, #A020C7 0%, #7d199b 100%);
  background: radial-gradient(center, circle cover, #A020C7 0%, #7d199b 100%);
  background-color: #A020C7; }
  @media (max-width: 650px) {
    .signup {
      width: 100%;
      margin: 0;
      overflow: scroll; } }

.signup--close {
  position: absolute;
  top: 4px;
  right: 8px;
  color: #fff;
  z-index: 1;
  display: block;
  opacity: 0.5; }

.signup--img {
  display: table-cell;
  float: left;
  width: 40%; }

.signup--img-img {
  display: block;
  width: 100%; }

.signup--text {
  display: table-cell;
  float: left;
  width: 60%;
  color: #fff;
  height: 100%; }

.signup--text-h1 {
  padding: 64px 32px 16px;
  padding: 4rem 2rem 1rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase; }

.signup--text-p {
  padding: 16px 32px;
  padding: 1rem 2rem; }

.signup--controls {
  display: table-cell;
  float: left;
  width: 100%;
  padding: 24px 0 12px 5.5%;
  padding: 1.5rem 0 0.75rem 5.5%;
  background-color: #fff; }

.signup--controls-input {
  font-size: 16px;
  font-size: 1rem;
  padding: 8px;
  padding: 0.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  color: #A020C7;
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  border: 1px #d49be6 solid;
  -webkit-box-shadow: inset 0 0 6px -1px #A020C7;
     -moz-box-shadow: inset 0 0 6px -1px #A020C7;
          box-shadow: inset 0 0 6px -1px #A020C7; }

.signup--controls-label {
  float: left;
  width: 35%;
  margin: 0 1%;
  font-size: 14px;
  font-size: 0.85rem;
  color: #d49be6; }

.signup--controls-submit {
  width: 15%;
  margin: 16px 1% 0;
  margin: 1rem 1% 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-size: 1rem;
  padding: 8px;
  padding: 0.5rem;
  border: 1px #A020C7 solid;
  color: #fff;
  background: #A020C7;
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px; }

@media (max-width: 650px) {
  .signup--img {
    width: 100%;
    height: 16rem; }
  .signup--text {
    width: 100%;
    margin-top: -16rem; }
  .signup--controls {
    padding: 1.5rem 5.5%; }
  .signup--controls-label,
  .signup--controls-submit {
    width: 100%;
    margin: 0.5rem 0; } }

/**
 * Search
 */
.search--panel--style-toggle {
  position: absolute;
  bottom: 16px;
  bottom: 1rem;
  right: 16px;
  right: 1rem;
  padding: 3px 8px;
  padding: 0.2em 0.5em;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  background-color: #888;
  color: #fff;
  text-decoration: none; }

.search--panel {
  position: fixed;
  overflow: hidden;
  z-index: -1;
  text-transform: none;
  overflow-y: scroll;
  display: inline-block;
  background-color: #222;
  background-color: rgba(32, 32, 32, 0.93);
  color: #eee;
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
     -moz-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease; }
  .search--panel.open {
    visibility: visible;
    opacity: 1;
    z-index: 1000; }

@-webkit-keyframes searchOpen {
  0% {
    -webkit-transform: translateX(120%);
    -moz-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%); }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@-moz-keyframes searchOpen {
  0% {
    -webkit-transform: translateX(120%);
    -moz-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%); }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@-o-keyframes searchOpen {
  0% {
    -webkit-transform: translateX(120%);
    -moz-transform: translateX(120%);
    -ms-transform: translateX(120%);
    -o-transform: translateX(120%);
       transform: translateX(120%); }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0); } }

@keyframes searchOpen {
  0% {
    -webkit-transform: translateX(120%);
    -moz-transform: translateX(120%);
    -ms-transform: translateX(120%);
    -o-transform: translateX(120%);
       transform: translateX(120%); }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0); } }

.search--panel-wrapper {
  width: 80%;
  margin: 0 auto;
  -webkit-transform: translateX(120%);
  -moz-transform: translateX(120%);
  -ms-transform: translateX(120%);
  -o-transform: translateX(120%);
     transform: translateX(120%); }
  .open .search--panel-wrapper {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0); }

.search--panel--close {
  position: absolute;
  top: 16px;
  top: 1rem;
  right: 16px;
  right: 1rem;
  font-size: 16px;
  font-size: 1rem;
  color: #999;
  line-height: 0; }
  .search--panel--close:hover {
    color: #fff; }

.search--input-wrapper {
  width: 100%;
  height: 96px;
  height: 6rem;
  position: relative;
  margin: 64px 0 0;
  margin: 4rem 0 0; }

.search--input,
.search--input-label {
  font-family: "Oswald", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-width: 0;
  background: none;
  outline: none;
  color: #fff;
  font-size: 0;
  -webkit-transition: font-size 0.5s ease-in-out;
  -o-transition: font-size 0.5s ease-in-out;
  -moz-transition: font-size 0.5s ease-in-out;
  transition: font-size 0.5s ease-in-out; }
  .search--input::-ms-clear,
  .search--input-label::-ms-clear {
    display: none; }
  .open .search--input, .open
  .search--input-label {
    font-size: 64px;
    font-size: 4rem; }
    @media (min-width: 651px) and (max-width: 960px) {
      .open .search--input, .open
      .search--input-label {
        font-size: 3rem; } }
    @media (max-width: 650px) {
      .open .search--input, .open
      .search--input-label {
        font-size: 1.5rem; } }

.search--input-label {
  color: #777; }

.search--go {
  position: absolute;
  top: 8px;
  top: 0.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  opacity: 0.5;
  outline: none;
  font-size: 5rem !important; }
  @media (min-width: 651px) and (max-width: 960px) {
    .search--go {
      font-size: 3.5rem !important; } }
  @media (max-width: 650px) {
    .search--go {
      font-size: 2rem !important; } }
  .search--go:hover {
    opacity: 1;
    cursor: pointer; }

.search--results {
  font-family: "Fira Sans", "Helvetica", Verdana, sans-serif;
  font-weight: normal;
  margin: 0 0 48px;
  margin: 0 0 3rem;
  -webkit-transition: all 0.2s cubic-bezier(0.1, 0.95, 1, 1);
  -moz-transition: all 0.2s cubic-bezier(0.1, 0.95, 1, 1);
  -o-transition: all 0.2s cubic-bezier(0.1, 0.95, 1, 1);
  transition: all 0.2s cubic-bezier(0.1, 0.95, 1, 1); }

@-webkit-keyframes preloader {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }

@-moz-keyframes preloader {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }

@-o-keyframes preloader {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }

@keyframes preloader {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }

.search--results--preloader {
  visibility: hidden;
  color: #fff;
  width: 100%;
  margin: 80px 0 16px;
  margin: 5rem 0 1rem;
  float: left; }
  .searching .search--results--preloader {
    visibility: visible;
    -webkit-animation: preloader 0.5s infinite;
    -moz-animation: preloader 0.5s infinite;
    -o-animation: preloader 0.5s infinite;
    animation: preloader 0.5s infinite; }

.search--preview--column-title {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-weight: normal;
  color: #777;
  text-transform: uppercase; }

.search--preview--list {
  list-style: none outside none; }

.search--preview--item {
  display: inline-block;
  clear: none;
  margin: 0 1.5% 0 1.5%;
  margin: 0 1.5% 16px 1.5% \9;
  width: 47%; }
  .search--preview--item:nth-of-type(3n-0) {
    clear: both;
    margin-left: 26.5%; }
  .search--preview--item:nth-of-type(3n+4) {
    clear: both; }
  @media (min-width: 651px) and (max-width: 960px) {
    .search--preview--item {
      width: 47%; }
      .search--preview--item:nth-of-type(3n-0) {
        clear: none;
        margin-left: 1.5%; }
      .search--preview--item:nth-of-type(3n+4) {
        clear: none; }
      .search--preview--item:nth-of-type(3n-0) {
        clear: both;
        margin-left: 26.5%; }
      .search--preview--item:nth-of-type(3n+4) {
        clear: both; } }
  @media (max-width: 650px) {
    .search--preview--item {
      width: 47%; }
      .search--preview--item:nth-of-type(3n-0), .search--preview--item:nth-of-type(3n-0) {
        clear: none;
        margin-left: 1.5%; }
      .search--preview--item:nth-of-type(3n+4), .search--preview--item:nth-of-type(3n+4) {
        clear: none; }
      .search--preview--item:nth-of-type(3n-0) {
        clear: both;
        margin-left: 26.5%; }
      .search--preview--item:nth-of-type(3n+4) {
        clear: both; } }
  .compact > .search--preview--item {
    display: inline-block;
    clear: none;
    margin: 0 1.5% 0 1.5%;
    margin: 0 1.5% 16px 1.5% \9;
    width: 47%; }
    .compact > .search--preview--item:nth-of-type(3n-0) {
      clear: both;
      margin-left: 26.5%; }
    .compact > .search--preview--item:nth-of-type(3n+4) {
      clear: both; }
    @media (min-width: 651px) and (max-width: 960px) {
      .compact > .search--preview--item {
        width: 47%; }
        .compact > .search--preview--item:nth-of-type(3n-0) {
          clear: none;
          margin-left: 1.5%; }
        .compact > .search--preview--item:nth-of-type(3n+4) {
          clear: none; }
        .compact > .search--preview--item:nth-of-type(3n-0) {
          clear: both;
          margin-left: 26.5%; }
        .compact > .search--preview--item:nth-of-type(3n+4) {
          clear: both; } }
    @media (max-width: 650px) {
      .compact > .search--preview--item {
        width: 47%; }
        .compact > .search--preview--item:nth-of-type(3n-0), .compact > .search--preview--item:nth-of-type(3n-0) {
          clear: none;
          margin-left: 1.5%; }
        .compact > .search--preview--item:nth-of-type(3n+4), .compact > .search--preview--item:nth-of-type(3n+4) {
          clear: none; }
        .compact > .search--preview--item:nth-of-type(3n-0) {
          clear: both;
          margin-left: 26.5%; }
        .compact > .search--preview--item:nth-of-type(3n+4) {
          clear: both; } }

.search--preview--item-event {
  display: block;
  width: 100% !important;
  border-color: #555 !important;
  color: #ccc;
  padding: 16px 0 32px;
  padding: 1rem 0 2rem; }
  .search--preview--item-event:hover {
    border-color: #ffb618 !important; }

.search--preview--item-event--title {
  color: #ffb618;
  font-weight: normal; }

.search--preview--item-event--descr {
  font-family: "Fira Sans", "Helvetica", Verdana, sans-serif;
  font-weight: normal;
  color: #eee; }

.search--more {
  display: block;
  margin: 1rem 0;
  color: #fff;
  text-align: center; }
  .search--more:hover {
    text-decoration: underline; }

/**
 * List with 2 columns
 */
.list-2-cols > li,
.list-2-cols > ul > li {
  list-style: none outside none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 48%;
  margin: 16px 1%;
  margin: 1rem 1%;
  float: left; }
  .list-2-cols > li:nth-child(2n+3),
  .list-2-cols > ul > li:nth-child(2n+3) {
    clear: both; }

@media (max-width: 650px) {
  .list-2-cols > li,
  .list-2-cols > ul > li {
    width: 98%; } }

/** 
 * Footer 
 **/
.footer {
  clear: both;
  padding: 64px;
  padding: 4rem;
  background: #150d0c;
  border-top: 1px solid #35211f;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2; }
  .footer a {
    color: #fff; }

@media (min-width: 1025px) and (max-width: 1250px) {
  .footer--address,
  .footer--contact-methods {
    width: 21%; } }

.footer--nav-list {
  list-style: none; }
  @media (min-width: 1025px) and (max-width: 1250px) {
    .footer--nav-list {
      width: 10%; } }
  @media (min-width: 1025px) and (max-width: 1250px) {
    .footer--nav-list:first-of-type {
      width: 15%; } }

.footer--nav-link {
  color: #fff;
  text-decoration: underline; }

@media (min-width: 1025px) and (max-width: 1250px) {
  .footer--non-profit {
    width: 23%; } }

.footer--non-profit > a {
  color: #fff;
  text-decoration: underline;
  word-wrap: none;
  white-space: nowrap; }

@media (min-width: 651px) and (max-width: 960px) {
  .footer--address,
  .footer--contact-methods {
    line-height: 1.4;
    width: 50%;
    margin: 0 0 32px !important;
    float: left; } }

@media (max-width: 650px) {
  .footer--address,
  .footer--contact-methods {
    line-height: 1.4; } }

@media (min-width: 651px) and (max-width: 960px) {
  .footer--address {
    text-align: left; } }

@media (min-width: 651px) and (max-width: 960px) {
  .footer--contact-methods {
    text-align: right; } }

@media (max-width: 650px) {
  .footer--contact-methods {
    margin-bottom: 32px !important; } }

@media (min-width: 651px) and (max-width: 960px) {
  .footer--nav-list {
    width: 33.33333%;
    margin: 0 !important;
    float: left;
    text-align: center; } }

@media (min-width: 651px) and (max-width: 960px) {
  .footer--non-profit {
    width: 100%;
    float: left;
    text-align: center;
    line-height: 1.4;
    margin-top: 32px !important; } }

@media (max-width: 650px) {
  .footer--non-profit {
    line-height: 1.4;
    margin-top: 32px !important; } }

.footer--address,
.footer--contact-methods,
.footer--nav-list,
.footer--non-profit {
  padding: 8px;
  padding: 0.5rem; }
  @media (max-width: 650px) {
    .footer--address,
    .footer--contact-methods,
    .footer--nav-list,
    .footer--non-profit {
      width: 100%;
      float: none;
      clear: both;
      text-align: center; } }

/** 
 * Hero Element
 **/
.hero {
  display: block;
  padding: 32px;
  padding: 2rem; }
  @media (max-width: 650px) {
    .hero {
      padding: 0; } }

.hero--title {
  color: #FFBF00;
  text-transform: uppercase;
  display: block;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1; }
  @media (max-width: 650px) {
    .hero--title {
      font-size: 24px;
      font-size: 1.5rem;
      padding: 0 16px;
      padding: 0 1rem; } }

.hero--video {
  display: block;
  margin: 0 auto 32px;
  margin: 0 auto 2rem;
  border: 3px solid #000;
  max-width: 100%; }

.hero--ico-nav {
  padding: 16px 0 0;
  padding: 1rem 0 0;
  color: #fff;
  text-align: center; }

@-webkit-keyframes hold {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(8px) scaleY(0.9);
    -moz-transform: translateY(8px) scaleY(0.9);
    -ms-transform: translateY(8px) scaleY(0.9);
    transform: translateY(8px) scaleY(0.9); } }

@-moz-keyframes hold {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(8px) scaleY(0.9);
    -moz-transform: translateY(8px) scaleY(0.9);
    -ms-transform: translateY(8px) scaleY(0.9);
    transform: translateY(8px) scaleY(0.9); } }

@-o-keyframes hold {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); }
  100% {
    -webkit-transform: translateY(8px) scaleY(0.9);
    -moz-transform: translateY(8px) scaleY(0.9);
    -ms-transform: translateY(8px) scaleY(0.9);
    -o-transform: translateY(8px) scaleY(0.9);
       transform: translateY(8px) scaleY(0.9); } }

@keyframes hold {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); }
  100% {
    -webkit-transform: translateY(8px) scaleY(0.9);
    -moz-transform: translateY(8px) scaleY(0.9);
    -ms-transform: translateY(8px) scaleY(0.9);
    -o-transform: translateY(8px) scaleY(0.9);
       transform: translateY(8px) scaleY(0.9); } }

@-webkit-keyframes overshoot {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  12% {
    -webkit-transform: translateY(-8px) scaleY(0.93);
    -moz-transform: translateY(-8px) scaleY(0.93);
    -ms-transform: translateY(-8px) scaleY(0.93);
    transform: translateY(-8px) scaleY(0.93); }
  34% {
    -webkit-transform: translateY(8px) scaleY(1);
    -moz-transform: translateY(8px) scaleY(1);
    -ms-transform: translateY(8px) scaleY(1);
    transform: translateY(8px) scaleY(1); }
  56% {
    -webkit-transform: translateY(-2px) scaleY(0.95);
    -moz-transform: translateY(-2px) scaleY(0.95);
    -ms-transform: translateY(-2px) scaleY(0.95);
    transform: translateY(-2px) scaleY(0.95); }
  78% {
    -webkit-transform: translateY(4px) scaleY(1);
    -moz-transform: translateY(4px) scaleY(1);
    -ms-transform: translateY(4px) scaleY(1);
    transform: translateY(4px) scaleY(1); }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes overshoot {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  12% {
    -webkit-transform: translateY(-8px) scaleY(0.93);
    -moz-transform: translateY(-8px) scaleY(0.93);
    -ms-transform: translateY(-8px) scaleY(0.93);
    transform: translateY(-8px) scaleY(0.93); }
  34% {
    -webkit-transform: translateY(8px) scaleY(1);
    -moz-transform: translateY(8px) scaleY(1);
    -ms-transform: translateY(8px) scaleY(1);
    transform: translateY(8px) scaleY(1); }
  56% {
    -webkit-transform: translateY(-2px) scaleY(0.95);
    -moz-transform: translateY(-2px) scaleY(0.95);
    -ms-transform: translateY(-2px) scaleY(0.95);
    transform: translateY(-2px) scaleY(0.95); }
  78% {
    -webkit-transform: translateY(4px) scaleY(1);
    -moz-transform: translateY(4px) scaleY(1);
    -ms-transform: translateY(4px) scaleY(1);
    transform: translateY(4px) scaleY(1); }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@-o-keyframes overshoot {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); }
  12% {
    -webkit-transform: translateY(-8px) scaleY(0.93);
    -moz-transform: translateY(-8px) scaleY(0.93);
    -ms-transform: translateY(-8px) scaleY(0.93);
    -o-transform: translateY(-8px) scaleY(0.93);
       transform: translateY(-8px) scaleY(0.93); }
  34% {
    -webkit-transform: translateY(8px) scaleY(1);
    -moz-transform: translateY(8px) scaleY(1);
    -ms-transform: translateY(8px) scaleY(1);
    -o-transform: translateY(8px) scaleY(1);
       transform: translateY(8px) scaleY(1); }
  56% {
    -webkit-transform: translateY(-2px) scaleY(0.95);
    -moz-transform: translateY(-2px) scaleY(0.95);
    -ms-transform: translateY(-2px) scaleY(0.95);
    -o-transform: translateY(-2px) scaleY(0.95);
       transform: translateY(-2px) scaleY(0.95); }
  78% {
    -webkit-transform: translateY(4px) scaleY(1);
    -moz-transform: translateY(4px) scaleY(1);
    -ms-transform: translateY(4px) scaleY(1);
    -o-transform: translateY(4px) scaleY(1);
       transform: translateY(4px) scaleY(1); }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); } }

@keyframes overshoot {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); }
  12% {
    -webkit-transform: translateY(-8px) scaleY(0.93);
    -moz-transform: translateY(-8px) scaleY(0.93);
    -ms-transform: translateY(-8px) scaleY(0.93);
    -o-transform: translateY(-8px) scaleY(0.93);
       transform: translateY(-8px) scaleY(0.93); }
  34% {
    -webkit-transform: translateY(8px) scaleY(1);
    -moz-transform: translateY(8px) scaleY(1);
    -ms-transform: translateY(8px) scaleY(1);
    -o-transform: translateY(8px) scaleY(1);
       transform: translateY(8px) scaleY(1); }
  56% {
    -webkit-transform: translateY(-2px) scaleY(0.95);
    -moz-transform: translateY(-2px) scaleY(0.95);
    -ms-transform: translateY(-2px) scaleY(0.95);
    -o-transform: translateY(-2px) scaleY(0.95);
       transform: translateY(-2px) scaleY(0.95); }
  78% {
    -webkit-transform: translateY(4px) scaleY(1);
    -moz-transform: translateY(4px) scaleY(1);
    -ms-transform: translateY(4px) scaleY(1);
    -o-transform: translateY(4px) scaleY(1);
       transform: translateY(4px) scaleY(1); }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); } }

.hero--ico-nav-element {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  padding: 32px 32px;
  padding: 1rem 2rem; }
  .hero--ico-nav-element .fa {
    -webkit-animation: overshoot 0.55s 1 forwards;
    -moz-animation: overshoot 0.55s 1 forwards;
    -o-animation: overshoot 0.55s 1 forwards;
    animation: overshoot 0.55s 1 forwards; }
  .hero--ico-nav-element:hover .fa {
    -webkit-animation: hold 0.5s 1 forwards;
    -moz-animation: hold 0.5s 1 forwards;
    -o-animation: hold 0.5s 1 forwards;
    animation: hold 0.5s 1 forwards; }
  @media (max-width: 650px) {
    .hero--ico-nav-element {
      padding: 1rem;
      font-size: 0.9rem; } }

.hero--ico-nav-label {
  display: block; }

@media (max-width: 650px) {
  .fa-3x {
    font-size: 2.25em !important; } }

.desktop {
  display: initial !important; }
  @media (max-width: 650px) {
    .desktop {
      display: none !important; } }

.mobile {
  display: none !important; }
  @media (max-width: 650px) {
    .mobile {
      display: initial !important; } }

.row .events--event-share.mobile {
  margin-top: 32px !important;
  margin-top: 2rem !important; }

/** 
 * Main -- inner page content area 
 **/
.main {
  position: relative;
  display: block;
  width: 100%;
  background: #fff; }

.content {
  display: block;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  background: #fff;
  /* select */
  /*** GRID STYLES ***/
  /* UPCOMING EVENTS LISTING*/ }
  .content hr {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    border: 0;
    margin: 32px 0;
    margin: 2rem 0; }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    font-family: "Oswald", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    padding: 26px 0 12px;
    padding: 1rem 0 .75rem; }
  .content h1 {
    font-size: 54px;
    font-size: 3.375rem; }
    .content h1 + p {
      font-size: 24px;
      font-size: 1.5rem; }
    @media (max-width: 650px) {
      .content h1 {
        font-size: 32px !important;
        font-size: 2rem !important; }
        .content h1 + p {
          font-size: 16px !important;
          font-size: 1rem !important; } }
  .content h2 {
    font-size: 32px;
    font-size: 2rem; }
    @media (max-width: 650px) {
      .content h2 {
        font-size: 28px;
        font-size: 1.75rem; } }
  .content h3 {
    font-size: 32px;
    font-size: 2rem;
    border-bottom: 4px solid #eee;
    margin-bottom: 8px;
    margin-bottom: .5rem; }
  .content h4 {
    font-size: 26px;
    font-size: 1.618rem; }
  .content h5 {
    font-size: 20px;
    font-size: 1.25rem;
    color: #FFBF00;
    margin-bottom: 8px;
    margin-bottom: .5rem; }
  .content p, .content ul, .content ol {
    font-weight: 300;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    color: #383838; }
    @media (max-width: 650px) {
      .content p, .content ul, .content ol {
        font-size: 16px;
        font-size: 1rem; } }
  .content a {
    font-weight: 400;
    color: #8F8F8F;
    text-decoration: underline; }
    .content a:hover {
      text-decoration: none; }
  .content a.fc-event {
    color: #fff; }
  .content strong {
    font-weight: 500; }
  .content ul,
  .content ol {
    list-style-position: outside;
    margin: 0 0 26px 20px;
    margin: 0 0 1.618rem 1.25rem; }
  .content ol {
    counter-reset: ol;
    list-style-type: none; }
  .content blockquote {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
    background-color: #800080;
    color: #fff;
    padding: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center; }
    .content blockquote p {
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-weight: inherit; }
    .content blockquote p:last-of-type {
      margin-bottom: 0; }
    @media (max-width: 650px) {
      .content blockquote {
        padding: 2rem 1rem; } }
  .content .button,
  .content .button_span > a {
    display: block;
    width: 85%;
    min-width: 230px;
    max-width: 400px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-border-radius: 0.1875rem;
    -moz-border-radius: 0.1875rem;
    border-radius: 0.1875rem;
    width: 100%;
    padding: 12px 24px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    color: #60C66E;
    border: 1px solid #60C66E;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    margin: 8px auto;
    margin: 0.5rem auto; }
    .content .button:hover,
    .content .button_span > a:hover {
      background: #60C66E;
      color: #fff; }
    .content .button + .content .button,
    .content .button_span > a + .content .button, .content .button +
    .content .button_span > a,
    .content .button_span > a +
    .content .button_span > a {
      margin: 1rem 0; }
    .content .button.disabled, .content .button.disabled:hover,
    .content .button_span > a.disabled,
    .content .button_span > a.disabled:hover {
      background: #eee;
      border-color: #777;
      color: #777;
      cursor: default;
      pointer-events: none; }
  .content select {
    display: block;
    /*-webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;*/
    -webkit-border-radius: none;
    display: block;
    width: 90%;
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin-bottom: 1rem; }
  .content .logos img {
    max-width: 120px; }
  @media (max-width: 991px) {
    .content .logos p {
      text-align: center !important; } }
  @media (max-width: large) {
    .content .logos p {
      text-align: center !important; } }
  .content .logos-large img {
    max-width: 240px; }
  @media (max-width: 991px) {
    .content .logos-large p {
      text-align: center !important; } }
  @media (max-width: large) {
    .content .logos-large p {
      text-align: center !important; } }
  .content .full-width > .container > .row {
    max-width: 100%; }
    .content .full-width > .container > .row > .col-md-12 {
      padding: 0; }
  .content .col-md-4 > div > p, .content .col-md-4 > div > ol, .content .col-md-4 > div > ul {
    font-size: 16px;
    font-size: 1rem; }
  .content .title {
    background: #fff;
    border-bottom: 1px solid #ddd; }
  .content .sub-title {
    text-align: center;
    padding: 3rem; }
    .content .sub-title > h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem; }
    .content .sub-title > p {
      font-size: 1.5rem; }
  .content .padded-background > blockquote {
    background-color: transparent;
    margin: 0;
    font-size: 2rem;
    color: #fff; }
  .content .no-whitespace {
    padding: 0;
    margin: 0; }
    .content .no-whitespace > .container,
    .content .no-whitespace > .container > .row > .column {
      padding: 0;
      margin: 0; }
  .content .midnight, .content .sunrise, .content .dusk, .content .fog {
    background-repeat: no-repeat;
    -moz-background-size: 100% auto;
      -o-background-size: 100% auto;
         background-size: 100% auto;
    background-position: center center;
    padding: 0; }
    .content .midnight > .container, .content .sunrise > .container, .content .dusk > .container, .content .fog > .container {
      background-color: rgba(0, 0, 0, 0.75);
      padding: 32px 0;
      padding: 2rem 0; }
    .content .midnight > .container > .row > .column, .content .sunrise > .container > .row > .column, .content .dusk > .container > .row > .column, .content .fog > .container > .row > .column {
      padding: 2rem; }
    .content .midnight > .container > .row > .column > div > h1, .content .sunrise > .container > .row > .column > div > h1, .content .dusk > .container > .row > .column > div > h1, .content .fog > .container > .row > .column > div > h1,
    .content .midnight > .container > .row > .column > div > h2,
    .content .sunrise > .container > .row > .column > div > h2,
    .content .dusk > .container > .row > .column > div > h2,
    .content .fog > .container > .row > .column > div > h2,
    .content .midnight > .container > .row > .column > div > h3,
    .content .sunrise > .container > .row > .column > div > h3,
    .content .dusk > .container > .row > .column > div > h3,
    .content .fog > .container > .row > .column > div > h3,
    .content .midnight > .container > .row > .column > div > h4,
    .content .sunrise > .container > .row > .column > div > h4,
    .content .dusk > .container > .row > .column > div > h4,
    .content .fog > .container > .row > .column > div > h4,
    .content .midnight > .container > .row > .column > div > h5,
    .content .sunrise > .container > .row > .column > div > h5,
    .content .dusk > .container > .row > .column > div > h5,
    .content .fog > .container > .row > .column > div > h5,
    .content .midnight > .container > .row > .column > div > h6,
    .content .sunrise > .container > .row > .column > div > h6,
    .content .dusk > .container > .row > .column > div > h6,
    .content .fog > .container > .row > .column > div > h6,
    .content .midnight > .container > .row > .column > div > ul,
    .content .sunrise > .container > .row > .column > div > ul,
    .content .dusk > .container > .row > .column > div > ul,
    .content .fog > .container > .row > .column > div > ul,
    .content .midnight > .container > .row > .column > div > ol,
    .content .sunrise > .container > .row > .column > div > ol,
    .content .dusk > .container > .row > .column > div > ol,
    .content .fog > .container > .row > .column > div > ol,
    .content .midnight > .container > .row > .column > div > p,
    .content .sunrise > .container > .row > .column > div > p,
    .content .dusk > .container > .row > .column > div > p,
    .content .fog > .container > .row > .column > div > p {
      color: #fff; }
    .content .midnight > .container > .row > .column > div > h1, .content .sunrise > .container > .row > .column > div > h1, .content .dusk > .container > .row > .column > div > h1, .content .fog > .container > .row > .column > div > h1 {
      font-size: 48px;
      font-size: 3rem; }
      @media (max-width: 650px) {
        .content .midnight > .container > .row > .column > div > h1, .content .sunrise > .container > .row > .column > div > h1, .content .dusk > .container > .row > .column > div > h1, .content .fog > .container > .row > .column > div > h1 {
          font-size: 2rem !important; } }
    
    .content .midnight > .container > .row > .column > div > h2,
    .content .sunrise > .container > .row > .column > div > h2,
    .content .dusk > .container > .row > .column > div > h2,
    .content .fog > .container > .row > .column > div > h2 {
      font-size: 36px;
      font-size: 2.25rem; }
      @media (max-width: 650px) {
        
        .content .midnight > .container > .row > .column > div > h2,
        .content .sunrise > .container > .row > .column > div > h2,
        .content .dusk > .container > .row > .column > div > h2,
        .content .fog > .container > .row > .column > div > h2 {
          font-size: 1.25rem !important; } }
  .content .midnight {
    background: #000; }
    .content .midnight > .container {
      background-color: rgba(0, 0, 0, 0.75); }
  .content .sunrise {
    background: #FFBF00;
    border-bottom: 1px solid #cc9900; }
    .content .sunrise > .container {
      background-color: rgba(255, 191, 0, 0.75); }
  .content .dusk {
    background: #800080; }
    .content .dusk > .container {
      background-color: rgba(128, 0, 128, 0.75); }
    .content .dusk > .container > .row > .column > div > h1 {
      color: #FFBF00; }
    .content .dusk > .container > .row > .column > div > h2 {
      color: #FFBF00; }
  .content .fog {
    background: #eee; }
    .content .fog > .container {
      background-color: rgba(238, 238, 238, 0.75); }
    .content .fog > .container > .row > .column > div > h1,
    .content .fog > .container > .row > .column > div > h2,
    .content .fog > .container > .row > .column > div > h3,
    .content .fog > .container > .row > .column > div > h4,
    .content .fog > .container > .row > .column > div > h5,
    .content .fog > .container > .row > .column > div > h6,
    .content .fog > .container > .row > .column > div > ul,
    .content .fog > .container > .row > .column > div > ol,
    .content .fog > .container > .row > .column > div > p {
      color: #383838; }
  .content .cards > .container > .row {
    padding-bottom: 2;
    display: table; }
  .content .cards > .container > .row > .column {
    display: table-cell;
    float: none;
    font-size: 1rem;
    padding: 3rem;
    background: #eee; }
    .content .cards > .container > .row > .column > div > h2 {
      color: #60C66E;
      margin: 0 0 12px 0 !important;
      margin: 0 0 .75rem 0 !important;
      padding: 0; }
    .content .cards > .container > .row > .column > div > h4 {
      margin: 0;
      padding: 0;
      color: #555;
      font-size: 20px;
      font-size: 1.25rem; }
    .content .cards > .container > .row > .column > div > p,
    .content .cards > .container > .row > .column > div > ul,
    .content .cards > .container > .row > .column > div > ol {
      font-size: 16px;
      font-size: 1rem; }
  .content .upcomingEvents {
    max-width: 100%;
    background: #eee;
    text-align: center;
    font-size: 0;
    display: table;
    table-layout: fixed;
    width: 100%; }
    @media (max-width: 991px) {
      .content .upcomingEvents {
        display: block;
        width: 100%; } }
    @media (max-width: large) {
      .content .upcomingEvents {
        display: block;
        width: 100%; } }
  .content .upcomingEvents:after {
    display: none; }
  .content .upcomingEvents--listing {
    padding: 3rem;
    text-align: center;
    display: table-cell;
    width: 20%;
    float: none;
    vertical-align: top;
    /*&:first-of-type .event--title { color: #ABD9EF; }
			&:nth-of-type(2) .event--title { color: #DB96BA; }
			&:nth-of-type(3) .event--title { color: #B14D89; }
			&:nth-of-type(4) .event--title { color: #409AC4; }*/ }
    @media (max-width: 991px) {
      .content .upcomingEvents--listing {
        display: block;
        width: 100%; } }
    @media (max-width: large) {
      .content .upcomingEvents--listing {
        display: block;
        width: 100%; } }
    .content .upcomingEvents--listing time {
      color: #555;
      font-size: 1.25rem;
      font-family: "Oswald",sans-serif;
      text-transform: uppercase; }
    .content .upcomingEvents--listing .event--title {
      margin: 0px 0px 0.75rem !important;
      padding: 0px;
      /*color: #60C66E;*/
      text-decoration: none; }
    .content .upcomingEvents--listing p, .content .upcomingEvents--listing ul, .content .upcomingEvents--listing ol, .content .upcomingEvents--listing .button, .content .upcomingEvents--listing .event--desc, .content .upcomingEvents--listing .events--event-host {
      font-size: 1rem !important;
      text-align: center; }
    .content .upcomingEvents--listing .button {
      min-width: auto;
      margin-bottom: 1.25rem;
      margin-left: auto;
      margin-right: auto; }
  .content .pullquote-left {
    margin-top: 32px;
    margin-top: 2rem;
    font-weight: 400;
    color: #777;
    border-right: 2px solid #ccc;
    padding: 0 16px 0 16px;
    padding: 0 1rem 0 1rem; }
    .content .pullquote-left p {
      font-size: 16px;
      font-size: 1rem; }

.content--title {
  display: block;
  font-size: 48px;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  color: #e0afbf;
  margin: 0; }

/** 
 * Breadcrumbs macro 
 **/
ul.breadcrumb {
  list-style: none;
  margin: 0;
  text-transform: uppercase;
  font-size: 1rem; }
  ul.breadcrumb > li {
    display: inline; }
  ul.breadcrumb > li > .divider {
    color: #ccc; }
  ul.breadcrumb + h1 {
    padding: 0; }

/** 
 * Sub-navigation macro 
 **/
.sub-nav + .sub-nav {
  margin-top: 32px;
  margin-top: 2rem; }

.sub-nav > h2 {
  border-bottom: 4px solid #eee;
  padding-bottom: 8px;
  padding-bottom: .5rem; }

.sub-nav > ul {
  list-style: none;
  margin: 0; }

.sub-nav > ul > li {
  position: relative;
  border-bottom: 2px solid #eee; }
  @media (max-width: 650px) {
    .sub-nav > ul > li {
      border-color: transparent !important; } }
  .sub-nav > ul > li.active > .sub-nav--flyout {
    display: block !important; }
  .sub-nav > ul > li:first-of-type .sub-nav--flyout {
    top: -4px; }

.sub-nav > ul > li > a {
  -webkit-transition: padding 0.25s ease-in-out;
  -moz-transition: padding 0.25s ease-in-out;
  -o-transition: padding 0.25s ease-in-out;
  transition: padding 0.25s ease-in-out;
  display: block;
  padding: 8px;
  padding: .5rem;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  color: #FFBF00;
  color: #222; }
  .sub-nav > ul > li > a:hover {
    padding: 8px 8px 8px 16px;
    padding: .5rem .5rem .5rem 1rem;
    background-color: #eee;
    color: #000; }

.sub-nav > ul > li.active > a {
  padding: 8px 8px 8px 16px;
  padding: .5rem .5rem .5rem 1rem;
  background-color: #eee;
  color: #000; }

.sub-nav iframe, .sub-nav object {
  max-width: 100%;
  height: auto;
  min-height: 253px; }

.connect-with-us {
  font-family: "Oswald",sans-serif;
  font-weight: normal;
  font-size: 1.618rem;
  text-transform: uppercase;
  padding: 1rem 0px 0.75rem; }

/**
 * Blog/Article Macros
 **/
.article {
  padding: 2rem 0; }
  .article > .article--title {
    font-size: 32px;
    font-size: 2rem; }
    .article > .article--title > a {
      text-decoration: none;
      color: #FFBF00; }
  .article > .article--date {
    text-transform: uppercase; }
  .article > .article--date + .article--title {
    padding-top: 0; }
  .article img {
    max-width: 100%;
    height: auto; }
  .article iframe {
    width: 100%; }

/**
 * Quicklinks Macro
 **/
ul.quicklinks {
  margin: 0;
  list-style-type: none; }
  ul.quicklinks > li > a {
    text-decoration: none;
    color: #222;
    display: block;
    margin-bottom: 16px;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.35; }
    ul.quicklinks > li > a:hover {
      text-decoration: underline; }
  ul.quicklinks > li > a > span {
    display: block;
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    color: #999; }

/**
 * Panelist Filter
 **/
.panelist-filter {
  width: 100%;
  margin: 16px 0 48px;
  margin: 1rem 0 3rem; }

.panelist-filter--label {
  width: 30%;
  float: left;
  text-align: center;
  font-size: 2rem;
  line-height: 4rem; }

.panelist-filter--input {
  width: 68.5%;
  font-size: 2rem;
  padding: 0.5rem; }

@media (max-width: 1120px) {
  .panelist-filter--label,
  .panelist-filter--input {
    width: 100%; } }

/**
 * Panelist Grid, Cards
 **/
.panelists {
  display: block;
  position: relative;
  max-width: 1200px;
  margin: 32px auto;
  margin: 2rem auto; }

.panelists--panelist {
  /*position: relative; 
	display: block; 
	width: 100%; 
    max-width: $event-width;
	margin: 0 auto; 
	background: #fff; 
	overflow: hidden; 
    padding: 64px 96px;
    padding: 4rem 6rem;*/ }

.panelists--panelist-header {
  width: 100%;
  border-bottom: 1px solid #eee; }
  .panelists--panelist-header > .row {
    padding: 48px 32px 16px;
    padding: 3rem 2rem 1rem; }

.panelists--panelist-name {
  font-family: "Oswald", sans-serif;
  padding: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: normal; }
  @media (max-width: 650px) {
    .panelists--panelist-name {
      font-size: 2.5rem; } }

.panelists--panelist-title {
  font-weight: normal;
  color: #FFBF00; }

.panelists--panelist-bio {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  color: #676767;
  line-height: 1.5; }
  .panelists--panelist-bio > h3 {
    font-weight: normal;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 16px;
    padding: 1rem;
    margin: 0;
    border-bottom: 0;
    background-color: #FFBF00;
    color: #664c00; }
  .panelists--panelist-bio > p {
    margin-bottom: 1rem; }
  .panelists--panelist-bio > p > a {
    color: #FFBF00; }

.panelists--panelist-media {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  float: left;
  width: 175px;
  height: 175px;
  overflow: hidden;
  margin: -16px 24px 16px 0;
  margin: -1rem 1.5rem 1rem 0;
  z-index: 10; }

.panelists--panelist-media-img {
  display: block;
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto; }

.panelists--panelist-video {
  display: block;
  margin: 16px;
  margin: 1rem;
  float: right; }

.panelists--panelist-event-list,
.panelists--panelist-articles {
  margin: 0 32px 16px;
  margin: 0 2rem 1rem; }

.panelists--panelist-event-link,
.panelists--panelist-articles-link {
  color: #997300; }

.panelists--panelist-event-item,
.panelists--panelist-articles-item {
  list-style: none; }

/**
 * Panelists Browse View
 */
.panelists-browse--panelist {
  float: left;
  clear: none;
  margin: 0 1.5% 16px 1.5%;
  margin: 0 1.5% 1rem 1.5%;
  width: 22%; }
  @media (min-width: 961px) and (max-width: 1250px) {
    .panelists-browse--panelist {
      width: 30.33333%; } }
  @media (min-width: 651px) and (max-width: 960px) {
    .panelists-browse--panelist {
      width: 47%; } }
  @media (max-width: 650px) {
    .panelists-browse--panelist {
      width: 97%; } }

.panelists-browse--panelist--avatar {
  display: block; }

/** 
 * Sponsor grid 
 **/
.sponsors {
  clear: both;
  display: block;
  padding: 32px;
  padding: 2rem;
  background-color: #1a100f;
  color: #fff;
  text-align: center; }

.sponsors--title {
  font-weight: normal;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem; }

.sponsors--grid {
  margin: 16px 0;
  margin: 1rem 0;
  max-width: 100%; }

.sponsors--logo {
  margin: 0 16px;
  max-width: 120px;
  vertical-align: middle;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75; }
  @media (max-width: 650px) {
    .sponsors--logo {
      margin: 10px;
      max-width: 105px; } }

.sponsors--horizontal {
  max-width: 240px; }
  @media (max-width: 650px) {
    .sponsors--horizontal {
      max-width: 105px;
      max-height: 75px; } }

@media (max-width: 991px) {
  .sponsors--break {
    display: none; } }

@media (max-width: large) {
  .sponsors--break {
    display: none; } }

.sponsors--text {
  margin: 16px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75); }

.sponsors--view-all {
  display: block;
  background-color: #3a2422;
  max-width: 1200px;
  margin: 16px auto;
  margin: 1rem auto;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem; }

.hide-FAE {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  display: block !important;
  text-align: left !important;
  text-indent: -9999em !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important; }

#skipToMain {
  position: absolute;
  top: -1000px;
  right: -1000px;
  padding: 16px 24px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden;
  color: white;
  background: #60C66E;
  z-index: 3000; }

a#skipToMain:active,
a#skipToMain:focus,
a#skipToMain:hover {
  right: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible; }

@media (max-width: 991px) {
  .sub-nav.event--sidebar {
    display: block; }
  .content .midnight + .midnight > .container,
  .content .sunrise + .sunrise > .container,
  .content .dusk + .dusk > .container,
  .content .fog + .fog > .container {
    padding-top: 0 !important; }
  .content .container > .row > .col-md-1,
  .content .container > .row > .col-md-2,
  .content .container > .row > .col-md-3,
  .content .container > .row > .col-md-4,
  .content .container > .row > .col-md-5,
  .content .container > .row > .col-md-6 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
    .content .container > .row > .col-md-1:last-of-type,
    .content .container > .row > .col-md-2:last-of-type,
    .content .container > .row > .col-md-3:last-of-type,
    .content .container > .row > .col-md-4:last-of-type,
    .content .container > .row > .col-md-5:last-of-type,
    .content .container > .row > .col-md-6:last-of-type {
      padding-bottom: 32px !important;
      padding-bottom: 2rem !important; } }

/**
 *   Blog Styles
 */
.blog-list--item {
  margin-bottom: 5rem; }

/**
 * WP Image Alignment Styles
 */
.wp-post img.alignright {
  float: right;
  margin: 0 0 1em 1em; }

.wp-post img.alignleft {
  float: left;
  margin: 0 1em 1em 0; }

.wp-post img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-post a img.alignright {
  float: right;
  margin: 0 0 1em 1em; }

.wp-post a img.alignleft {
  float: left;
  margin: 0 1em 1em 0; }

.wp-post a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }
