@charset "UTF-8";
/*
	Theme Name: AgDays 2017
	Theme URI: 
	Description: 
	Author: Pattern Interactive
	Author URI: 

	Version: 1.0

	Tags: 

	Template: genesis
	Template Version: 2.2.3

	License: 
	License URI: 
*/
/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- nextGEN gallery with photoSwipe lightbox
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Skip Links
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- After Header Navigation
	- Footer Navigation
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
  - Archive News
  - Speaker Series
- Sidebars
- Footer Widgets
- Site Footer
- Media Queries
	- Max-width: 1340px
	- Max-width: 1200px
	- Max-width: 1023px
	- Max-width: 860px
- Print Styles
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('library/fonts/font-name.eot');
    	src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

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

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

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

.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */
/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v4.1.1 | MIT License | http://necolas.github.io/normalize.css/ */
html {
  font-family: "museo-sans", "Arial", Helvetica, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

template, [hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: inherit;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button, input, optgroup, select, textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* ## Box Sizing
--------------------------------------------- */
html,
input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

/* ## Float Clearing
--------------------------------------------- */
.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
  content: " ";
  display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
  clear: both;
  content: " ";
  display: table;
}

/* # Defaults
---------------------------------------------------------------------------------------------------- */
/* ## Typographical Elements
--------------------------------------------- */
html {
  font-size: 62.5%;
  /* 10px browser default */
}

/* Chrome fix */
body > div {
  font-size: 1.6rem;
}

body {
  background-color: #fff;
  color: #000000;
  font-family: "museo-sans", "Arial", Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.625;
  margin: 0;
}

a,
button,
input:focus,
input[type=button],
input[type=reset],
input[type=submit],
textarea:focus,
.button,
.gallery img {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

a {
  color: #000;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #333;
  text-decoration: none;
}

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

ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.site-container .body ul, .site-container .body ol {
  margin-bottom: 28px;
  margin-left: 40px;
}

.site-container .body ol li {
  list-style-type: inherit;
}

.site-container .body ul li {
  list-style-type: inherit;
}

.site-container .body li.widget-container {
  list-style-type: none;
}

.site-container .body .widget_nav_menu ul, .site-container .body .widget_nav_menu ol {
  margin: 0px;
  padding: 0px;
}

.site-container .body .widget_nav_menu li {
  list-style-type: none;
}

hr {
  border: 0;
  border-collapse: collapse;
  border-top: 1px solid #eee;
  clear: both;
  margin: 1em 0;
}

b,
strong {
  font-weight: 700;
}

blockquote,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 40px;
}

blockquote::before {
  content: "“";
  display: block;
  font-size: 30px;
  font-size: 3rem;
  height: 0;
  left: -20px;
  position: relative;
  top: -10px;
}

/* ## Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "museo-sans", "Arial", Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}

h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

h2 {
  font-size: 30px;
  font-size: 3rem;
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
}

h4 {
  font-size: 20px;
  font-size: 2rem;
}

h5 {
  font-size: 18px;
  font-size: 1.8rem;
}

h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.row {
  margin: 0;
}

/* ## Objects
--------------------------------------------- */
embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%;
}

img {
  height: auto;
}

figure {
  margin: 0;
}

/* ## Gallery
--------------------------------------------- */
.gallery {
  overflow: hidden;
}

.gallery-item {
  float: left;
  margin: 0 0 28px;
  text-align: center;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

.gallery img {
  border: 1px solid #eee;
  height: auto;
  padding: 4px;
}

.gallery img:hover,
.gallery img:focus {
  border: 1px solid #999;
}

/* ## Forms
--------------------------------------------- */
input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #555;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 14px;
  width: 100%;
  border-radius: 5px;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: 700;
}

input:focus,
textarea:focus {
  border: 1px solid #999;
  outline: none;
}

input[type=text],
select,
textarea {
  min-height: 38px;
}

input[type=checkbox],
input[type=image],
input[type=radio] {
  width: auto;
}

::-moz-placeholder {
  color: #333;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #333;
}

button,
input[type=button],
input[type=reset],
input[type=submit],
.button {
  background-color: #C2C6B5;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  text-decoration: none;
  white-space: normal;
  border-radius: 5px;
  width: auto;
  line-height: 1.4rem;
}

button:hover,
input:hover[type=button],
input:hover[type=reset],
input:hover[type=submit],
.button:hover,
button:focus,
input:focus[type=button],
input:focus[type=reset],
input:focus[type=submit],
.button:focus {
  background-color: #B5D855;
  color: #fff;
}

.btn-small {
  padding: 5px 14px 5px 14px;
}

.entry-content .button:hover,
.entry-content .button:focus {
  color: #fff;
}

.button {
  display: inline-block;
}

a.button.small,
button.small,
input[type=button].small,
input[type=reset].small,
input[type=submit].small {
  padding: 8px 16px;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type=button]:disabled,
.site-container input[type=button]:disabled:hover,
.site-container input[type=reset]:disabled,
.site-container input[type=reset]:disabled:hover,
.site-container input[type=submit]:disabled,
.site-container input[type=submit]:disabled:hover {
  background-color: #eee;
  border-width: 0;
  color: #777;
  cursor: not-allowed;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button {
  display: none;
}

/* ## nextGEN gallery with photoSwipe lightbox
--------------------------------------------- */
img.pswp__img.pswp__img--placeholder {
  display: none !important;
}

.forgot-password {
  position: relative;
  top: -70px;
  left: 83px;
}

div .ngg-gallery-thumbnail-box {
  float: none;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  width: 24%;
}

@media screen and (max-width: 990px) {
  div .ngg-gallery-thumbnail-box {
    width: 32%;
  }
}
@media screen and (max-width: 620px) {
  div .ngg-gallery-thumbnail-box {
    width: 48.5%;
  }
}
@media screen and (max-width: 420px) {
  div .ngg-gallery-thumbnail-box {
    margin: 0;
    width: 100%;
  }
}
div .ngg-gallery-thumbnail-box a {
  display: block;
  overflow: hidden;
}

div.ngg-gallery-thumbnail {
  width: 100%;
  overflow: hidden;
  padding: 3px 1px;
}

div.ngg-gallery-thumbnail img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

div.ngg-gallery-thumbnail img {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

#edit-contact label {
  width: 49%;
  vertical-align: top;
}

@media screen and (max-width: 380px) {
  #edit-contact label {
    width: 100%;
  }
}
#edit-contact label#contactEmail-error {
  width: 100%;
  padding: 5px 10px;
}

#edit-contact .error {
  width: 100%;
  margin-left: 0;
}

#edit-contact input[type=submit] {
  margin: 10px 0;
}

.contact-row,
.nametag-row {
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.contact-row:hover,
.nametag-row:hover {
  color: #555;
}

.contact-row.selected,
.nametag-row.selected,
.stacktable.selected {
  color: #d0a536;
}

.contact-row.selected:hover,
.nametag-row.selected:hover .stacktable.selected:hover {
  color: #d0a536;
}

#nametag-list td:first-child, #nametag-list th:first-child {
  padding-left: 10px;
}

.nametag-row:nth-child(2n+1) {
  background: #f6f8f1;
}
.nametag-row td {
  border-top: none;
}
.nametag-row td:first-child, .nametag-row th:first-child {
  padding-left: 10px;
}
.nametag-row .nametag-name .nametag-fname {
  padding-right: 5px;
  font-weight: bold;
}
.nametag-row .nametag-name .nametag-lname {
  font-weight: bold;
}
.nametag-row .nametag-company {
  display: block;
}
.nametag-row .nametag-email {
  white-space: nowrap;
}

/* ## Tables
--------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin-bottom: 40px;
  width: 100%;
  word-break: break-word;
}

tbody {
  border-bottom: 1px solid #eee;
}

td,
th {
  text-align: left;
}

td {
  border-top: 1px solid #eee;
  padding: 6px;
}

th {
  font-weight: 400;
  padding: 0 6px;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

/* ## Screen Reader Text
--------------------------------------------- */
.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type=submit]:focus,
.widget_search input[type=submit]:focus {
  clip: auto !important;
  height: auto;
  width: auto;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 15px 23px 14px;
  color: #333;
  background: #fff;
  z-index: 100000;
  /* Above WP toolbar. */
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

.more-link {
  position: relative;
}

/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */
/* ## Site Containers
--------------------------------------------- */
.entry-content .post,
.entry-content .news {
  padding-top: 20px;
}

.site-inner,
.wrap {
  margin: 0 auto;
  max-width: 1090px;
}

@media screen and (min-width: 1200px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1025px) {
  .container {
    width: 960px;
  }
}
.site-inner {
  clear: both;
  padding-top: 40px;
  word-wrap: break-word;
}

.landing-page .site-inner {
  max-width: 800px;
}

/* ## Column Widths and Positions
--------------------------------------------- */
/* ### Wrapping div for .content and .sidebar-primary */
.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
  width: 1060px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
  float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
  float: right;
}

/* ### Content */
.content {
  float: right;
  width: 880px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
  float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
  width: 660px;
}

.full-width-content .content {
  width: 100%;
}

/* ### Primary Sidebar */
.sidebar-primary {
  float: right;
  width: 360px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
  float: left;
}

/* ### Secondary Sidebar */
.sidebar-secondary {
  float: left;
  width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
  float: right;
}

/*
.col-sm-12, .col-md-12, .col-lg-12 {
  width: 100%;
}
*/
/* ## Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */
.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
  float: left;
  margin-left: 2.5641025641%;
}

.one-half,
.three-sixths,
.two-fourths {
  width: 48.7179487179%;
}

.one-third,
.two-sixths {
  width: 31.6239316239%;
}

.four-sixths,
.two-thirds {
  width: 65.811965812%;
}

.one-fourth {
  width: 23.0769230769%;
}

.three-fourths {
  width: 74.358974359%;
}

.one-sixth {
  width: 14.5299145299%;
}

.five-sixths {
  width: 82.905982906%;
}

.first {
  clear: both;
  margin-left: 0;
}

/* # Common Classes
---------------------------------------------------------------------------------------------------- */
.nopadding {
  padding: 0;
}

/* ## Avatar
--------------------------------------------- */
.avatar {
  border-radius: 50%;
  float: left;
}

.author-box .avatar,
.alignleft .avatar {
  margin-right: 24px;
}

.alignright .avatar {
  margin-left: 24px;
}

.comment .avatar {
  margin: 0 16px 24px 0;
}

/* ## Genesis
--------------------------------------------- */
.breadcrumb {
  background-color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 1px;
  padding: 12px 30px;
}

.after-entry,
.archive-description,
.author-box {
  background-color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 40px;
  padding: 60px;
}

.archive-description p:last-child,
.author-box p:last-child {
  margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */
.search-form {
  overflow: hidden;
}

.entry-content .search-form,
.site-header .search-form {
  margin-bottom: 40px;
  width: 50%;
}

.site-header .search-form {
  float: right;
  margin: 12px auto 0;
}

.post-password-form input[type=submit],
.search-form input[type=submit] {
  margin-top: 10px;
}

.genesis-nav-menu .search input[type=submit],
.widget_search input[type=submit] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ## Titles
--------------------------------------------- */
.archive-description .entry-title,
.archive-title,
.author-box-title {
  font-size: 20px;
  font-size: 2rem;
}

.entry-title {
  font-size: 24px;
  font-size: 2.4rem;
}

h1.entry-title {
  font-size: 36px;
  font-size: 3.6rem;
  margin-top: 1.6rem;
}

.entry-title a,
.sidebar .widget-title a {
  color: #333;
  text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
  color: #c3251d;
}

.widget-title {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* ## WordPress
--------------------------------------------- */
a.aligncenter img {
  display: block;
  margin: 0 auto;
}

a.alignnone {
  display: inline-block;
}

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

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

a.alignleft,
a.alignnone,
a.alignright {
  max-width: 100%;
}

img.centered,
.aligncenter {
  display: block;
  margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
  margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
  margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
  margin: 0 0 24px 24px;
}

.wp-caption-text {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.entry-content p.wp-caption-text {
  margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
  margin: 0 0 28px;
}

/* # Widgets
---------------------------------------------------------------------------------------------------- */
.widget {
  margin-bottom: 40px;
  word-wrap: break-word;
}

.widget p:last-child,
.widget ul > li:last-of-type,
.widget-area .widget:last-of-type {
  margin-bottom: 0;
}

.widget ul > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.widget ul > li:last-of-type {
  padding-bottom: 0;
}

.widget ol > li {
  list-style-position: inside;
  list-style-type: decimal;
  padding-left: 20px;
  text-indent: -20px;
}

.widget li li {
  border: 0;
  margin: 0 0 0 30px;
  padding: 0;
}

.widget_calendar table {
  width: 100%;
}

.widget_calendar td,
.widget_calendar th {
  text-align: center;
}

/* ## Featured Content
--------------------------------------------- */
.featured-content .entry {
  background: none;
  padding: 0;
}

.featured-content .entry:last-of-type {
  margin-bottom: 0;
}

.featured-content .entry-title {
  font-size: 20px;
  font-size: 2rem;
}

/* # Plugins
---------------------------------------------------------------------------------------------------- */
/* ## Genesis eNews Extended
--------------------------------------------- */
.sidebar .enews-widget,
.sidebar .enews-widget .widget-title {
  color: #fff;
}

.sidebar .widget.enews-widget {
  background-color: #333;
}

.sidebar .enews-widget input,
.sidebar .enews-widget input:focus {
  border: 1px solid #333;
}

.sidebar .enews-widget input[type=submit] {
  background-color: #c3251d;
  color: #fff;
}

.sidebar .enews-widget input:hover[type=submit],
.sidebar .enews-widget input:focus[type=submit] {
  background-color: #fff;
  color: #333;
}

.enews-widget input {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.enews-widget input[type=submit] {
  margin: 0;
  width: 100%;
}

.enews form + p {
  margin-top: 24px;
}

/* ## Jetpack
--------------------------------------------- */
#wpstats {
  display: none;
}

/* # Skip Links
---------------------------------------------------------------------------------------------------- */
.genesis-skip-link {
  margin: 0;
}

.genesis-skip-link li {
  height: 0;
  width: 0;
  list-style: none;
}

/* Display outline on focus */
:focus {
  color: #333;
  outline: #ccc solid 1px;
}

/* # Site Header
---------------------------------------------------------------------------------------------------- */
.site-header {
  background-color: #fff;
}

.site-header > .wrap {
  padding: 20px 0;
}

.page-title {
  padding: 0;
}

/* ## Title Area
--------------------------------------------- */
.title-area {
  float: left;
  padding: 10px 0;
  width: 300px;
}

.header-image .title-area {
  margin: 0 auto;
  max-width: 300px;
  padding: 0;
}

.header-full-width .title-area {
  float: none;
  width: 100%;
}

.site-title {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
  color: #333;
  text-decoration: none;
}

.header-image .site-title > a {
  background-position: center !important;
  background-size: contain !important;
  float: left;
  min-height: 80px;
  width: 100%;
}

.site-description {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.site-description,
.site-title {
  margin-bottom: 0;
}

.header-image .site-description,
.header-image .site-title {
  display: block;
  text-indent: -9999px;
}

/* ## Widget Area
--------------------------------------------- */
.site-header .widget-area {
  float: right;
  text-align: right;
  width: 800px;
}

/* # Site Navigation
---------------------------------------------------------------------------------------------------- */
.genesis-nav-menu {
  clear: both;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  width: 100%;
}

.genesis-nav-menu .menu-item {
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: left;
}

.genesis-nav-menu a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 32px 20px;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus {
  color: #c3251d;
  text-decoration: underline;
}

.genesis-nav-menu .sub-menu {
  border-top: 1px solid #eee;
  left: -9999px;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 200px;
  z-index: 99;
}

.genesis-nav-menu .sub-menu a {
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 0;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 20px;
  position: relative;
  width: 200px;
  word-wrap: break-word;
}

.genesis-nav-menu .sub-menu .sub-menu {
  margin: -56px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
  position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
  left: auto;
  opacity: 1;
}

.genesis-nav-menu > .first > a {
  padding-left: 0;
}

.genesis-nav-menu > .last > a {
  padding-right: 0;
}

.genesis-nav-menu > .right {
  float: right;
}

/* ## Accessible Menu
--------------------------------------------- */
.menu .menu-item:focus {
  position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
  left: auto;
  opacity: 1;
}

.sub-menu-toggle,
.menu-toggle {
  display: none;
  visibility: hidden;
}

/* ## Site Header Navigation
--------------------------------------------- */
.site-header .genesis-nav-menu li li {
  margin-left: 0;
}

/* ## After Header Navigation
--------------------------------------------- */
.header-logo {
  position: absolute;
  color: #fff;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 120px;
    left: 10px;
    top: 10px;
  }
}
@media screen and (max-width: 380px) {
  .header-logo {
    width: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 860px) {
  .header-logo {
    width: 90px;
    padding-top: 5px;
  }
}
@media screen and (min-width: 860px) and (max-width: 1023px) {
  .header-logo {
    width: 130px;
    top: 2px;
    left: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .header-logo {
    width: 180px;
    vertical-align: middle;
    top: 10px;
  }
}
.header-logo img {
  width: 100%;
}

.header-search-nav {
  background: #f7f8f1;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
  font-weight: bold;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  min-height: 60px;
}

@media screen and (max-width: 1023px) {
  .header-search-nav .wrap {
    max-width: 960px;
  }
}
@media (max-width: 600px) and (min-width: 400px) {
  .header-search-nav {
    padding-left: 110px;
  }

  div.header-login-buttons {
    height: auto;
    padding-top: 0;
    padding-bottom: 15px;
  }
}
.header-login-buttons {
  display: inline-block;
  position: relative;
  height: 60px;
  vertical-align: middle;
  padding-top: 14px;
  padding-left: 10px;
}

@media screen and (max-width: 440px) {
  .header-login-buttons {
    position: absolute;
    left: 10px;
    top: 67px;
    z-index: 2;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio] {
  margin-top: 0 !important;
}

.gform_wrapper li.gfield ul.gfield_checkbox li label {
  font-size: 1em;
}

@media screen and (max-width: 440px) {
  .header-login-buttons a {
    color: #fff;
  }
}
.header-search-form {
  display: inline-block;
  position: relative;
  height: 60px;
  vertical-align: middle;
  padding-top: 14px;
}

.header-search-form input[type=search] {
  border-radius: 5px;
  width: 150px;
  padding: 2px 32px 2px 6px;
  font-size: 0.75em;
  margin: 0px;
  min-height: 30px;
  border-color: #CCCCCC;
}

@media screen and (min-width: 768px) and (max-width: 880px) {
  .header-search-form input[type=search] {
    width: 130px;
  }
}
@media screen and (max-width: 380px) {
  .header-search-form input[type=search] {
    width: 130px;
  }
}
.header-search-form input[type=submit],
.header-search-form button {
  width: 26px;
  height: 26px;
  position: absolute;
  right: 2px;
  padding: 0px;
  font-size: 1em;
  margin-top: 2px;
  border-radius: 5px;
  margin: 2px 0px 0px 0px;
  text-indent: -999px;
  overflow: hidden;
  background-size: 14px;
  background-position: center;
}

.btn-header-search,
.btn-header-search:hover,
.btn-header-search:link,
.btn-header-search:active {
  background-image: url(../images/template/header-search-button@2x.png);
  background-repeat: no-repeat;
  background-color: #000;
  color: #fff;
}

/* Header Social Media Icons */
.header-social {
  display: inline-block;
  position: relative;
}

.header-social a {
  display: inline-block;
  color: #fff;
  background-color: #000;
  border-radius: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  margin-left: 8px;
  padding: 0px;
}

.header-social a i {
  vertical-align: middle;
  color: #fff;
}

.header-search-nav ul {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .header-search-nav ul {
    width: 100%;
  }
}
.header-search-nav ul li {
  display: inline-block;
  vertical-align: middle;
}

.header-search-nav ul li {
  display: inline-block;
  padding-right: 5px;
  padding-top: 0px;
  font-size: 1.6rem;
  font-weight: 700;
}

.header-search-nav ul li i {
  font-size: 0.3em;
  vertical-align: middle;
  color: #d0a536;
}

@media screen and (min-width: 768px) and (max-width: 880px) {
  .header-search-nav ul li {
    font-size: 1.16rem;
  }
}
.header-search-nav ul li a {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
}

.header-search-nav ul li a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 880px) {
  .header-login-buttons a.btn {
    padding-left: 0;
    padding-right: 0;
  }
}
/*  Mega Menu */
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:after {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

div#mega-menu-wrap-primary {
  background: transparent;
}

@media screen and (min-width: 1024px) {
  div#mega-menu-wrap-primary {
    padding-left: 180px;
    width: 1033px;
    margin: auto;
    display: block;
  }
}
@media screen and (min-width: 865px) and (max-width: 1023px) {
  div#mega-menu-wrap-primary {
    margin: auto;
    display: block;
    width: 850px;
  }
}
@media screen and (min-width: 768px) and (max-width: 865px) {
  div#mega-menu-wrap-primary {
    margin: auto;
    display: block;
    max-width: 777px;
    width: 100%;
  }
}
#mega-menu-wrap-primary .mega-menu-toggle {
  background: #000;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  background: #ffffff;
}

@media screen and (min-width: 768px) {
  #mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
    min-width: 80px;
    display: inline-block;
  }
}
@media only screen and (max-width: 860px) {
  .nav-primary .wrap {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* Level 1 navigation */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children > a.mega-menu-link:after {
  content: "\f347";
}

@media screen and (max-width: 768px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children > a.mega-menu-link:after {
    position: absolute;
    right: 20px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-register > a.mega-menu-link {
  background: #d0a536;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 865px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-register > a.mega-menu-link {
    padding-left: 7px;
    padding-right: 7px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  text-align: center;
  height: 60px;
  padding-top: 10px;
  padding-left: 7px;
  padding-right: 7px;
  font-size: 1.5rem;
}

@media screen and (max-width: 865px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding-left: 7px;
    padding-right: 7px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  font-weight: 700;
  background: #000;
  color: #fff;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus {
  background: #ffffff;
  color: #000;
  font-weight: 700;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-visitors > a.mega-menu-link:focus:after {
  color: #B4D758;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-exhibitors > a.mega-menu-link:focus:after {
  color: #CFA439;
}

li.mega-menu-item:nth-of-type(1) a.mega-menu-link:hover:after {
  color: #B4D758 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  text-transform: normal;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  height: 60px;
  padding-top: 10px;
  font-size: 1.063em;
}

@media screen and (max-width: 1052px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 1em;
  }
}
@media screen and (max-width: 865px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 0.95em;
  }
}
/* Level 2 navigation */
@media screen and (min-width: 768px) {
  #mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
    display: inline-block;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0px 10px 10px 10px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 1.2rem;
  text-transform: none;
  color: #000;
  cursor: default;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
  color: #000;
  cursor: default;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  padding: 0px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    display: block;
    width: 100%;
    border-right: none;
  }
}
@media screen and (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    margin-top: 28px;
    margin-bottom: 45px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5:first-child {
    padding-left: 20px;
  }

  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5:last-child {
    padding-right: 20px;
    border-right: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
/* visitors sub navigation */
@media screen and (min-width: 768px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-visitors > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    border-right: 1px solid #B4D758;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-visitors > ul.mega-sub-menu li.mega-menu-columns-1-of-5:last-child {
  border-right: none;
}

/* exhibitors sub navigation */
@media screen and (min-width: 768px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-exhibitors > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    border-right: 1px solid #CFA439;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-exhibitors > ul.mega-sub-menu li.mega-menu-columns-1-of-5:last-child {
  border-right: none;
}

/* Level 3 primary navigation */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  font-size: 1.3rem;
  line-height: 1.2em;
  padding-bottom: 8px;
  color: #656565;
  font-family: "museo-sans", "Arial", Helvetica, sans-serif;
}

@media screen and (min-width: px) and (max-width: px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    display: inline-block;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
  text-decoration: underline;
  color: #000;
}

@media screen and (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    width: 20%;
  }
}
.nav-primary {
  background-color: #000;
  color: #fff;
  border-top: 1px solid #eee;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.nav-primary wrap {
  max-width: 800px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
  border: none !important;
}

#mega-menu-wrap-primary li.mega-login a.mega-menu-link {
  background-color: #CFA439 !important;
  color: #fff !important;
  border-radius: 5px !important;
  padding: 3px 8px !important;
  text-transform: uppercase !important;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 1.2rem !important;
}

#mega-menu-wrap-primary li.mega-login a.mega-menu-link:hover {
  text-decoration: none !important;
}

#mega-menu-wrap-primary .form-group.infield {
  position: relative;
}

#mega-menu-wrap-primary .form-group.infield label:first-child {
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  color: #444;
  position: absolute;
  top: 5px;
  left: 11px;
  font-size: 1.3rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

#mega-menu-wrap-primary .form-group.infield input, #mega-menu-wrap-primary .form-group.infield select, #mega-menu-wrap-primary .form-group.infield textarea {
  background-color: #fff;
  color: #555;
  font-size: 1.6rem;
  width: 100%;
  border-radius: 5px;
  padding: 30px 10px 10px 10px;
}

.mega-toggle-blocks-right {
  float: right;
  margin-right: 6px;
}

button.mega-toggle-animated.mega-toggle-animated-slider {
  background: transparent;
  font-weight: normal;
  padding: 15px 0 5px;
  height: 100%;
  vertical-align: middle;
}

.mega-toggle-animated-inner:before {
  content: "\f333";
  font-family: "dashicons";
  font-size: 24px;
  margin: 0 0 0 5px;
  color: #fff;
  position: relative;
  top: -2px;
}

.mega-toggle-animated-inner:after {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  content: "MENU";
  color: #fff;
  float: left;
}

/* # Gravity Forms
--------------------------------------------- */
input[readonly=readonly] {
  background-color: #ddd;
}

/* ## Footer Navigation
--------------------------------------------- */
.site-footer .genesis-nav-menu {
  padding-bottom: 20px;
}

.site-footer .genesis-nav-menu a {
  padding: 0 20px 10px;
}

/* # Content Area
---------------------------------------------------------------------------------------------------- */
/* ## Entries
--------------------------------------------- */
.entry {
  background-color: #fff;
}

.entry-content ol,
.entry-content ul {
  margin-bottom: 28px;
  margin-left: 40px;
}

.entry-content ol > li {
  list-style-type: inherit;
}

.entry-content ul > li {
  list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
  margin-bottom: 0;
}

.entry-content code {
  background-color: #333;
  color: #eee;
}

/* ## Entry Meta
--------------------------------------------- */
p.entry-meta {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.entry-header .entry-meta {
  margin-bottom: 24px;
}

.entry-footer .entry-meta {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.entry-categories,
.entry-tags {
  display: block;
}

.entry-comments-link::before {
  content: "—";
  margin: 0 6px 0 2px;
}

/* ## Pagination
--------------------------------------------- */
.pagination {
  clear: both;
  margin: 40px 0;
}

.adjacent-entry-pagination {
  margin-bottom: 0;
}

.archive-pagination li {
  display: inline;
}

.archive-pagination a {
  background-color: #fff;
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
}

.archive-pagination a:hover,
.archive-pagination a:focus,
.archive-pagination .active a {
  background-color: #B4D758;
  color: #fff;
}

/* ## Comments
--------------------------------------------- */
.comment-respond,
.entry-comments,
.entry-pings {
  background-color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.comment-respond,
.entry-pings {
  padding: 60px 60px 32px;
}

.entry-comments {
  padding: 60px;
}

.comment-list li {
  padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
  padding-left: 0;
}

.comment-header {
  margin-bottom: 30px;
}

.comment-content {
  clear: both;
}

.comment-content ul > li {
  list-style-type: disc;
}

.comment-respond input[type=email],
.comment-respond input[type=text],
.comment-respond input[type=url] {
  width: 50%;
}

.comment-respond label {
  display: block;
  margin-right: 12px;
}

.comment-header p {
  margin-bottom: 0;
}

.entry-pings .reply {
  display: none;
}

/* # Sidebars
---------------------------------------------------------------------------------------------------- */
.sidebar {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.sidebar .widget {
  background-color: #fff;
  padding: 40px;
}

/* # Footer Widgets
---------------------------------------------------------------------------------------------------- */
.footer-widgets {
  background-color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  clear: both;
  padding: 60px 0;
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
  width: 380px;
}

.footer-widgets-1 {
  margin-right: 70px;
}

.footer-widgets-1,
.footer-widgets-2 {
  float: left;
}

.footer-widgets-3 {
  float: right;
}

/* # Site Footer
---------------------------------------------------------------------------------------------------- */
.site-footer {
  background-color: #fff;
  border-top: 1px solid #eee;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 60px 0;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
}

/* # Filtering Forms  */
.block-group-filter .block-venue {
  padding-top: 20px;
  padding-bottom: 20px;
  width: auto;
  padding-right: 10px;
}

.block-group-filter .block-schedule {
  padding-top: 20px;
  padding-bottom: 20px;
  width: auto;
  padding-right: 10px;
}

.block-group-filter .block-keywords {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  width: 250px;
  padding-right: 10px;
}

.block-group-filter {
  font-size: 1.3rem;
}

.block-group-filter input[type=search] {
  padding: 10px;
  margin: 0 5px;
}

.block-group-filter input[type=submit],
.block-group-filter .btn-search {
  width: 33px;
  height: 33px;
  position: absolute;
  padding: 0px;
  font-size: 1em;
  margin-top: 2px;
  border-radius: 5px;
  margin: 2px 0px 0px 0px;
  text-indent: -999px;
  overflow: hidden;
  background-size: 20px;
  background-position: center;
  top: 23px;
  right: 10px;
}

.block-group-filter input[type=search] {
  font-size: 1.3rem;
  border-color: #D2D2D2;
  border-radius: 5px;
  position: relative;
  font-weight: 700;
}

.btn-search,
.btn-search:hover,
.btn-search:link,
.btn-search:active,
.btn-search:focus {
  background-image: url(../images/template/form-search-button@2x.png);
  background-repeat: no-repeat;
  background-color: #F7F9F2;
}

/* # Archive News
---------------------------------------------------------------------------------------------------- */
body.post-type-archive-news .newsletter-text {
  width: 45%;
  padding-bottom: 30px;
  font-size: 0.72em;
  font-weight: 100;
  line-height: 1.4em;
}
body.post-type-archive-news .newsletter-signup {
  display: flex;
  width: 55%;
}
body.post-type-archive-news .icon-newsletter {
  margin-right: 10px;
}
@media (max-width: 767px) {
  body.post-type-archive-news .icon-newsletter {
    margin-top: 3px;
  }
}
@media (max-width: 900px) {
  body.post-type-archive-news .newsletter-text {
    width: 100%;
    padding-bottom: 5px;
    font-weight: normal;
  }
  body.post-type-archive-news .newsletter-signup {
    width: 100%;
  }
}
@media (max-width: 480px) {
  body.post-type-archive-news .newsletter-text,
body.post-type-archive-news .newsletter-signup,
body.post-type-archive-news .contact-info,
body.post-type-archive-news .icons {
    margin-bottom: 0 !important;
  }
}
body.post-type-archive-news .intro .gform_wrapper {
  margin-top: 0;
}
@media (max-width: 767px) {
  body.post-type-archive-news .intro .gform_wrapper {
    width: 100%;
  }
}
body.post-type-archive-news .intro .gform_wrapper form {
  display: flex;
}
@media (max-width: 480px) {
  body.post-type-archive-news .intro .gform_wrapper form {
    flex-direction: column;
    align-items: end;
  }
  body.post-type-archive-news .intro .gform_wrapper form .gform_body {
    width: 100%;
  }
  body.post-type-archive-news .intro .gform_wrapper form .gform_footer {
    margin-right: 10px;
  }
}
body.post-type-archive-news .intro .gform_wrapper .field_sublabel_below {
  margin-top: 3px;
}
body.post-type-archive-news .intro .gform_wrapper .ginput_container_email {
  margin-top: 0;
}
@media (max-width: 767px) {
  body.post-type-archive-news .intro .gform_wrapper .ginput_container_email {
    margin-right: 10px;
  }
}
body.post-type-archive-news .intro .gform_wrapper input[type=text] {
  width: 100%;
  height: 32px;
  min-width: 32px;
  margin-top: 0;
  font-size: 0.8em !important;
  font-weight: 100;
}
@media (max-width: 767px) {
  body.post-type-archive-news .intro .gform_wrapper input[type=text] {
    min-height: 42px !important;
  }
}
body.post-type-archive-news .intro .gform_wrapper input.button {
  background: #c3a439;
  font-size: 0.8em;
  font-weight: 400;
  padding: 11px 20px;
}
@media (max-width: 767px) {
  body.post-type-archive-news .intro .gform_wrapper input.button {
    min-width: 32px;
    line-height: 1em !important;
  }
}
body.post-type-archive-news .intro .gform_wrapper .gform_footer {
  width: 13%;
  margin-top: 0;
  padding-top: 5px;
}
@media (max-width: 767px) {
  body.post-type-archive-news .intro .gform_wrapper .gform_footer {
    width: 25%;
    min-width: 132px;
    padding-top: 4px;
  }
}
body.post-type-archive-news .intro .contact-info {
  border-top: 1px solid;
  font-size: 0.8em;
  line-height: 1.4em;
  font-weight: bold;
  padding: 30px 0 0;
}
body.post-type-archive-news .intro .contact-info p {
  margin-bottom: 10px;
}
body.post-type-archive-news .intro .contact-info .icons span {
  display: inline-block;
  min-width: 240px;
  font-weight: 100;
}
@media (max-width: 900px) {
  body.post-type-archive-news .intro .contact-info .icons span {
    min-width: auto;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  body.post-type-archive-news .intro .contact-info .icons span {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  body.post-type-archive-news .intro .contact-info .icons span .person img {
    margin-right: 20px;
  }
  body.post-type-archive-news .intro .contact-info .icons span .phone img {
    margin-right: 15px;
  }
}
body.post-type-archive-news .intro .contact-info img {
  margin-right: 10px;
}
body.post-type-archive-news .intro .contact-info .person img {
  width: 21px;
}
body.post-type-archive-news .intro .contact-info .phone img {
  width: 26px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
body.post-type-archive-news .intro .contact-info .email img {
  width: 31px;
}

/* # Speaker Series
---------------------------------------------------------------------------------------------------- */
.yotu-playlist .yotu-wrapper-player {
  width: 100% !important;
  max-width: 960px;
}
.yotu-playlist .yotu-mode-carousel {
  float: none;
  max-width: 840px;
  margin: 0 auto;
}
.yotu-playlist ul.owl-carousel.owl-loaded.owl-drag {
  margin: 0;
}
.yotu-playlist .yotu-mode-carousel .owl-prev,
.yotu-playlist .yotu-mode-carousel .owl-next {
  top: 23%;
  opacity: 1;
}
.yotu-playlist .yotu-mode-carousel .owl-prev {
  left: -60px;
}
.yotu-playlist .yotu-mode-carousel .owl-next {
  right: -60px;
}
.yotu-playlist .yotu-thumbnails .owl-prev:before,
.yotu-playlist .yotu-thumbnails .owl-next:before,
.yotu-playlist .yotu-mode-carousel .owl-prev:before,
.yotu-playlist .yotu-mode-carousel .owl-next:before {
  color: #caaf38;
}
.yotu-playlist .yotu-videos .yotu-video .yotu-video-thumb {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.yotu-playlist .yotu-videos .yotu-video:hover .yotu-video-thumb {
  -webkit-transform: translateY(-50%) scale(1.5);
  transform: translateY(-50%) scale(1.5);
}
.yotu-playlist .yotu-videos .yotu-video .yotu-video-thumb-wrp::after {
  transition: all 0.6s ease;
  transform: translateY(-50%) translateX(-50%) scale(1.25);
}
.yotu-playlist .yotu-videos .yotu-video:hover .yotu-video-thumb-wrp::after {
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
}
@media (max-width: 1024px) {
  .yotu-playlist .yotu-mode-carousel {
    padding: 20px 60px;
  }
}
@media (max-width: 480px) {
  .yotu-playlist .yotu-mode-carousel {
    padding: 20px 35px;
  }
  .yotu-playlist .yotu-mode-carousel .owl-prev,
.yotu-playlist .yotu-mode-carousel .owl-next {
    width: 25px;
  }
  .yotu-playlist .yotu-mode-carousel .owl-prev {
    left: -30px;
  }
  .yotu-playlist .yotu-mode-carousel .owl-prev:before,
.yotu-playlist .yotu-mode-carousel .owl-next:before {
    margin-left: -15px;
  }
  .yotu-playlist .yotu-mode-carousel .owl-next {
    right: -30px;
  }
}

/* # Media Queries
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1340px) {
  .site-inner,
.wrap {
    max-width: 1140px;
  }

  .content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
    width: 920px;
  }

  .content,
.site-header .widget-area {
    width: 800px;
  }

  .sidebar-content-sidebar .content,
.sidebar-sidebar-content .content,
.content-sidebar-sidebar .content {
    width: 580px;
  }

  .sidebar-primary {
    width: 300px;
  }

  .footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
    width: 340px;
  }

  .footer-widgets-1 {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .site-inner,
.wrap {
    max-width: 960px;
  }

  .nav-primary .wrap {
    max-width: 1200px;
  }

  .content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
    width: 740px;
  }

  .content,
.site-header .widget-area {
    width: 620px;
  }

  .sidebar-content-sidebar .content,
.sidebar-sidebar-content .content,
.content-sidebar-sidebar .content {
    width: 400px;
  }

  .footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
    width: 300px;
  }

  .footer-widgets-1 {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .site-inner,
.wrap {
    max-width: 800px;
  }

  .content,
.content-sidebar-sidebar .content,
.content-sidebar-sidebar .content-sidebar-wrap,
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.js .genesis-nav-menu .sub-menu a,
.js .genesis-nav-menu .sub-menu,
.sidebar-content-sidebar .content,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-primary,
.sidebar-secondary,
.sidebar-sidebar-content .content,
.sidebar-sidebar-content .content-sidebar-wrap,
.site-header .widget-area,
.title-area {
    width: 100%;
  }

  .site-header .wrap {
    padding-left: 5%;
    padding-right: 5%;
  }

  .genesis-nav-menu li,
.header-image .title-area,
.site-header ul.genesis-nav-menu,
.site-header .search-form {
    float: none;
  }

  .genesis-nav-menu,
.site-description,
.site-header .title-area,
.site-header .widget-area,
.site-title {
    text-align: center;
  }

  .site-header .search-form {
    margin: 16px auto;
  }

  .js nav.nav-primary,
.js .site-header nav {
    /*display: none;*/
    position: relative;
  }

  .js .site-header nav .wrap {
    padding: 0;
  }

  .js nav.pagination {
    display: block;
  }

  .menu-toggle,
.sub-menu-toggle {
    border-width: 0;
    background-color: #fff;
    color: #333;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    visibility: visible;
  }

  .sub-menu-toggle:hover,
.sub-menu-toggle:focus {
    border-width: 0;
  }

  .menu-toggle {
    border-top: 1px solid #eee;
    line-height: 20px;
    position: relative;
    right: 0;
    z-index: 1000;
    width: 100%;
  }

  .site-header .menu-toggle {
    border: 0;
  }

  .menu-toggle:before,
.menu-toggle.activated:before {
    margin-right: 10px;
    text-rendering: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .sub-menu-toggle {
    float: right;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
  }

  .sub-menu-toggle:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .sub-menu-toggle.activated:before {
    content: "\f142";
  }

  .js .nav-primary .genesis-nav-menu .menu-item,
.js .site-header .genesis-nav-menu .menu-item {
    display: block;
    float: none;
    margin: 1px 0;
    position: relative;
    text-align: left;
  }

  .js .genesis-nav-menu .menu-item:hover {
    position: relative;
  }

  .js .nav-primary .genesis-nav-menu .menu-item a,
.js .site-header .genesis-nav-menu .menu-item a {
    border: none;
    padding: 12px 0;
    width: 100%;
  }

  .js .genesis-nav-menu .sub-menu {
    border: none;
  }

  .js .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
.js .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
    left: 0;
    margin-left: 0;
  }

  .js .genesis-nav-menu > .menu-item-has-children > a:after {
    content: none;
  }

  .js .genesis-nav-menu .sub-menu {
    clear: both;
    display: none;
    margin: 0;
    opacity: 1;
    padding-left: 15px;
    position: static;
    width: 100%;
  }

  .js .genesis-nav-menu .sub-menu .sub-menu {
    margin: 0;
  }

  .js nav button:hover,
.js .menu-toggle:hover {
    background-color: #fff;
    color: #000;
  }

  .js .nav-primary {
    background-color: #000;
    color: #fff;
  }

  .js nav button:focus,
.js .menu-toggle:focus {
    background-color: #fff;
    color: #c3251d;
  }

  .footer-widgets-1,
.footer-widgets-2 {
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 860px) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .site-inner {
    padding: 5% 5% 0;
  }

  .wrap {
    padding-left: 5%;
    padding-right: 5%;
  }

  .after-entry,
.archive-description,
.author-box,
.comment-respond,
.entry-comments,
.entry-pings,
.sidebar .widget {
    padding: 30px;
    margin-bottom: 5%;
  }

  .sidebar {
    margin-bottom: 5%;
  }

  .pagination {
    margin: 5% auto;
  }

  .archive-pagination li a {
    margin-bottom: 4px;
  }

  .five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
    margin: 0;
    width: 100%;
  }
}
/* Exhibitor and Maps */
.page.page-id-2 #content,
.page.page-id-4898 #content {
  float: left;
  margin: 0 0 0 25px;
  width: 630px;
}

span.searchInstructions {
  float: left;
  display: block;
  width: 30px;
  height: 40px;
  font-size: 1.5em;
  margin-top: -2px;
}

.page.page-id-2 ul#menu-main.menu li.page_item a span,
.page.page-id-4898 ul#menu-main.menu li.page_item a span {
  line-height: inherit;
}

#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -35px 0 0 -80px;
  z-index: 99;
  background: #fff;
  padding: 25px 50px;
  border-radius: 10px;
  border: 1px solid;
}

.page-id-2 div.searchField,
.page-id-4898 div.searchField {
  display: inline-block;
  height: 36px;
  width: auto;
}

.page-id-2 div.searchField input[type=text],
.page-id-4898 div.searchField input[type=text] {
  width: 180px;
  height: 42px;
  margin-right: 5px;
}

.page-id-2 div.searchField input[type=submit],
.page-id-4898 div.searchField input[type=submit] {
  min-height: 42px;
}

#searchTabWrapper {
  display: inline-block;
  width: auto;
  padding-bottom: 10px;
}

#searchTabWrapper span {
  display: inline-block;
  padding-right: 10px;
}

#searchTabWrapper .btn.active {
  color: #fff !important;
  background-color: #a6c74e !important;
}

span a.searchTabs {
  padding: 9px 0;
  display: block;
  background-color: #f7f9f2;
  color: #999999;
  cursor: pointer;
  text-decoration: none;
}

td.favourite label {
  cursor: pointer;
}

td.favourite input {
  display: none;
}

td.boothInfo {
  min-width: 60px;
}

#a-zLinks {
  margin-bottom: 5px;
  margin-top: -13px;
}

#a-zLinks a {
  display: inline-block;
  padding: 0 10px;
}

#a-zLinks a:hover {
  color: #ff4b33;
}

#a-zLinks a#toTop {
  position: fixed;
  bottom: 0;
  padding: 7px 12px !important;
  text-decoration: none !important;
  background: rgba(145, 145, 145, 0.54);
  z-index: 9;
  text-align: center;
  display: none;
  right: 30%;
}

span#categoryTab {
  padding-right: 5px;
}

table#catResults, table#exhibSearchResults, table.ExhibitorListing {
  margin-left: 10px;
}

table#catResults tr, table#exhibSearchResults tr, table.ExhibitorListing tr {
  height: 30px;
}

table#catResults td, table#exhibSearchResults td, table.ExhibitorListing td {
  vertical-align: top;
  padding: 0 10px 10px 0;
}

table#catResults td a, table#exhibSearchResults td a, table.ExhibitorListing td a {
  text-decoration: underline;
  font-weight: 700;
}

p#noExhListed {
  text-align: center;
  padding: 20px;
  color: #004054;
  border-radius: 10px;
  border: 1px solid #004054;
  width: 50%;
  margin: 10px auto;
}

div#yourMapTabs {
  width: 65%;
  margin: 10px auto;
  text-align: center;
}

#yourMapTabs > a {
  width: 20%;
  display: inline-block;
}

#theMaps {
  margin-top: -28px;
}

div[id^=mapsvg] {
  height: 100% !important;
}

div#mapList {
  width: 100%;
  margin: 0 auto -10px;
  text-align: center;
  display: inline-block;
}

div#mapList h3 {
  padding: 9px 0;
  display: inline-block;
  background-color: #015F7C;
  color: #fff;
  text-decoration: none;
  width: 100%;
}

div#mapList ul li {
  list-style: none;
  margin-bottom: 5px;
}

div#mapList ul li > span {
  display: inline-block;
  width: 100%;
  margin-bottom: -5px;
}

div#mapList ul li span > a {
  display: inline-block;
  color: #015F7C;
  text-decoration: underline;
  font-weight: 700;
}

a.theMap {
  float: left;
  padding: 10px 0 10px 13px;
  font-size: 1.2em;
}

#mapAll {
  padding-bottom: 5px;
}

.allThePDFs {
  padding: 10px 35px 10px 0;
  margin-right: 5px;
  background-image: url(/wp-content/themes/agdays-2017/images/Adobe_PDF_icon.png);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: right center;
  font-size: 1em;
}

a.thePDF {
  float: right;
  padding: 10px 35px 10px 0;
  margin-right: 5px;
  background-image: url(/wp-content/themes/agdays-2017/images/Adobe_PDF_icon.png);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: right center;
  font-size: 1em;
}

.noMaps {
  padding: 5px;
}

td.favourite {
  padding-left: 26px;
  max-width: 80px;
  width: 75px;
  min-width: 60px;
  text-align: center;
  vertical-align: top;
}

label.mobileBookmark {
  display: none;
}

.mapOverlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  text-align: center;
  z-index: 99900;
}

.mapOverlay .mapsvg {
  margin: auto;
  width: 96% !important;
  max-width: 800px !important;
  max-height: 88% !important;
  top: 10px;
}

.mapHeader {
  width: 96%;
  max-width: 800px;
  display: inline-block;
  position: relative;
  top: 12px;
  margin: 10px auto auto;
  background: #000;
}

#mapTitle span {
  background: 0 0;
}

#mapTitle a, #mapTitle span {
  float: left;
  background: #d0a536;
  color: #fff;
  text-decoration: none;
}

#mapTitle a:hover {
  background: #deb03a;
  color: #ffffff;
}

#mapTitle a.active {
  background: #deb03a;
  color: #ffffff;
}

img#btnZoomIn, img#btnZoomOut {
  padding: 10px;
  /*margin-left: -30px;*/
  background: rgba(205, 205, 205, 0.4);
  border-radius: 10px;
  border: 1px solid #777;
}

svg {
  margin-top: 1px;
}

div#iframWrapper {
  width: 96%;
  max-width: 800px;
  height: 90%;
  max-height: 579px;
  margin: auto;
}

@media screen and (max-height: 470px) {
  #iframWrapper, .mapOverlay .mapsvg {
    max-height: 85% !important;
  }
}
@media screen and (max-height: 350px) {
  #iframWrapper, .mapOverlay .mapsvg {
    max-height: 78% !important;
  }
}
div.map_popover {
  z-index: 99909 !important;
  position: fixed !important;
}

.mapHeader span a:link {
  padding: 10px 15px;
  background: rgba(205, 205, 205, 0.4);
  float: right;
  font-weight: 700;
  color: #fffcfc;
  text-decoration: none;
  cursor: pointer;
}

.mapHeader span a:hover {
  color: #fff;
  background: #fb6b6b;
}

#wrapper.map {
  max-width: none;
  background-color: #fff;
  font-size: 1.5em;
  text-align: center;
}

/* # Print Styles
---------------------------------------------------------------------------------------------------- */
@media print {
  *,
*:before,
*:after {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="javascript:"]:after,
a[href^="#"]:after,
.site-title > a:after {
    content: "";
  }

  thead {
    display: table-header-group;
  }

  img,
tr {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 2cm 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  blockquote,
pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  .content,
.content-sidebar {
    width: 100%;
  }

  button,
input,
select,
textarea,
.breadcrumb,
.comment-edit-link,
.comment-form,
.comment-list .reply a,
.comment-reply-title,
.edit-link,
.entry-comments-link,
.entry-footer,
.genesis-box,
.header-widget-area,
.hidden-print,
.home-top,
.nav-primary,
.nav-secondary,
.post-edit-link,
.sidebar {
    display: none !important;
  }

  .title-area {
    text-align: center;
    width: 100%;
  }

  .site-title > a {
    margin: 0;
    text-decoration: none;
    text-indent: 0;
  }

  .site-inner {
    padding-top: 0;
    position: relative;
    top: -100px;
  }

  .author-box {
    margin-bottom: 0;
  }

  h1,
h2,
h3,
h4,
h5,
h6 {
    orphans: 3;
    page-break-after: avoid;
    page-break-inside: avoid;
    widows: 3;
  }

  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  blockquote,
pre,
table {
    page-break-inside: avoid;
  }

  dl,
ol,
ul {
    page-break-before: avoid;
  }
}
.color-green {
  color: #B4D758;
}

.color-gold {
  color: #d0a536;
}

.btn {
  margin: 0 10px 0px 0px;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  border: none;
  font-size: 1.3rem;
  padding: 1.4rem;
  line-height: 1.4rem;
}

.btn.btn-small {
  line-height: 1rem;
  padding: 1rem;
  font-size: 1.3rem;
}

.btn:first-child {
  margin-left: 0px;
}

.btn:last-child {
  margin-right: 0px;
}

.btn.btn-no-margins {
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-top: 5px !important;
}

input[type=button].btn,
input[type=submit].btn,
a.btn,
select.btn {
  font-weight: 700;
}

option {
  background: #ffffff;
  color: #000000;
}

option:hover {
  background: #ffffff;
  color: #000000;
}

.btn-green {
  color: #fff;
  background-color: #B4D758;
}

.btn-green:hover {
  color: #fff;
  background-color: #a6c74e;
}

.btn.btn-hover-green:hover {
  color: #fff;
  background-color: #a6c74e;
}

input.btn-green {
  color: #fff;
  background-color: #B4D758;
}

input.btn-green:hover {
  color: #fff;
  background-color: #B4D758;
}

input.btn-hover-green:hover {
  color: #fff;
  background-color: #a6c74e;
}

input.btn-gold {
  color: #fff;
  background-color: #d0a536;
}

input.btn-gold:hover,
input.btn-gold:focus {
  color: #fff;
  background-color: #b99129;
}

input.btn.btn-hover-gold:hover {
  color: #fff;
  background-color: #b99129;
}

.btn-big {
  font-size: 1.5em;
  padding: 20px 30px;
}

.btn-gold {
  color: #fff;
  background-color: #d0a536;
}

.btn-gold:hover,
.btn-gold:focus {
  color: #fff;
  background-color: #b99129;
}

.btn.btn-hover-gold:hover {
  color: #fff;
  background-color: #b99129;
}

.btn-light {
  color: #999999;
  background-color: #f7f9f2;
}

.btn-light:hover {
  color: #000;
  background-color: #CCCCCC;
}

.btn-link {
  color: #000;
}

.btn-link:hover {
  color: #2c2927;
}

.btn-on-light {
  background: #C2C6B5;
  color: #fff;
}

.btn-on-light:hover, .btn-on-light:active {
  background-color: #B5D855;
  color: #fff;
}

.tg-grid-wrapper {
  margin: auto;
}

@media screen and (min-width: 1600px) {
  .tg-grid-wrapper {
    max-width: 1440px;
  }
}
article.tg-item {
  margin-bottom: 10px;
}

article.tg-item.agdays-blog {
  margin-bottom: 42px;
}

div.tg-layout-masonry .tg-item-inner,
img.tg-item-image {
  height: 100%;
}

.tg-item-content-holder {
  position: static !important;
  margin-bottom: 32px;
}

.tg-item-read-more {
  /* position: absolute; */
  /* bottom: 0; */
}

.default .tg-grid-wrapper {
  margin: 0;
}

.tg-grid-area-top1 {
  margin: 10px 0px 20px 0px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F7F9F2;
}

div.tg-search-holder,
.tg-grid-wrapper.tg-grid-loaded .tg-search-holder {
  display: inline-block;
  float: none;
  /*width: 230px;*/
  width: 175px;
  margin: 0;
}

.tg-search {
  width: 140px !important;
  min-width: 140px !important;
}

.tg-search::-ms-clear {
  display: none;
}

input[type=text].tg-search {
  line-height: 27px !important;
}
@media (max-width: 480px) {
  input[type=text].tg-search {
    width: 85% !important;
    max-width: 100% !important;
  }
}

.tg-search-clear {
  position: absolute !important;
  right: 0px !important;
}

div.tg-sorters-holder {
  margin: 0 10px 0 0;
}

div.tg-filters-holder {
  margin-right: 5px;
}
div.tg-filters-holder span.tg-dropdown-title {
  width: 110px;
  line-height: 1em;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  div.tg-filters-holder span.tg-dropdown-title {
    width: 220px;
  }
}

@media screen and (max-width: 768px) {
  div.tg-filters-holder {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  div.tg-filters-holder {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  div.tg-filter:nth-of-type(2) {
    margin-right: 0;
    width: 50%;
  }
}
div.tg-filter {
  background-color: #F7F9F2;
  padding: 5px 10px;
}

@media screen and (max-width: 480px) {
  div.tg-filter {
    width: 49%;
    margin-right: 1%;
  }
}
div.tg-filter .tg-filter-name {
  padding: 0;
}

div.tg-filter.tg-filter-active {
  background-color: #b4d758;
}

div.tg-filter.tg-filter-active span {
  color: #fff !important;
}

div.tg-filter:hover {
  background-color: #b4d758;
}

div.tg-filter:hover span {
  color: #fff !important;
}

div.tg-filter span span {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

div.tg-filter:hover span span, div.tg-filter:after {
  -webkit-transition: background 0.3s linear, color 0.3s linear, border 0.3s linear, opacity 0.3s linear;
  -moz-transition: background 0.3s linear, color 0.3s linear, border 0.3s linear, opacity 0.3s linear;
  -ms-transition: background 0.3s linear, color 0.3s linear, border 0.3s linear, opacity 0.3s linear;
  -o-transition: background 0.3s linear, color 0.3s linear, border 0.3s linear, opacity 0.3s linear;
  transition: background 0.3s linear, color 0.3s linear, border 0.3s linear, opacity 0.3s linear;
}

div.tg-filter:after {
  content: "\f107";
  font-family: FontAwesome;
  color: #999999;
  padding: 5px;
}

div.tg-filter.tg-filter-active:after, div.tg-filter:hover:after {
  color: #fff;
}

.tg-dropdown-holder,
.tg-sorter-order {
  background-color: #f7f9f2;
  border: none !important;
}

@media screen and (max-width: 480px) {
  .tg-sorters-holder {
    width: 100%;
  }
}
div.tg-dropdown-holder {
  box-sizing: border-box;
  padding: 5px 10px;
}

@media screen and (max-width: 480px) {
  div.tg-dropdown-holder {
    width: 89%;
    margin-right: 1%;
  }
}
@media screen and (max-width: 480px) {
  div.tg-dropdown-holder .tg-dropdown-value {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  div.tg-sorter-order {
    width: 10%;
  }
}
.tg-dropdown-holder .tg-dropdown-title {
  color: #999999 !important;
}

.tg-sorter-order {
  padding: 5px;
}

.tg-sorter-order:hover,
.tg-sorter-order:hover i {
  color: #999999 !important;
}

.tg-dropdown-item:hover {
  background-color: #f7f9f2 !important;
}

.tg-search-inner.tg-nav-border {
  padding: 4px 0;
}

.grid-buttons {
  padding: 10px 0;
  margin: 0;
}

.grid-buttons .container {
  width: 100%;
  border-top: 1px solid #F7F9F2;
  border-bottom: 1px solid #F7F9F2;
  padding: 10px 0;
  margin: 10px 0;
  max-width: 100%;
}

.grid-buttons .row {
  max-width: 960px;
  margin: auto;
  text-align: center;
}

/*
.grid-buttons {

  padding: 10px 0;
}

.grid-buttons {
  border-top: 1px solid #F7F9F2;
  border-bottom: 1px solid #F7F9F2;
  padding: 10px 0;
  margin: 10px 0;
}

.grid-buttons-lined {
	margin: 10px 0;
	border-top: 1px solid #F7F9F2;
	border-bottom: 1px solid #F7F9F2;
}
*/
.grid-buttons .row {
  text-align: center;
  margin: auto;
}

.btn i.fa {
  padding: 0 5px;
}

.bold {
  font-weight: 700;
}

.footer .logo {
  margin: -4px 0 0 0;
  max-width: 85%;
}

@media screen and (max-width: 767px) {
  .footer .logo {
    margin: 0 20px 20px 0;
    max-width: 120px;
  }
}
.footer .widget-area-2 .menu li.btn a {
  padding: 5px 10px;
  color: #fff;
}

.footer h4 {
  margin-bottom: 0;
  font-size: 0.75em;
  font-weight: bold;
}

.footer p {
  font-size: 0.813em;
  color: #989898;
}

.footer a {
  color: #fff;
}

@media screen and (max-width: 800px) {
  .footer .nopadding {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer .nopadding {
    padding: 0 20px;
  }
}
@media screen and (max-width: 591px) {
  .footer .nopadding {
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 591px) {
  .footer .nopadding {
    margin: 0;
  }
}
.footer .widget-area-1 .widget-wrap div {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .footer .widget-area-1 .widget-wrap div {
    width: auto;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
  }

  .footer .widget-area-1 .widget-wrap div.entry-content {
    padding-top: 0;
  }
}
@media screen and (max-width: 360px) {
  .footer .widget-area-1 .widget-wrap div {
    width: 100%;
  }
}
.footer .widget-area-1 > section {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .footer .widget-area-1 > section {
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (max-width: 480px) {
  .footer .widget-area-1 > section {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .widget-area-1 .social {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
  }
}
@media screen and (max-width: 645px) {
  .footer .widget-area-1 .social {
    float: left;
    margin-right: 60px;
  }
}
@media screen and (max-width: 480px) {
  .footer .widget-area-1 .social {
    float: none;
    margin: 0 0 20px 0;
  }
}
.footer .widget-area-1 .social a {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
}

@media screen and (min-width: 591px) and (max-width: 685px) {
  .footer .widget-area-1 .social a {
    display: block;
    margin-bottom: 10px;
  }
}
.footer .widget-area-1 .social a i, .footer .widget-area-1 .social a i:before {
  color: #000;
  vertical-align: middle;
  padding-top: 3px;
}

.footer .widget-area-2 .widget-wrap div {
  display: inline-block;
  padding: 0;
}

.footer .widget-area-2 a {
  text-decoration: none;
  font-size: 0.938em;
}

@media screen and (max-width: 630px) {
  .footer .widget-area-2 a {
    font-size: 0.813em;
  }
}
.footer .widget-area-2 a:hover {
  text-decoration: underline;
}

.footer .widget-area-2 .left {
  float: left;
  width: 40%;
  margin-right: 17px;
}

@media screen and (max-width: 767px) {
  .footer .widget-area-2 .left {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .footer .widget-area-2 .left {
    width: 50%;
    margin-right: 5px;
  }
}
@media screen and (max-width: 360px) {
  .footer .widget-area-2 .left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer .widget-area-2-1,
.footer .widget-area-2-2,
.footer .widget-area-2-3 {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .widget-area-2-1 {
    display: inline-block;
    width: 53%;
  }
}
@media screen and (max-width: 645px) {
  .footer .widget-area-2-1 {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .footer .widget-area-2-1 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer .widget-area-2-2 {
    display: inline-block;
    width: 46%;
    vertical-align: top;
  }
}
@media screen and (max-width: 645px) {
  .footer .widget-area-2-2 {
    width: auto;
  }
}
.footer .widget-area-2-1 section.widget {
  margin-bottom: 10px;
}

.footer .widget-area-2-1 a {
  line-height: 1em;
  display: inline-block;
  padding-bottom: 10px;
  vertical-align: top;
}

.footer .widget-area-2-2 {
  font-size: 0.938em;
}

@media screen and (max-width: 767px) {
  .footer .widget-area-2-2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 360px) {
  .footer .widget_nav_menu {
    margin-bottom: 0;
  }
}
.footer .widget_nav_menu .menu {
  display: table;
}

@media screen and (max-width: 645px) {
  .footer .widget_nav_menu .menu {
    display: block;
  }
}
.footer .widget_nav_menu .menu li a {
  text-decoration: none;
}

.footer .widget_nav_menu .menu li a:hover {
  text-decoration: underline;
}

.footer .widget_nav_menu .menu li a[href="#"] {
  cursor: text;
}

.footer .widget_nav_menu .menu li a[href="#"]:hover {
  text-decoration: none;
}

.footer .widget_nav_menu .menu > li {
  display: table-cell;
  width: 19%;
  vertical-align: top;
  padding: 0 10px;
  line-height: 1em;
}

@media screen and (max-width: 645px) {
  .footer .widget_nav_menu .menu > li {
    display: inline-block;
    width: 31%;
    padding-left: 0;
    margin-right: 1%;
  }
}
@media screen and (max-width: 480px) {
  .footer .widget_nav_menu .menu > li {
    width: 48%;
  }
}
@media screen and (max-width: 360px) {
  .footer .widget_nav_menu .menu > li {
    width: 100%;
    border: none !important;
  }
}
.footer .widget_nav_menu .menu > li a {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 0.75em;
  font-weight: bold;
}

.footer .widget_nav_menu .menu > li li a {
  font-size: 0.813em;
}

.footer .widget_nav_menu .menu > li:first-child {
  padding-left: 0;
}

.footer .widget_nav_menu ul.menu > li:last-child {
  border: none;
}

.footer .widget_nav_menu:nth-of-type(1) .menu > li {
  border-right: 1px solid #b5d855;
}

.footer .widget_nav_menu:nth-of-type(2) .menu > li {
  border-right: 1px solid #d0a536;
}

.footer .widget_nav_menu .menu > li li {
  padding: 0;
  margin: 0;
}

.footer .widget_nav_menu .menu > li li a {
  color: #989898;
}

.slide-wrap.slick-initialized.slick-slider {
  margin: 0 40px 20px;
}

.slide-item.slick-slide {
  padding: 10px;
}

.slick-slider i {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-slider i.ag-slick-prev.slick-disabled:before, .slick-slider i.ag-slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-slider i.ag-slick-prev.slick-disabled:before, .slick-slider i.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-slider i.ag-slick-prev, .slick-slider i.ag-slick-next {
  width: 25px;
  height: 25px;
}

.slick-slider i.ag-slick-prev {
  left: -30px;
}

.slick-slider i.ag-slick-next {
  right: -30px;
}

.slick-slider i.ag-slick-prev:before, .slick-slider i.ag-slick-next:before {
  color: black;
  font-size: 25px;
}

.block-labels .btn {
  margin: 5px 5px 5px 0;
}

.body .account-widget ul {
  margin: 0;
}

@media screen and (min-width: 501px) {
  table.stacktable.small-only {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  table.stacktable.small-only {
    display: table;
  }
}
@media screen and (max-width: 500px) {
  table.stacktable.large-only {
    display: none;
  }
}
@media screen and (min-width: 501px) {
  table.stacktable.large-only {
    display: table;
  }
}
td.st-key {
  padding-right: 2%;
}

td.st-val {
  font-weight: lighter;
  padding-left: 2%;
}

.contact-row:nth-of-type(4) {
  border-bottom: 1px solid #eeeeee;
}

.contact-row:nth-of-type(5):after,
.contact-row:nth-of-type(6):after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  border-bottom: 1px solid #eeeeee;
}

.nametag-row:nth-of-type(4) .st-key + .st-val,
.nametag-row:nth-of-type(5) .st-key + .st-val,
.contact-row:nth-of-type(5) .st-key + .st-val,
.contact-row:nth-of-type(6) .st-key + .st-val {
  text-align: center;
  width: 100%;
  display: block;
  margin: auto;
  position: relative;
  left: 50%;
  border: none;
}

.nametag-row:nth-of-type(4) .st-key,
.nametag-row:nth-of-type(5) .st-key,
.contact-row:nth-of-type(5) .st-key,
.contact-row:nth-of-type(6) .st-key {
  display: none;
}

td.edit-nametag,
td.delete-nametag,
td.edit-contact,
td.delete-contact {
  cursor: default;
}

td.edit-nametag button,
td.delete-nametag button,
td.edit-contact button,
td.delete-contact button {
  width: 100%;
  max-width: 100px;
}

td.delete-nametag,
td.delete-contact {
  text-align: right;
}

td.edit-nametag,
td.edit-contact {
  text-align: left;
}

@media screen and (max-width: 500px) {
  table.stacktable.small-only {
    display: block;
    width: 100%;
  }

  table.stacktable.small-only tbody {
    display: block;
    width: 100%;
  }

  tr.nametag-row,
tr.contact-row {
    display: block;
    width: 100%;
  }

  td.st-key, td.st-val {
    display: block !important;
    width: 100%;
    text-align: left;
  }

  .nametag-row:nth-of-type(4) td.st-key,
.nametag-row:nth-of-type(5) td.st-key,
.contact-row:nth-of-type(5) td.st-key,
.contact-row:nth-of-type(6) td.st-key {
    display: none !important;
  }

  .nametag-row:nth-of-type(4) .st-key + .st-val,
.nametag-row:nth-of-type(5) .st-key + .st-val,
.contact-row:nth-of-type(5) .st-key + .st-val,
.contact-row:nth-of-type(6) .st-key + .st-val {
    position: static;
    text-align: left;
  }

  .nametag-row:nth-of-type(4) .st-key + .st-val,
.contact-row:nth-of-type(5) .st-key + .st-val {
    float: left;
    width: 110px;
  }
}
.form-group {
  max-width: 80rem;
}
.form-group.radio {
  padding-left: 5px;
}
.form-group .at-handle {
  padding: 10px;
  border-radius: 3px 0 0 3px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  border-right: none;
}

.form-group-flex {
  display: flex;
}
.form-group-flex input {
  border-radius: 0px 5px 5px 0;
}

#categorySelector span.select2.select2-container.select2-container--default {
  width: 100% !important;
}
#categorySelector span.select2-selection.select2-selection--multiple {
  padding: 10px 0;
  border: 1px solid #ddd;
}
#categorySelector span.select2-selection.select2-selection--multiple .select2-selection__choice {
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 5px;
  text-wrap: wrap;
  line-height: 1.3em;
  background-color: #f6f6f6;
}
#categorySelector span.select2-selection.select2-selection--multiple .select2-selection__choice__remove {
  width: 18px;
  border: 1px solid;
  top: 50%;
  transform: translateY(-50%);
  padding: 1px 4px;
  margin: -1px 0 0 2px;
  border-radius: 4px;
  background-color: #fff;
}
#categorySelector span.select2-selection.select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  width: calc(100% - 20px);
  margin-bottom: 0;
  margin-left: 10px;
}
#categorySelector span.select2-selection.select2-selection--multiple .select2-selection__choice__display {
  padding-left: 4px;
}
#categorySelector textarea.select2-search__field {
  position: absolute;
  transition: none;
  bottom: 0;
  right: 0;
}
#categorySelector .select2-container--open span.select2-selection.select2-selection--multiple {
  border: 1px solid #999;
}
#categorySelector .select2-container--open textarea.select2-search__field {
  display: block;
  left: 50%;
  bottom: unset;
  right: unset;
  z-index: 9999;
  transform: translateX(-50%);
  border: 1px solid;
  width: 98% !important;
  margin: 16px 0 0;
  padding: 5px;
  background: #fff;
}
#categorySelector .select2-container--open.select2-container--above textarea.select2-search__field {
  top: -258px;
}

span.select2-dropdown.cats-dropdown {
  padding-top: 47px;
  margin-top: 0;
}

.phone-wrap [name=country-code] {
  width: 50px;
  padding-left: 5px;
  padding-right: 0px;
}
.phone-wrap span.select2.select2-container.select2-container--default {
  width: 60px !important;
}
.phone-wrap span.select2-selection.select2-selection--single {
  height: 100%;
  padding: 10px 25px 10px 3px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
}
.phone-wrap .select2-container .select2-selection--single .select2-selection__rendered {
  text-overflow: unset;
}
.phone-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 93%;
}

span.select2-dropdown.phone-dropdown {
  min-width: 200px;
}

/*! PocketGrid 1.1.0
* Copyright 2013 Arnaud Leray
* MIT License
*/
.block-group, .block, .block-group:after, .block:after, .block-group:before, .block:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.block-group {
  *zoom: 1;
}

.block-group:before, .block-group:after {
  display: table;
  content: "";
  line-height: 0;
}

.block-group:after {
  clear: both;
}

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

.block-group > .block-group {
  clear: none;
  float: left;
  margin: 0 !important;
}

.block {
  float: left;
  width: 100%;
}

.block-v-pad {
  padding-top: 10px;
  padding-bottom: 10px;
}

.block-h-pad {
  padding-right: 10px;
  padding-left: 10px;
}

.block-pad {
  padding: 10px;
}

.block-u-pad {
  padding-top: 10px;
}

.block-d-pad {
  padding-bottom: 10px;
}

.block-r-pad {
  padding-right: 10px;
}

.block-l-pad {
  padding-left: 10px;
}

.block.main-column {
  position: relative;
}

@media screen and (min-width: 768px) {
  .block.main-column {
    width: 66.66666%;
  }

  .block.main-column .block-wrap {
    padding-left: 0px;
    padding-right: 10px;
  }
}
.block.right-column {
  position: relative;
}

@media screen and (min-width: 768px) {
  .block.right-column {
    width: 33.33333%;
  }

  .block.right-column .block-wrap {
    padding-left: 10px;
    padding-right: 0px;
  }
}
.block.entry-content .block-wrap {
  padding-top: 20px;
}

.block.entry-content-left {
  position: relative;
}

.block.entry-content-left .block-wrap {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .block.entry-content-left {
    width: 50%;
  }

  .block.entry-content-left .block-wrap {
    padding-left: 0px;
    padding-right: 10px;
  }
}
.block.entry-content-right {
  position: relative;
}

.block.entry-content-right .block-wrap {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .block.entry-content-right {
    width: 50%;
  }

  .block.entry-content-right .block-wrap {
    padding-left: 10px;
    padding-right: 0px;
  }
}
.btn-default,
.btn-primary,
.btn-success, .btn-info, .btn-warning, .btn-danger {
  border: none !important;
  border-color: transparent !important;
  border-radius: 5px;
}

.btn-default:active, .btn-default:hover,
.btn-primary:active,
.btn-primary:hover,
.btn-success:active,
.btn-success:hover, .btn-info:active, .btn-info:hover, .btn-warning:active, .btn-warning:hover, .btn-danger:active, .btn-danger:hover {
  border: none !important;
  border-color: transparent !important;
  border-radius: 5px;
}

.flex-content.intro {
  font-size: 3rem;
  font-weight: 500;
  font-size: 3rem;
  line-height: 3.9rem;
}

.flex-content.intro p:last-child {
  margin-bottom: 0px;
}

.intro strong {
  color: #D0A536;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

/* Fixes to body content */
.flex-content .body .container .row > p {
  padding-right: 15px;
}

.single .flex-content.margin {
  margin: 20px 0;
}

.single .flex-content.margin .body {
  padding: 10px 0;
}

.flex-content.slider {
  background-color: #000000;
}

.flex-content .top {
  min-height: 20px;
  margin-top: 20px;
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.flex-content .top.none {
  display: none;
}

.flex-content .body.padded {
  padding-top: 20px;
  padding-bottom: 20px;
}

.flex-content .body.nobg {
  background-color: transparent;
  color: #666666;
}

.flex-content .body.nobg a {
  color: #000;
}

.flex-content .body.default .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .flex-content .body.default .container {
    width: 960px;
  }
}
.flex-content .body.full .container {
  width: 100%;
  max-width: 1440px;
  padding: 0;
  margin: auto;
}

.flex-content.slider .body.full .container {
  max-width: 100%;
}

.flex-content .bottom {
  margin-top: -10px;
  min-height: 20px;
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

.flex-content .bottom.none {
  display: none;
}

.flex-content .wheat {
  height: 60px;
  width: 184px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
}

@media screen and (max-width: 1024px) {
  .flex-content .wheat {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 900px) {
  .flex-content .wheat {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 700px) {
  .flex-content .wheat {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 580px) {
  .flex-content .wheat {
    margin-bottom: 3px;
  }
}
.flex-content.gradient-with-image {
  background-image: url(/wp-content/uploads/slide-action.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flex-content.gradient-with-image .body {
  min-height: 150px;
  padding-top: 60px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}

.flex-content.gradient-with-image .body .page-title h1 {
  color: #ffffff;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 4.8rem;
}

.flex-content.gradient-with-image .body .small-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.flex-content.gradient {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flex-content.gradient .body {
  min-height: 100px;
  padding-top: 20px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}

.flex-content.gradient .body .page-title h1 {
  color: #ffffff;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 4.8rem;
}

.flex-content.light.gradient .body .page-title h1, .flex-content.light.gradient .body .page-title .small-title {
  color: #58595b;
}

.flex-content.gradient .body .small-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.flex-content.gradient-bg-1 .body {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eff6de+24,e0eec0+34,e0eec0+34,bad871+100&0.7+0,0.9+100 */
  background: -moz-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(224, 238, 192, 0.77) 34%, rgba(186, 216, 113, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(224, 238, 192, 0.77) 34%, rgba(186, 216, 113, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(224, 238, 192, 0.77) 34%, rgba(186, 216, 113, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3eff6de", endColorstr="#e6bad871",GradientType=0 );
  /* IE6-9 */
}

.flex-content.gradient-bg-2 .body {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eff6de+24,deedbb+33,bad871+100&0.7+0,0.9+100 */
  background: -moz-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(186, 216, 113, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(186, 216, 113, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(186, 216, 113, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3eff6de", endColorstr="#e6bad871",GradientType=0 );
  /* IE6-9 */
}

.flex-content.gradient-bg-3 .body {
  background-image: url(../images/template/gradient/gradient3.png);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eff6de+24,deedbb+33,b8d76e+100&0.7+1,0.9+100 */
  background: -moz-linear-gradient(top, rgba(239, 246, 222, 0.7) 1%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(184, 215, 110, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(239, 246, 222, 0.7) 1%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(184, 215, 110, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(239, 246, 222, 0.7) 1%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(184, 215, 110, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3eff6de", endColorstr="#e6b8d76e",GradientType=0 );
  /* IE6-9 */
}

.flex-content.gradient-bg-4 .body {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eff6de+24,deedbb+33,b7d76b+100&0.7+0,0.9+100 */
  background: -moz-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(183, 215, 107, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(183, 215, 107, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.75) 24%, rgba(222, 237, 187, 0.77) 33%, rgba(183, 215, 107, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3eff6de", endColorstr="#e6b7d76b",GradientType=0 );
  /* IE6-9 */
}

.flex-content.gradient-bg-5 .body {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eff6de+12,ddecba+19,bad870+100&0.7+0,0.9+100 */
  background: -moz-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.72) 12%, rgba(221, 236, 186, 0.73) 19%, rgba(186, 216, 112, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.72) 12%, rgba(221, 236, 186, 0.73) 19%, rgba(186, 216, 112, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(239, 246, 222, 0.7) 0%, rgba(239, 246, 222, 0.72) 12%, rgba(221, 236, 186, 0.73) 19%, rgba(186, 216, 112, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3eff6de", endColorstr="#e6bad870",GradientType=0 );
  /* IE6-9 */
}

.flex-content.gradient-bg-6 .body {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d0deb2+0,92ae56+100&0.7+1,0.9+99 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: #a5b669;
  /* IE6-9 */
}

.flex-content.dark {
  color: #fff;
}

.flex-content.dark .top .wheat {
  background-image: url(../images/template/dark/wheat.png);
}

.flex-content.dark .top.jagged {
  background-image: url(../images/template/dark/top.png);
}

.flex-content.dark .body {
  background: #000000;
  color: #fff;
}

.flex-content.dark .bottom {
  color: #fff;
}

.flex-content.dark .bottom.jagged {
  background-image: url(../images/template/dark/bottom.png);
}

.flex-content.medium .top .wheat {
  background-image: url(../images/template/medium/wheat.png);
}

.flex-content.medium .top.jagged {
  background-image: url(../images/template/medium/top.png);
}

.flex-content.medium .body {
  background: #EEEAE3;
}

.flex-content.medium .bottom.jagged {
  background-image: url(../images/template/medium/bottom.png);
}

.flex-content.light .top .wheat {
  background-image: url(../images/template/light/wheat.png);
}

.flex-content.light .top.jagged {
  background-image: url(../images/template/light/top.png);
}

.flex-content.light .body {
  background: #F6F8F1;
}

.flex-content.light .bottom.jagged {
  background-image: url(../images/template/light/bottom.png);
}

.flex-content .exhibition_countdown {
  font-size: 1.8rem;
  font-weight: 700;
}

.flex-content .exhibition_countdown .green {
  color: #B4D758;
}

.light .btn-link {
  color: #999999;
}

.light .btn-link:hover, .light .btn-link:focus {
  color: #999999;
}

.light .btn-link:active {
  color: #999999;
}

.light .btn-default {
  background: #ffffff;
  color: #999999;
}

.light .btn-default:hover, .light .btn-default:focus {
  color: #999999;
  background-color: #e6e6e6;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: -moz-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: -o-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: linear-gradient(to bottom, #f2f2f2, #e6e6e6);
  background-image: url("../images/button-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.light .btn-default:active {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff);
  background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff);
  background-image: -o-linear-gradient(top, #f2f2f2, #ffffff);
  background-image: linear-gradient(to bottom, #f2f2f2, #ffffff);
}

.light .btn-primary {
  background: #B4D758;
  color: #ffffff;
}

.light .btn-primary:hover, .light .btn-primary:focus {
  color: #ffffff;
  background-color: #a1cb31;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#abd243), to(#a1cb31));
  background-image: -webkit-linear-gradient(top, #abd243, #a1cb31);
  background-image: -moz-linear-gradient(top, #abd243, #a1cb31);
  background-image: -o-linear-gradient(top, #abd243, #a1cb31);
  background-image: linear-gradient(to bottom, #abd243, #a1cb31);
  background-image: url("../images/button-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.light .btn-primary:active {
  background-color: #d0a536;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#abd243), to(#d0a536));
  background-image: -webkit-linear-gradient(top, #abd243, #d0a536);
  background-image: -moz-linear-gradient(top, #abd243, #d0a536);
  background-image: -o-linear-gradient(top, #abd243, #d0a536);
  background-image: linear-gradient(to bottom, #abd243, #d0a536);
}

.medium .btn-link {
  color: #999999;
}

.medium .btn-link:hover, .medium .btn-link:focus {
  color: #999999;
}

.medium .btn-link:active {
  color: #999999;
}

.medium .btn-default {
  background: #f7f9f2;
  color: #999999;
}

.medium .btn-default:hover, .medium .btn-default:focus {
  color: #999999;
  background-color: #e2e9cf;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ecf1e1), to(#e2e9cf));
  background-image: -webkit-linear-gradient(top, #ecf1e1, #e2e9cf);
  background-image: -moz-linear-gradient(top, #ecf1e1, #e2e9cf);
  background-image: -o-linear-gradient(top, #ecf1e1, #e2e9cf);
  background-image: linear-gradient(to bottom, #ecf1e1, #e2e9cf);
  background-image: url("../images/button-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.medium .btn-default:active {
  background-color: #f7f9f2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ecf1e1), to(#f7f9f2));
  background-image: -webkit-linear-gradient(top, #ecf1e1, #f7f9f2);
  background-image: -moz-linear-gradient(top, #ecf1e1, #f7f9f2);
  background-image: -o-linear-gradient(top, #ecf1e1, #f7f9f2);
  background-image: linear-gradient(to bottom, #ecf1e1, #f7f9f2);
}

.medium .btn-primary {
  background: #CFA439;
  color: #ffffff;
}

.medium .btn-primary:hover, .medium .btn-primary:focus {
  color: #ffffff;
  background-color: #ab862a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c0962f), to(#ab862a));
  background-image: -webkit-linear-gradient(top, #c0962f, #ab862a);
  background-image: -moz-linear-gradient(top, #c0962f, #ab862a);
  background-image: -o-linear-gradient(top, #c0962f, #ab862a);
  background-image: linear-gradient(to bottom, #c0962f, #ab862a);
  background-image: url("../images/button-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.medium .btn-primary:active {
  background-color: #d0a536;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c0962f), to(#d0a536));
  background-image: -webkit-linear-gradient(top, #c0962f, #d0a536);
  background-image: -moz-linear-gradient(top, #c0962f, #d0a536);
  background-image: -o-linear-gradient(top, #c0962f, #d0a536);
  background-image: linear-gradient(to bottom, #c0962f, #d0a536);
}

.dark .btn-link {
  color: #ffffff;
}

.dark .btn-link:hover, .dark .btn-link:focus {
  color: #ffffff;
}

.dark .btn-link:active {
  color: #ffffff;
}

.dark .btn-default {
  background: #ffffff;
  color: #000000;
}

.dark .btn-default:hover, .dark .btn-default:focus {
  color: #000000;
  background-color: #e6e6e6;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: -moz-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: -o-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: linear-gradient(to bottom, #f2f2f2, #e6e6e6);
  background-image: url("../images/button-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.dark .btn-default:active {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff);
  background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff);
  background-image: -o-linear-gradient(top, #f2f2f2, #ffffff);
  background-image: linear-gradient(to bottom, #f2f2f2, #ffffff);
}

.dark .btn-primary {
  background: #d0a536;
  color: #ffffff;
}

.dark .btn-primary:hover, .dark .btn-primary:focus {
  color: #ffffff;
  background-color: #ab8628;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c0972d), to(#ab8628));
  background-image: -webkit-linear-gradient(top, #c0972d, #ab8628);
  background-image: -moz-linear-gradient(top, #c0972d, #ab8628);
  background-image: -o-linear-gradient(top, #c0972d, #ab8628);
  background-image: linear-gradient(to bottom, #c0972d, #ab8628);
  background-image: url("../images/button-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.dark .btn-primary:active {
  background-color: #d0a536;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c0972d), to(#d0a536));
  background-image: -webkit-linear-gradient(top, #c0972d, #d0a536);
  background-image: -moz-linear-gradient(top, #c0972d, #d0a536);
  background-image: -o-linear-gradient(top, #c0972d, #d0a536);
  background-image: linear-gradient(to bottom, #c0972d, #d0a536);
}

@media screen and (max-width: 480px) {
  .fts-twitter-div {
    padding-top: 20px;
  }
}
.twitter-feed img.twitterLogo {
  margin-left: 10px;
}

@media screen and (max-width: 562px) {
  .twitter-feed img.twitterLogo {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .twitter-feed img.twitterLogo {
    margin-bottom: 0;
  }
}
.twitter-feed h3 {
  margin-top: -5px;
  margin-bottom: 2px;
}

.fts-twitter-text {
  line-height: 21.5px;
  font-weight: 300;
}

.blog h3,
.news h3 {
  margin-bottom: 40px;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.blog .social-links,
.news .social-links {
  float: right;
}

.blog .social-links a,
.news .social-links a {
  display: inline-block;
  color: #fff;
  background-color: #C2C6B5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  margin-left: 3px;
  padding: 0px;
}

.blog .social-links a i,
.news .social-links a i {
  font-size: 0.7em;
  vertical-align: middle;
}

.blog .blog .social-links a:hover,
.news .blog .social-links a:hover {
  background-color: #b5d855;
}

.fts-tweeter-wrap {
  width: 33%;
  float: left;
}

@media screen and (max-width: 520px) {
  .fts-tweeter-wrap {
    width: 100%;
  }
}
.fts-powered-by-text-popup a.fts-powered-by-text {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

.fts-tweeter-wrap .tweeter-info {
  border-bottom: none;
}

.fts-twitter-reply {
  color: #000;
}

.time a {
  font-size: 1.1em;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.time a:hover {
  color: #000;
}

.uppercase.bold a {
  font-family: "museo";
  color: #000;
}

.fts-tweeter-wrap .tweeter-info:hover :not(.fts-twitter-reply-wrap) a {
  text-decoration: underline !important;
}

.fts-twitter-text a {
  color: #000;
  text-decoration: underline !important;
}

.fts-twitter-text a:hover,
.fts-tweeter-wrap .tweeter-info:hover .uppercase.bold a,
.fts-tweeter-wrap .tweeter-info:hover .time a,
.fts-tweeter-wrap .tweeter-info:hover a:hover,
.fts-twitter-reply-wrap a {
  text-decoration: none !important;
}

.agdays-board-of-directors .tg-item-media-inner.tg-item-media-bg,
.agdays-speakers .tg-item-media-inner.tg-item-media-bg,
.agdays-blog .tg-item-media-inner.tg-item-media-bg,
.agdays-news .tg-item-media-inner.tg-item-media-bg {
  z-index: 0;
  border-radius: 5px;
  width: 100%;
  height: 160px;
  background-color: #F6F8F1;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.tg-item:hover img.tg-item-image {
  transform: scale(1) !important;
}

.flex-content.featured-speakers .body.default p {
  font-size: 1.8rem;
}

.flex-content.featured-speakers .body.default p.tg-item-excerpt {
  font-size: 1.3rem;
}

.flex-content.twitter-feed h3 {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.tg-item h2.tg-item-title, h2.tg-item-title a {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.tg-item h3 {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.tg-item .session a {
  color: #000;
  font-size: 1.3rem;
}

.flex-content.flex-content-standard_two_columns h2 {
  font-size: 1.6rem;
  font-family: "museo-sans", "Arial", Helvetica, sans-serif;
  color: #B5D757;
}

.flex-content.flex-content-standard_two_columns .body .block {
  width: 50%;
}

.flex-content.flex-content-standard_two_columns .body .block img {
  border-radius: 5px;
}

.flex-content.flex-content-standard_two_columns .body .block:nth-child(2n+1) {
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .flex-content.flex-content-standard_two_columns .body .block:nth-child(2n+1) {
    width: 100%;
    padding: 0px 0px;
  }
}
.flex-content.flex-content-standard_two_columns .body .block:nth-child(2n+2) {
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .flex-content.flex-content-standard_two_columns .body .block:nth-child(2n+2) {
    width: 100%;
    padding: 0px 0px;
  }
}
@media screen and (max-width: 767px) {
  .flex-content.flex-content-standard_two_columns .body .block {
    width: 100%;
    padding: 0px 0px;
  }
}
.page .entry-content {
  padding-top: 20px;
}

.search .page .entry-content {
  padding-top: 0;
}

.alignleft.search_img {
  width: 300px;
  height: 200px;
  float: left;
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: #f6f8f1;
  margin: 0 10px 10px 0;
  background-size: contain;
}

/* 404 Page */
.body .search-form input {
  width: 50%;
  margin-right: 1%;
  padding: 11px;
}

.body .search-form button.btn.btn-header-search {
  width: 100px;
  background-position: 5px;
}

.body .search-form button.btn.btn-header-search:hover {
  color: #fff;
  background-color: #b4d758;
}

.error404 .footer .widget-area-1 .social a i {
  padding-top: 8px;
}

/* Home Page */
article.entry {
  padding: 0px;
}

/* Home Page */
body.home .block-group-speaker-sponsors .block {
  width: 50%;
}

body.home .block-group-speaker-sponsors .block.block-featured-sponsor {
  margin-top: 20px;
}

@media (max-width: 583px) {
  body.home .block-group-speaker-sponsors .block.block-featured-sponsor article:nth-of-type(2) {
    margin-top: 20px;
  }
  body.home .block-group-speaker-sponsors .block.block-featured-sponsor article:nth-of-type(2) img {
    width: 100%;
  }
}
body.home .block-group-speaker-sponsors .block.block-featured-sponsor article {
  border-left: 1px solid #F7F9F2;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.3rem;
  display: inline-block;
  width: 140px;
  height: 70px;
}

body.home .block-group-speaker-sponsors .block.block-featured-sponsor article strong {
  color: #CCCCCC;
}

body.home .block-group-speaker-sponsors .block.block-featured-sponsor article img {
  width: 100%;
}

body.home .agdays-board-of-directors .tg-item-image,
body.home .agdays-speakers .tg-item-image {
  max-height: 228px;
  width: auto;
  margin: auto;
  border-radius: 5px;
}

/* Program page */
.page-template-page-program h2 {
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  color: #000000;
  font-size: 2.4rem;
  line-height: 2.6rem;
  margin: 0px;
  font-weight: 900;
  padding-top: 5px;
}

.page-template-page-program h3 {
  font-family: "museo-sans", "Arial", Helvetica, sans-serif;
  color: #60791a;
  font-size: 2.4rem;
  line-height: 2.6rem;
  font-weight: 500;
  margin: 0px;
  padding-top: 20px;
}

.page-template-page-program article.program-group {
  vertical-align: middle;
}

.page-template-page-program article.program-group .program-group-title {
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 66.666%;
}

@media screen and (max-width: 767px) {
  .page-template-page-program article.program-group .program-group-title {
    width: 100%;
  }
}
.page-template-page-program article.program-group .program-group-sponsors {
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 33.3333%;
}

@media screen and (max-width: 767px) {
  .page-template-page-program article.program-group .program-group-sponsors {
    width: 100%;
  }
}
.page-template-page-program article.program-group .venue-sponsor {
  padding: 0px 10px 0px 0px;
  font-size: 1.3rem;
  width: 50%;
  max-width: 160px;
}

.page-template-page-program article.program-group .venue-sponsor strong {
  color: #999999;
}

@media screen and (min-width: 768px) {
  .page-template-page-program article.program-group .venue-sponsor {
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    padding: 0px 10px;
  }
}
.page-template-page-program article.program-group .day-sponsor {
  font-size: 1.3rem;
  width: 50%;
  max-width: 160px;
  padding: 0px 0px 0px 10px;
}

.page-template-page-program article.program-group .day-sponsor strong {
  color: #999999;
}

@media screen and (min-width: 768px) {
  .page-template-page-program article.program-group .day-sponsor {
    border-right: 1px solid #FFFFFF;
    padding: 0px 10px;
  }
}
.page-template-page-program article.session {
  padding-top: 20px;
  padding-bottom: 20px;
  border-left: 1px solid #F6F8F1;
  border-right: 1px solid #F6F8F1;
  border-bottom: 1px solid #F6F8F1;
}

.page-template-page-program article.session h4 {
  font-size: 1.8rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  color: #000000;
}

.page-template-page-program article.session h4 span {
  /*color:$medium-h4-span-color;*/
  color: #a2c14d;
  display: block;
}

.page-template-page-program article.session h4 a {
  text-decoration: none;
}

.page-template-page-program article.session .session-text {
  font-size: 1.5rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-template-page-program article.session .session-more {
  text-align: right;
}

.page-template-page-program article.session .speakers {
  font-size: 1.3rem;
}

.page-template-page-program article.session .speakers a:hover {
  text-decoration: underline;
}

.page-template-page-program article.session .speaker-title {
  color: #666666;
}

a.session-link {
  line-height: 1.1em;
  display: inline-block;
}

.single-speaker .entry h1 {
  font-size: 1.5em;
  margin: 30px 0 35px;
}

.single-speaker .entry ul.sessions li {
  padding: 15px 0;
  border-top: 1px solid #F7F9F2;
  border-bottom: 1px solid #F7F9F2;
}

.single-speaker .entry ul.sessions li .session-info {
  margin-top: -8px;
}

.single-speaker div.speaker {
  margin-bottom: 40px;
}

.speaker-photo-wrapper {
  width: 100%;
  background: #f6f8f1;
  border-radius: 5px;
  margin: auto;
  text-align: center;
}

.speaker-photo-wrapper img {
  margin: auto;
}

.col1 {
  padding-left: 0;
  /*   text-align: center; */
}

@media screen and (max-width: 767px) {
  .col1 {
    padding: 0;
  }
}
.col1 h4 {
  margin: 15px 0;
  font-size: 1.5em;
}

.col2 {
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .col2 {
    padding: 0;
  }
}
.page-description p {
  font-size: 1.875em;
  line-height: 1.3em;
  font-weight: 500;
}

/* Registration Page */
#registration-notice {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0px 20px;
}

#review-form,
#review-thanks {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0px 20px;
  margin-top: 50px;
}

#registration-details .bull-only, #registration-details .inventor-only {
  display: none;
}

#registration-details .newRegFeature {
  display: inline-block;
  padding: 2px 7px;
  margin-right: 10px;
  background: #a1b96c;
  border-radius: 5px;
  text-align: center;
}

/* In-field labels */
/*
.form-group.infield {
	position: relative;
	label:first-child {
		max-width: 100%;
		margin-bottom: 5px;
		font-weight: bold;
		color: #444;
		position: absolute;
		top: 5px;
		left: 11px;
		font-size: 1.3rem;
		font-family:$serif;
	}
	input, select, textarea {
	  background-color: #fff;
	  color: #555;
	  font-size: 1.6rem;
	  width: 100%;
	  border-radius: 5px;
	  padding: 30px 10px 10px 10px;
	}
}
*/
/* .block.block-company-info
,.block.block-address
 {
	// width:50%;
	@include breakpoint((max:767px)) {
		width:100%;
	}
}

.block.block-company-info 
{
	padding-right:20px;
	@include breakpoint((max:767px)) {
		padding-right:0px;
	}
}

.block.block-address
{
	padding-left:20px;
	@include breakpoint((max:767px)) {
		padding-left:0px;
	}
} */
/* .form-group.form-group-username
,.form-group.form-group-password1
,.form-group.form-group-password2
{
  width: 33.3333%;
  display: inline-block;
  margin:0px;
}
.form-group.form-group-password1 {
	padding-right:10px;
	padding-left:10px;
}
.form-group.form-group-city
,.form-group.form-group-province
,.form-group.form-group-country
,.form-group.form-group-postalCode
{
  width: 33.3333%;
  display: inline-block;
  margin:0px;
}


.form-group.form-group-phone
,.form-group.form-group-fax
,.form-group.form-group-mobile
{
  width: 33.3333%;
  display: inline-block;
  margin:0px;
} */
.post-188 .wait {
  margin-top: 20px;
}

.post-188 input[type=radio]:checked + label {
  font-weight: bold;
}

.post-188 input[type=checkbox]:checked + label {
  font-weight: bold;
}

.post-188 h3 {
  margin-top: 2rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 2rem;
}

.post-188 .block-buttons {
  padding-top: 10px;
  padding-bottom: 10px;
}

.post-188 .form-group-quantity {
  padding-left: 24px;
}

.post-188 .form-group-quantity input[type=text] {
  max-width: 50px;
  margin-right: 5px;
}

.post-188 .form-group-indent {
  padding-left: 24px;
}

.blog a.tg-page-number.tg-nav-color.tg-nav-border.tg-nav-font:hover {
  color: #fff !important;
  background-color: #a6c74e;
}

.blog span.tg-page-number.tg-nav-color.tg-nav-font.tg-page-current {
  color: #fff !important;
  background-color: #a6c74e;
  font-weight: normal;
  border-radius: 4px;
}

.blog span.tg-page-number.tg-nav-color.tg-nav-font.tg-page-current:hover {
  color: #fff !important;
  background-color: #a6c74e;
}

.blog .tg-grid-area-bottom1 {
  border-top: 1px solid #f7f9f2;
  border-bottom: 1px solid #f7f9f2;
  margin: 20px 0 0;
  padding-top: 5px;
}

.blog a.tg-page-number.tg-nav-color.tg-nav-border.tg-nav-font {
  color: #000 !important;
  background-color: #f7f9f2;
  font-weight: normal;
  border-radius: 4px;
}

/*  Exhibitors Map */
table.ExhibitorListing .tableHeader th:first-child,
table.ExhibitorListing .Heading th:first-child,
table#exhibSearchResults .tableHeader th:first-child,
table#exhibSearchResults .Heading th:first-child,
table#catResults .tableHeader th:first-child,
table#catResults .Heading th:first-child {
  padding-left: 0;
  white-space: nowrap;
}

table#exhibSearchResults {
  margin-left: 0px;
}

ul#yourMapList {
  margin: 0px;
  list-style: none;
}

a.theMap {
  float: left;
  padding: 10px 0 10px 0px;
  font-size: 1.2em;
}

.map_popover_content h3 {
  font-size: 1.6rem;
}

.map-buttons {
  position: absolute;
  bottom: 150px;
  right: 160px;
}

.map-zoomingButtons {
  position: absolute;
  bottom: 40px !important;
  left: 15px !important;
}

.map-zoomingButtons img {
  max-width: none;
}

.map-buttons div {
  padding: 10px;
  background: rgba(205, 205, 205, 0.4);
  border-radius: 10px;
  border: 1px solid #777;
}

.map-buttons img {
  max-width: none;
  height: 16px;
  width: 16px;
  top: 7px;
  left: 7px;
  position: absolute;
}

#zoomIn {
  position: absolute;
  position: absolute;
  top: 30px;
  right: 30px;
}

#zoomOut {
  position: absolute;
  top: 100px;
  right: 30px;
}

#pan-right {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  border-radius: 3px;
  display: block;
  margin-bottom: 7px;
  top: 60px;
  left: 106px;
  width: 32px;
  height: 32px;
}

#pan-left {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  border-radius: 3px;
  display: block;
  margin-bottom: 7px;
  top: 60px;
  left: 15px;
  width: 32px;
  height: 32px;
}

#pan-up {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  border-radius: 3px;
  display: block;
  margin-bottom: 7px;
  top: 15px;
  left: 60px;
  width: 32px;
  height: 32px;
}

#pan-down {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  border-radius: 3px;
  display: block;
  margin-bottom: 7px;
  top: 60px;
  left: 60px;
  width: 32px;
  height: 32px;
}

#btnZoomIn {
  left: 80px !important;
  top: 80px !important;
}

#btnZoomOut {
  left: 80px !important;
  top: 150px !important;
}

#contact-controls {
  margin: 10px 0px 10px 0px;
}

.header-search-nav .wrap {
  text-align: right;
}

@media screen and (max-width: 600px) {
  .header-search-nav .wrap {
    text-align: right;
  }
}
@media screen and (max-width: 635px) {
  .header-search-nav ul {
    display: none;
  }
}
ul#sponsors {
  padding: 0px;
  margin: 0px;
}

ul#sponsors li {
  list-style: none;
}

ul#sponsors li li {
  display: inline-block;
  width: 33.333%;
  padding: 20px;
}

/* Page Template User Section */
.page-template-usersection .after-entry, .page-template-usersection .archive-description, .page-template-usersection .author-box, .page-template-usersection .comment-respond, .page-template-usersection .entry, .page-template-usersection .entry-comments, .page-template-usersection .entry-pings, .page-template-usersection .sidebar .widget {
  padding: 0px;
}

.page-template-usersection input[name=ccmonth] {
  width: 80px;
}

.page-template-usersection input[name=ccyear] {
  width: 80px;
}

.page-template-usersection input[name=csc] {
  width: 100px;
}

.account-widget {
  margin-top: 20px;
  padding: 20px;
  background: #F6F8F1;
  color: #000000;
  border-radius: 5px;
  font-size: 1.3rem;
}

.right-column.body .account-widget {
  margin-top: 0;
}

.account-widget .btn {
  margin-left: 0px;
}

.account-widget h2 {
  font-size: 1.6rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.account-widget h3 {
  font-size: 1.6rem;
  font-family: "museo", Georgia, Cambria, Times New Roman, Times, serif;
}

.account-widget .boxy {
  margin-top: 10px;
}

/* Archive Award */
body.page-template-page-awards .row.category-winners {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
body.page-template-page-awards .row.category-winners .category .col-inner {
  padding: 20px;
  border-radius: 5px;
  background-color: #f6f8f1;
}
body.page-template-page-awards .row.category-winners .category h2 {
  font-size: 1.5em;
}
body.page-template-page-awards .row.category-winners .category p {
  margin-bottom: 0;
  font-size: 1.5rem;
}
body.page-template-page-awards .row.category-winners .category .icon {
  display: block;
  width: 100%;
  max-height: 170px;
  height: 16vw;
  padding: 30px;
  margin-bottom: 20px;
}
body.page-template-page-awards .row.category-winners .category.agronomics .icon {
  padding: 20px;
}
body.page-template-page-awards .row.category-winners .category.ag-tech .icon {
  padding: 10px;
}
body.page-template-page-awards .row.category-winners .category .block-innovation-sponsor {
  margin-top: 20px;
}
@media (max-width: 680px) and (min-width: 481px) {
  body.page-template-page-awards .row.category-winners .category .block-innovation-sponsor {
    width: 75%;
    float: right;
  }
}
body.page-template-page-awards .row.category-winners .category .block-innovation-sponsor div {
  font-size: 0.8em;
}
body.page-template-page-awards .row.category-winners .category .block-innovation-sponsor img {
  max-width: 200px;
}
@media (max-width: 680px) and (min-width: 481px) {
  body.page-template-page-awards .row.category-winners .category .col-inner {
    display: inline-block;
    width: 100%;
  }
  body.page-template-page-awards .row.category-winners .category .icon {
    float: left;
    width: 25%;
    max-height: 90px;
    padding: 0px 30px 30px 0;
    margin-bottom: 0px;
  }
  body.page-template-page-awards .row.category-winners .category.agronomics .icon {
    max-height: 110px;
  }
  body.page-template-page-awards .row.category-winners .category p {
    float: left;
    width: 75%;
  }
}
@media (max-width: 480px) {
  body.page-template-page-awards .row.category-winners .category .icon {
    width: 130px;
    max-height: 70px;
    padding: 0px 40px 0px 0px;
    margin-bottom: 20px;
  }
  body.page-template-page-awards .row.category-winners .category.agronomics .icon {
    padding: 5px;
  }
  body.page-template-page-awards .row.category-winners .category.ag-tech .icon {
    padding: 0;
  }
}
body.page-template-page-awards .row.category-winners .featured_image img {
  border-radius: 5px;
}
body.page-template-page-awards .row.category-winners .title {
  padding-top: 10px;
  font-size: 16px;
}
body.page-template-page-awards .row.category-winners .title a {
  text-decoration: none;
}
body.page-template-page-awards .row.category-winners .excerpt {
  margin: 5px 0 0 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 2.1rem;
  color: #777777;
}
body.page-template-page-awards .row.category-winners .read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 20px;
  border-radius: 3px;
  font-family: "Museo";
  text-align: center;
  color: #fff;
  background-color: #C2C6B5;
  text-decoration: none;
}
body.page-template-page-awards .row.category-winners .read-more:hover {
  background-color: #b5d855;
}
body.page-template-page-awards .row.category-winners:first-of-type {
  padding-top: 10px;
  margin-top: 10px;
}
@media (max-width: 680px) and (min-width: 481px) {
  body.page-template-page-awards .col.category {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
  body.page-template-page-awards .col.award {
    width: 50%;
  }
  body.page-template-page-awards .col.award:nth-of-type(2) {
    padding: 0 10px 0 0;
  }
  body.page-template-page-awards .col.award:nth-of-type(3) {
    padding: 0 0 0 10px;
  }
}

/* Single Award */
.type-award h1 {
  margin-top: 1.6rem;
}

.type-award h2 {
  line-height: 3.5rem;
  margin-bottom: 2rem;
}

.type-award .col1 img, .type-award .col2 img {
  border-radius: 5px;
}

.page-template-page-sponsors h6 {
  text-align: center;
  padding: 10px 0;
  margin: 0;
}

.page-template-page-sponsors .content article {
  float: none;
  width: 31%;
  margin: 1%;
  vertical-align: top;
}

@media screen and (max-width: 990px) {
  .page-template-page-sponsors .content article {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .page-template-page-sponsors .content article {
    width: 47.5%;
  }
}
@media screen and (max-width: 482px) {
  .page-template-page-sponsors .content article {
    width: 47%;
  }
}
@media screen and (max-width: 400px) {
  .page-template-page-sponsors .content article {
    width: 100%;
  }
}
.page-template-page-sponsors .tg-item-media-holder {
  text-align: center;
}

.page-template-page-sponsors .sp-wrap {
  padding: 20px;
}

article.tg-item {
  border-radius: 5px;
  overflow: hidden;
}

.type-post .body img,
.type-inventor .body img,
.type-invention .body img,
.type-newproduct .body img,
.type-news .body img {
  border-radius: 5px;
}

.edit-nametag,
.delete-nametag,
.edit-contact,
.delete-contact {
  cursor: pointer;
}

.edit-nametag:hover,
.delete-nametag:hover,
.edit-contact:hover,
.delete-contact:hover {
  text-decoration: underline;
}

.page-id-210 .block.main-column {
  width: 100%;
}

.tg-item-media-holder,
.tg-item-media-inner {
  border-radius: 5px;
}

#contacts-table .contact-row td {
  cusor: pointer;
}

#pay-now-link {
  cursor: pointer;
}

/* Gallery Popup */
.pswp__button--arrow--right:before {
  right: 16px;
}

.pswp__button--arrow--left:before {
  left: 16px;
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  background-color: transparent;
}

/* Speakers */
.agdays-board-of-directors .tg-item-image,
.page-template-page-speakers .agdays-speakers .tg-item-image {
  max-height: 228px;
  width: auto;
  margin: auto;
  border-radius: 5px;
}

/* Revolutoin slider */
.tparrows {
  border-radius: 5px;
}

/* login form */
#theme-my-login {
  max-width: 300px;
}

.tml-action-links {
  list-style: none;
  /*
  position:relative;
  left: 64px;
  top: -63px;
  */
  margin: 0px !important;
  padding: 0px !important;
}

.tml-action-links li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}

.videowrapper {
  float: none;
  clear: both;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  margin-bottom: 10px;
}

.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0px;
}

.tp-videolayer iframe {
  border: 0px;
}

input[type=text], input[type=email], input[type=password] {
  line-height: inherit !important;
  /* for i.e. */
}

.videowrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

.videowrapper iframe,
.videowrapper object,
.videowrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* exhibitor's innovation showcase */
.page-id-10862 .entry-content .block-group-innovation-showcase {
  margin-top: 20px;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block-wrap {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .page-id-10862 .entry-content .block-group-innovation-showcase .block-wrap {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block-wrap:after {
  content: "";
  width: 60%;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-top: -23px;
  border-bottom: 1px solid #c2c2c2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block {
  width: 50%;
  padding-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .page-id-10862 .entry-content .block-group-innovation-showcase .block.block-description {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-id-10862 .entry-content .block-group-innovation-showcase .block {
    width: 100%;
  }
  .page-id-10862 .entry-content .block-group-innovation-showcase > .block {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block.block-icon {
  text-align: center;
  width: 30%;
  max-width: 120px;
  padding-top: 9px;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block.block-icon img {
  max-height: 80px;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block.block-ag-tech img {
  max-height: 100px;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block.block-description {
  width: 70%;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block:nth-child(2n+1) {
  padding-right: 10px;
  clear: left;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block:nth-child(2n+2) {
  padding-left: 10px;
}
.page-id-10862 .entry-content .block-group-innovation-showcase .block strong {
  display: block;
}
.page-id-10862 .entry-content .icon {
  float: left;
  clear: both;
  font-size: 64px;
  text-align: top;
  vertical-align: middle;
  margin-right: 20px;
  text-align: center;
}
.page-id-10862 .entry-content .block.block-innovation-sponsor {
  width: 30%;
  padding-left: 20px;
}
.page-id-10862 .entry-content .block.block-innovation-sponsor div {
  font-size: 0.8em;
}
@media screen and (max-width: 600px) {
  .page-id-10862 .entry-content .block.block-innovation-sponsor {
    width: 70%;
    padding-left: 10px;
  }
  .page-id-10862 .entry-content .block.block-innovation-sponsor img {
    max-width: 200px;
  }
}
.page-id-10862 .entry-content .block.block-innovation-sponsor img {
  padding: 10px 0;
}

img.innovation-title-text {
  margin-top: 10px;
  width: 100%;
  max-width: 70%;
  margin-bottom: 2rem;
}

img.innovation-title-bulb {
  float: right;
  max-width: 30%;
}

.single-innovation h2.grid-title {
  margin-top: 20px;
  font-size: 2.5rem;
}
.single-innovation .tg-grid-holder {
  margin-top: 18px;
}
.single-innovation .tg-filters-holder:nth-of-type(2) {
  width: 155px;
}
@media (max-width: 480px) {
  .single-innovation .tg-filters-holder:nth-of-type(2) {
    width: 100%;
  }
}
.single-innovation .page-title img.innovation-title-bulb {
  float: left;
  display: inline-block;
  width: 50px;
  margin-right: 20px;
  vertical-align: top;
}
.single-innovation .innovation {
  margin: 15px 0 60px;
}
.single-innovation .entry-category {
  margin-bottom: -10px;
}
.single-innovation .entry-category .entry-category-link {
  margin-right: 5px;
}
.single-innovation .entry-category img {
  width: 32px;
  max-height: 20px;
  height: 100%;
  margin-right: 10px;
}
.single-innovation .entry-category .btn {
  padding: 4px 5px;
  border-radius: 2px;
  text-transform: uppercase;
}

.page-template-page-innovations .slide-wrap.slick-initialized.slick-slider {
  margin: 0 60px 20px;
}
.page-template-page-innovations .slide-item.slick-slide {
  padding: 10px 15px;
}
.page-template-page-innovations img.innovation-title-text {
  margin-top: 10px;
  width: 100%;
  max-width: 95%;
  margin-bottom: 2rem;
}
.page-template-page-innovations img.innovation-title-bulb {
  float: none;
  max-width: none;
  margin-bottom: 20px;
}
.page-template-page-innovations .tg-grid-holder {
  margin-top: 18px;
}
.page-template-page-innovations .innovation-content {
  float: left;
  width: 35%;
  line-height: 2.25em;
}
@media (max-width: 768px) {
  .page-template-page-innovations .innovation-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-template-page-innovations img.innovation-title-text {
    max-width: 480px;
  }
}
.page-template-page-innovations .category-section-title {
  display: none;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-section-title {
    display: block;
    display: block;
    text-align: center;
  }
}
.page-template-page-innovations .category-nav {
  float: right;
  width: 65%;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .page-template-page-innovations .category-nav {
    width: 100%;
    padding-left: 0;
  }
}
.page-template-page-innovations .category-style-wrap {
  float: left;
  width: 68%;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-style-wrap {
    width: 100%;
    float: none;
  }
}
.page-template-page-innovations .categories-logo {
  float: right;
  width: 52%;
}
@media (max-width: 480px) {
  .page-template-page-innovations .categories-logo {
    display: none;
  }
}
.page-template-page-innovations .innovation-title-bulb.mobile {
  display: none;
}
@media (max-width: 480px) {
  .page-template-page-innovations .innovation-title-bulb.mobile {
    display: block;
    float: left;
    width: 100px;
    padding-right: 20px;
  }
}
.page-template-page-innovations .categories-left {
  float: left;
  width: 48%;
  padding-right: 10px;
}
.page-template-page-innovations .categories-right {
  float: right;
  width: 32%;
  padding-left: 10px;
}
@media (max-width: 480px) {
  .page-template-page-innovations .categories-right {
    float: left;
    width: 50%;
  }
}
.page-template-page-innovations .category {
  clear: left;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.2em;
  cursor: pointer;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category {
    text-align: center;
  }
}
.page-template-page-innovations .category-left {
  float: left;
  width: 40%;
  padding: 10px 5px;
  border: 1px solid transparent;
  text-align: center;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-left {
    float: none;
    display: inline-block;
    width: 50%;
    padding: 10px 10px;
  }
}
.page-template-page-innovations .category-left img,
.page-template-page-innovations .category-left svg {
  max-width: 60px;
  width: 100%;
  max-height: 40px;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-left img,
.page-template-page-innovations .category-left svg {
    display: inline-block;
    max-width: 42px;
    height: 32px;
  }
}
.page-template-page-innovations .category-right {
  float: left;
  width: 60%;
  padding: 0 10px;
  font-size: 0.9375em;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-right {
    width: 100%;
    padding: 0;
  }
}
.page-template-page-innovations .categories-right .category-right {
  padding-right: 0;
}
.page-template-page-innovations .category-title {
  margin-top: 5px;
  margin-bottom: 2px;
  line-height: 1.15em;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-title {
    margin-bottom: 10px;
  }
}
.page-template-page-innovations .category-link {
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  color: #d0a536;
  opacity: 0;
}
@media (max-width: 480px) {
  .page-template-page-innovations .category-link {
    display: none;
  }
}
.page-template-page-innovations .category.active .category-left {
  background-color: #fff;
  border: 1px solid #BDBEB9;
}
.page-template-page-innovations .category.active .category-title {
  font-weight: bold;
  font-size: 0.98em;
}
.page-template-page-innovations .category.active .category-link {
  opacity: 1;
}
.page-template-page-innovations .category.active svg * {
  fill: #d0a536;
}
.page-template-page-innovations .block-group-innovation-showcase {
  position: relative;
  clear: both;
}
@media (max-width: 768px) {
  .page-template-page-innovations .block-group-innovation-showcase {
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-template-page-innovations .block-group-innovation-showcase {
    padding-top: 0;
  }
}
.page-template-page-innovations .block-group-innovation-showcase > .block {
  position: absolute;
  padding: 20px;
  border: 1px solid #BDBEB9;
  border-radius: 5px;
  background-color: #FBFBF9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.page-template-page-innovations .block-group-innovation-showcase > .block .block-icon {
  display: none;
}
.page-template-page-innovations .block-group-innovation-showcase > .block .block-description {
  width: 100%;
  line-height: 1.25em;
}
.page-template-page-innovations .block-group-innovation-showcase > .block strong {
  font-size: 1em;
  font-weight: bold;
  color: #d0a536;
}
.page-template-page-innovations .block-group-innovation-showcase > .block .btn {
  display: none;
}
.page-template-page-innovations .block-group-innovation-showcase > .block .btn i {
  float: none;
  line-height: 1em;
  vertical-align: middle;
}
.page-template-page-innovations .block-group-innovation-showcase > .block .btn span {
  vertical-align: middle;
}
.page-template-page-innovations .block-group-innovation-showcase > .block.active {
  opacity: 1;
  pointer-events: auto;
}
.page-template-page-innovations .tg-filters-holder:nth-of-type(2) {
  width: 155px;
}
@media (max-width: 480px) {
  .page-template-page-innovations .tg-filters-holder:nth-of-type(2) {
    width: 100%;
  }
}
.page-template-page-innovations h2.grid-title {
  margin-top: 20px;
  font-size: 2.5rem;
}

.gform_wrapper.gf_browser_ie div.gform_footer input.button {
  padding: 14px;
}

.innovation .details div {
  padding-left: 0;
}

.featured-speakers a.btn {
  margin-top: 5px;
  margin-bottom: 5px;
}

#registration-step-1 .registration-login-choice {
  white-space: inherit;
}

/* filter/search styling for innocations */
@media (max-width: 480px) {
  .page-template-page-innovations .tg-grid-wrapper.tg-grid-loaded .tg-search-holder,
.page-template-page-innovations .tg-grid-wrapper.tg-grid-loaded .tg-search-inner,
.single-innovation .tg-grid-wrapper.tg-grid-loaded .tg-search-holder,
.single-innovation .tg-grid-wrapper.tg-grid-loaded .tg-search-inner {
    width: 100%;
  }

  .page-template-page-innovations .tg-filters-holder,
.page-template-page-innovations .tg-dropdown-holder,
.single-innovation .tg-filters-holder,
.single-innovation .tg-dropdown-holder {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .page-template-page-innovations i.tg-icon-dropdown-open,
.single-innovation i.tg-icon-dropdown-open {
    float: right;
  }
}
.innovation .featured-image img {
  border-radius: 5px;
}

.innovation .details a {
  margin-right: 10px;
}
.innovation .details a i {
  font-size: 1.2em;
}

.col {
  float: left;
}

.col-1-3 {
  width: 33.3333%;
}

.col-1-3:nth-of-type(1) {
  padding-right: 10px;
}

.col-1-3:nth-of-type(2) {
  padding: 0 5px;
}

.col-1-3:nth-of-type(3) {
  padding-left: 10px;
}

@media (max-width: 480px) {
  .col {
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }
}
#choose-payment .radio.radio-inline {
  margin-bottom: 10px;
}

.modal-content {
  width: 96vw;
  max-width: 600px;
}

.nametag-row .edit-nametag:hover {
  text-decoration: none;
}

.nametag-buttons {
  min-width: 120px;
}
.nametag-buttons button {
  white-space: nowrap;
  width: 44px;
  height: 44px;
}

#delete-exhibitor-nametags .stacktable.small-only:nth-child(2n+1) {
  background: #f6f8f1;
}
#delete-exhibitor-nametags .stacktable.small-only .nametag-buttons {
  padding-bottom: 20px;
}

#delete-exhibitor-nametags .stacktable.small-only .nametag-row {
  background: unset;
}

@media (max-width: 992px) {
  .nametag-row {
    display: block;
  }

  .nametag-name,
.nametag-email,
.nametag-buttons {
    display: block;
  }

  .nametag-column-email {
    display: none;
  }
}
div#exhibitor-pass-allocation {
  padding: 10px;
  margin: 20px 0;
  background-color: #F6F8F1;
}
div#exhibitor-pass-allocation p {
  margin-bottom: 10px;
  font-weight: bold;
}
div#exhibitor-pass-allocation .img-wrap {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}
div#exhibitor-pass-allocation img {
  width: 33%;
  height: 100%;
  padding: 0px 45px;
}
div#exhibitor-pass-allocation img:nth-of-type(2) {
  width: 36%;
  border-left: 1px solid gainsboro;
  border-right: 1px solid gainsboro;
}
div#exhibitor-pass-allocation img:nth-of-type(3) {
  width: 36%;
}
@media (max-width: 991px) and (min-width: 768px) {
  div#exhibitor-pass-allocation img {
    padding: 0px 20px;
  }
}
@media (max-width: 600px) {
  div#exhibitor-pass-allocation img {
    padding: 0px 20px;
  }
}
@media (max-width: 460px) {
  div#exhibitor-pass-allocation p {
    text-align: center;
  }
  div#exhibitor-pass-allocation .img-wrap {
    flex-direction: column;
    align-items: center;
  }
  div#exhibitor-pass-allocation img {
    width: 120px;
    height: 100%;
    padding: 20px 0px;
  }
  div#exhibitor-pass-allocation img:nth-of-type(2) {
    width: 130px;
    border: none;
    border-top: 1px solid gainsboro;
    border-bottom: 1px solid gainsboro;
  }
  div#exhibitor-pass-allocation img:nth-of-type(3) {
    width: 130px;
  }
}

#exhibit-passes {
  display: inline-block;
  width: 100%;
  background: #F6F8F1;
}
#exhibit-passes h2, #exhibit-passes h3 {
  padding: 20px 10px 5px;
  margin: 0;
}
#exhibit-passes button {
  float: right;
  font-weight: lighter;
  font-size: 1em;
  padding: 11px;
  border-radius: 5px;
}
#exhibit-passes button.new-passes.mobile {
  display: none;
}
@media (max-width: 480px) {
  #exhibit-passes button.new-passes.desktop {
    display: none;
  }
  #exhibit-passes button.new-passes.mobile {
    float: none;
    display: block;
    margin: 20px auto;
  }
}

table#exhibit-passes-list {
  margin-bottom: 0;
}
table#exhibit-passes-list tr:nth-of-type(1) th {
  padding: 15px 10px;
}
table#exhibit-passes-list td, table#exhibit-passes-list th {
  padding: 10px;
}
table#exhibit-passes-list td {
  border: none;
  text-align: center;
}

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