/*
Theme Name: IMA Brisbane 2021
Author: Leaky Studio
*/


/**
 * Table of Contents
 *
 * 0.0 - Fonts
 * 1.0 - Normalize
 * 2.0 - Typography
 * 3.0 - JS Controllers
 * 4.0 - Structure
 * 5.0 - Header
 * 6.0 - Menus
 * 7.0 - Footer
 * 8.0 - Splash
 * 9.0 - Body 
 
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */

@font-face{
font-family:"HankenGroteskRegular";
src:url("fonts/HKGrotesk-Regular.eot");
src:url("fonts/HKGrotesk-Regular.eot") format("eot"),url("fonts/HKGrotesk-Regular.woff2") format("woff2"),url("fonts/HKGrotesk-Regular.woff") format("woff");
}
@font-face{
font-family:"HankenGroteskMedium";
src:url("fonts/HKGrotesk-Medium.eot");
src:url("fonts/HKGrotesk-Medium.eot") format("eot"),url("fonts/HKGrotesk-Medium.woff2") format("woff2"),url("fonts/HKGrotesk-Medium.woff") format("woff");
}
@font-face{
font-family:"HankenGroteskRegularItalic";
src:url("fonts/HKGrotesk-Italic.eot");
src:url("fonts/HKGrotesk-Italic.eot") format("eot"),url("fonts/HKGrotesk-Italic.woff2") format("woff2"),url("fonts/HKGrotesk-Italic.woff") format("woff");
}


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
a {cursor: pointer;}

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}



small {
	font-size: 80%;
}

sub,
sup, .sup {
	font-size: 60%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
p.wp-caption-text {
	position: absolute;
    margin: 0;
    bottom: 0.3em;
    color: #000;
    text-align: center;
    padding: 0.3em;
    background-color: rgba(255,255,255,0.8);
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}
sup, .sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

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

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}
.input-search {
	width: calc(100% - 30px);
    border-bottom: solid 2px transparent;
    border-left: none;
    border-right: none;
    color: #0000ff;
    border-top: none;
}
.input-search:focus {
    border-bottom: solid 2px #0000ff;
    outline: none;
}

select {
	text-transform: none;
}

button {
	overflow: visible;
}
button:focus {
	outline: none;
}

button,
input,
select,
textarea {
	max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
    cursor: pointer;
    border: 0;
    color: #FFF;
    background-color: #000;
    font-size: 0.85em;
    text-transform: uppercase;
    padding: 6px 6px 3px;
    margin-bottom: 10px;
}
.meta_list button {
	margin: 0;
    background-color: transparent;
    color: #000;
    transition: all 0.1s ease-in-out;
    font-size: 1.0em;
    padding: 0 30px 0 0;
    text-transform: none;
    background-image: url(img/arrow_right_blk.svg);
    background-repeat: no-repeat;
    background-size: 20px 35px;
    background-position: right center;
}
.meta_list button:hover {
padding: 0 35px 0 0;
	}

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0.4375em;
	padding: 0;
}

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

input[type="search"] {
	-webkit-appearance: textfield;
}

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

html #wpadminbar {
	display: none !important;
	height: 0px !important;
	visibility: hidden;
}
fieldset {
	border: 1px solid #d1d1d1;
	margin: 0 0 1.75em;
	min-width: inherit;
	padding: 0.875em;
}
strong, b {
    font-weight: normal;
}

fieldset > :last-child {
	margin-bottom: 0;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

optgroup {
	font-weight: bold;
}

/**
* 2.0 - Typography / Colour
*/
h1,h2,h3,h4,h5 {
	font-weight: normal;
	font-family: 'HankenGroteskMedium';
}
.single-ima-events h1.single_title, .single-news h1.single_title {
	width:85%;
}
.subnav--shop {
	display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.subnav--shop li a {
	color: #FFF;
	font-size: 1.05em;
}
.tax-product_tag .subnav--shop li a,
.tax-product_cat .subnav--shop li a {
	opacity: 0.5;
}
.tax-product_tag.term-indigenous-art-books .subnav--shop li:nth-child(3) a {
	opacity: 1;
}
.tax-product_tag.term-art-theory .subnav--shop li:nth-child(2) a {
	opacity: 1;
}
.tax-product_tag.term-international-art-books .subnav--shop li:nth-child(4) a {
	opacity: 1;
}
.tax-product_tag.term-rare-collectable .subnav--shop li:nth-child(5) a {
	opacity: 1;
}
.tax-product_cat.term-imapublications .subnav--shop li:nth-child(1) a {
	opacity: 1;
}
h1.single_title {
	font-family: 'HankenGroteskMedium';
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 2.3em;
	width:75%;
    line-height: 1.1;
}
.square--bg {
	height: 0 !important;
	padding-top: 100%;
}
.raffle .add_to_cart_inline {
	display: none;
}
.woocommerce-variation.single_variation {
	width: 50%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	float: left;
}
.woocommerce-message::before {
    color: #00F !important;
}
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .woocommerce-info  {
	position: relative !important;
	margin: 0px !important;
	border-right:none !important;
	width: 100% !important; 
}
td.value div{
	margin-bottom: 0.3em;
}
.woocommerce-variation-add-to-cart.variations_button {
	width: 50%;
	float: right;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
	text-align: right;
}
h3.event_subtitle{
	font-family: 'HankenGroteskMedium';
	margin-top: -10px;
	font-size: 1.9em;
	margin-bottom: 20px;
	width:80%;
    line-height: 1.3;
}
h6.search_label {
	position: absolute;
	top: 20px;
	text-shadow: 1px 1px 2px rgba(50, 50, 50, 0.75);
	left: 20px;
	z-index: 3;
	color: #FFF;
	margin: 0;
	padding: 0;
	font-size: 1em;
    text-transform: uppercase;
}
li.date_nav_link a [class^="date_wrapper_events_upcoming-"] {
	display: none;
}
.flexcont {
	display: flex;
	flex-wrap: nowrap;
	align-items:center ;
}
.resource--edu {
display: inline-block;
width: 100px;
margin-right: 15px;
}
li.date_nav_link .date_wrapper_events_month {
	display: none;
}
li.date_nav_link .date_wrapper_events_month:last-child {
	display: block;
}
h3.expo_title_upcoming, a.resource--pdf {
font-family: 'HankenGroteskMedium';
margin: 0;
font-size: 1.3em;	
}
a.resource--pdf {
	color: #00F;
}
h3.expo_subtitle_upcoming, h3.expo_date_upcoming {
font-family: 'HankenGroteskMedium';
margin: 0;
font-size: 1.3em;	
}
h3.expo_date_upcoming {
	margin-top: 10px;
	margin-bottom: 40px;
}
.tax_block {
	position: absolute;
	bottom: 15px;
	right: 20px;
	text-align: right;
	width: calc(100% - 40px);
}

h3 {
	font-size: 1.15rem;
}
.raffle ul li, .ticket_type_block ul li {
	margin-bottom: 0.3em;
}
.ticket_type_block ul li:before, .raffle ul li:before{
	content: "–";
	width: 20px;
	display: inline-block;
}
.parent-pageid-12638 .woo_amc_open.left-top {
	display: block !important;
}
.parent-pageid-12638 .woo_amc_bg {
	display: block !important;
}
.woo_amc_open.left-top {
	display: none !important;
}
.woo_amc_bg {
	display: none !important;
}
.expo_desc em {
	font-family: 'HankenGroteskRegularItalic';
	font-style: normal;
}
em {
}
.op50 {
	opacity: 0.5;
}
.

strong {
	font-family: 'HankenGroteskMedium';
}
.cap {
	text-transform: uppercase;
}
a {
	text-decoration: none;
	color: #000;
}

h2 {font-size: 1.3em;}
h2.expo_title_home {
	font-size: 2.5em;
	margin: 0 0 0.0em;
	line-height: 1.1;
	font-family: 'HankenGroteskMedium';
}
h1.expo_title_home {
	font-size: 2.2em;
	margin: 0 0 0.4em;
	line-height: 1.2;
	font-family: 'HankenGroteskMedium';
}
h3.expo_date.time {
	margin-top: 0;
}
h3.expo_date {
	font-family: 'HankenGroteskMedium';
	font-size: 1.4em;
	margin-top: 15px;
	margin-bottom: 5px;
}
h3.expo_date.curator {
	margin-bottom: -10px;
    opacity: 0.7;
}
h3.location {
	font-family: 'HankenGroteskMedium';
	font-size: 1.4em;
	margin-top: 0px;
	margin-bottom: 5px;
}
h3.single_date_block {
	margin: 10px 0;
	font-size: 1.7em;
	line-height: 1.25;
	font-family: 'HankenGroteskMedium';
}
h3.single_date_block .date_wrapper_events:last-child:before {
	content: "– ";
}
.expo_desc strong {
	font-family: 'HankenGroteskMedium';
}
.expo_desc p {
	font-size: 1.1em;
	line-height: 1.4;
	font-family: 'HankenGroteskRegular';
}
.expo_desc p a, .big-text p a {
	border-bottom: solid thin #999;
}
.expo_desc p a:hover, .big-text p a:hover {
	border-bottom: solid thin #00F;
}
a {
	transition: all 0.2 ease-in-out;
}
.home h3.expo_subtitle_home,
.term-current-exhibition h3.expo_subtitle_home {
max-width: 80%;
}
h3.expo_subtitle_home {
	font-size: 1.9em;
	margin: 0.1em 0 0;
	line-height: 1.2;
	font-family: 'HankenGroteskMedium';
}
.podembed {
	filter: grayscale(1);
}
.term-upcoming h3.expo_subtitle_home, .term-upcoming h3.expo_date {
font-size: 1.2em;
	}
.single-exhibitions .expo_title_block h3.expo_subtitle_home {
	font-size: 2.1em;
	margin: -10px 0 0;
	line-height: 1.25;
	font-family: 'HankenGroteskMedium';
}

img.pad-top {
	padding: 20px 0 0
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.social {
	width: 100%;
	text-align: right;
}
ul.social li {
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	line-height: 32px;
    height: 27px;
}
ul.social li img {
	height: 27px;
	margin-top: 0px;
	width: 27px;
}
.pad-foot-col .mc-field-group {
	display: flex;
}
.foot_container .grid-item-25:last-child p {
	font-size: 1.15em;
}
.pad-foot-col .mc-field-group label {
color: #FFF;
font-size: 0.9em;
}
.pad-foot-col .mc-field-group input {
	width: 100%;
}
.pad-foot-col .mc-field-group .asterisk {
	font-size: 1.3em;
	padding-left: 0.2em;
}
.pad-foot-col #mc_embed_signup_scroll input[type="submit"] {
    color: #FFF;
    background-color: #00f;
    font-size: 0.9em;
    padding: 10px;
    margin-bottom: 10px;
}
.footer h5 {
margin: 0 0 20px;
	font-size: 1.0em;
	font-family: 'HankenGroteskRegular';	
}
.foot_container {
	margin:0 -20px;
	width: calc(100% + 20px);
}
.foot_container .pad-foot-col{
	padding: 0 20px;
}
.footer p {
	margin: 0px;
	font-size: 0.9em;
	line-height: 1.4;
	font-family: 'HankenGroteskRegular';	
}
.term-187 ul.grid_list {
	border-top: 0px solid #000;
}
.term-187 ul.grid_list li {
	padding-bottom: 40px;
	background: ;
	transition: all 0.2s ease-in-out;
}
.term-187 ul.grid_list li:hover {
background-color:  !important;
	}

ul.grid_list {
	padding: 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid #000;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.galalist {
	padding: 0;
  margin: -5px -10px 10px;
  width: calc(100% + 20px);
  list-style: none;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;	
}
img.gala_anime {
	margin:0 auto;
}
ul.galalist li{
	margin: 0 10px 10px;
}
.flexgrid_archive {
	display: flex;
	flex-wrap: wrap;
}
.post-type-archive-ima-events .full-width-block h5.ab_home {
    top: auto;
    left: 20px;
    top: -35px;
}
.pub_title_info {
	position: absolute;
	bottom: 0px;
	width: 100%;
}
.pub_title_info p.pub_title {
	margin: 0 0 0.5em;
	font-size: 1.2em;
	line-height: 1.3;
}
.pub_title_info p.eds-smaller {
	margin: 0 0 0.0em;
	line-height: 1.3;
	font-size: 1.0em;
}
.home_expo_title_block h5.off-site {
	font-size: 0.9em;
	letter-spacing: 0.05em;
	margin-top: 0;
	color: #FFF;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}
.post-type-archive-resources .podcast_badge,
.single-exhibitions .podcast_badge {
width: auto;
	}
.post-type-archive-resources .podcast_badge img,
.single-exhibitions .podcast_badge img {
	height: 55px;
	width: auto;
}
.podcast_badge {
	position: absolute;
    top: 20px;
    right: 20px;
    width: 110px;
    text-transform: uppercase;
    font-size: 0.85em;
}
.single-resources .tax_term {
font-size: 1.2em;
}
.tax_term {
		border: solid 2px #FFF;
	padding: 3px;

	text-transform: uppercase;
	font-size: 0.8em;
	margin-bottom: 5px;
	margin-left: 5px;
	display: inline-block;
	color: #FFF;
}
.term_titles .tax_term {
	font-size: 1em;
	padding: 5px;
	text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
}
.podcast_badge a {
	color: #FFF;
}
.single-ima-events ul.grid_list li.flex-item {
	width: 50%;
	position: relative;
    border-right: solid 2px #000;
    border-bottom: solid 2px #000;
        -webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
}
.single-ima-events ul.grid_list li.flex-item .splash-bg {
	    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
  transition: all 0.2s ease-in-out;
}
.single-ima-events ul.grid_list li.flex-item:nth-child(2n) {
	border-right: solid 0px #000;
}
.top_event_nav_marg {
	margin-top: 83px;
}
.compact_marg {
	margin-bottom: -83px;
}
p.locations-para {
	margin-top: -30px;
	font-size: 1.1em;
	opacity: 0.6;
	margin-bottom: 40px;
}
p.locations-para .locations-list:after {
	content: "; "
}
p.locations-para .locations-list:last-child:after {
	content: ""
}
ul.ev_utlity {
	display: flex;
	flex-wrap: nowrap;
}
.time_wrapper_events {
	padding-left: 15px;
}
ul.ev_utlity li.upcoming_archive {
	border: none;
	width: 100%;
	padding: 0;
}
ul.ev_utlity li.expo_now {
	padding: 0;
	width: 42px;
	height: 42px;
	border:none;
}
ul.ev_utlity li.date_nav_link:hover {
	background: #000;
	color: #fff;
}
ul.ev_utlity li a{
	transition: all 0.15s ease-in-out;
}
ul.ev_utlity li.date_nav_link:hover a{
	color: #FFF;
}
ul.ev_utlity.floatR li {
margin-right: 0;
margin-left: 10px;
}
ul.ev_utlity li.podcast_link_subnav {
	padding: 0;
	border: 0;
	width: 57px;
}
ul.ev_utlity li.label_utlity {
padding: 0px;
    text-align: left;
    width: 12px;
    font-size: 0.8em;
    line-height: 1;
    letter-spacing: 0.13em;
    border: solid 0px #000;
}
ul.ev_utlity li .utility_thumb {
	background-size: cover;
	background-position: center;
	width: 44px;
	border-radius: 50%;
    height: 44px;
}
li.wide_left_marg {
	margin-left: 30px;
}
ul.ev_utlity li {
    text-align: center;
    margin-right: 10px;
    font-size: 0.95em;
    line-height: 1.1;
    transition: all 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    padding: 5px;
    width: 44px;
    height: 44px;
    border: solid 2px #000;
	}
ul.ev_utlity li.date_nav_link {
font-size: 0.80em;
padding: 7px 3px 0;
}
.thumb_wrapper {
	padding: 0px;
    width: 44px;
    float: left;
    height: 44px;
    border: solid 0px #000;
}
.event_nav_right .ev_utlity {
	width: 100%;
	height: 44px;
}
.cur_double.test h3.expo_date {
	line-height: 1.4;
}
.upcoming_cycle {
	width: calc(100% - 54px);
	float: right;
	padding-top: 5px;
	font-size: 1.1em;
	line-height: 1.1;
	text-align: left;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
ul.ev_utlity li.archive_label {
font-size: 1.0em;
width: auto;
line-height: 1.1;
height: auto;
border: none;
}
.woocommerce.parent-pageid-12638 #main img, .woocommerce-page.parent-pageid-12638 #main img {
	mix-blend-mode: normal !important;
}
ul.ev_utlity li .next_label_diag {
transform: translateX(-50%) translateY(-50%) rotate(90deg);
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    white-space: nowrap;
}

.ticket_type_block .cart {
	width: 250px;
}
.ticket_type_block.group_ticket .input-text.qty.text{
display: none;
}
.ticket_type_block .input-text.qty.text{
width: 50px;
padding: 6px;
border: 1px solid;
	}
.ticket_type_block {
	width: 100%;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: dotted 2px;
}
.gala--annoucement {
    position: absolute;
    width: 170px;
    height: 150px;
    height: 170px;
    border-radius: 50%;
    padding-top: 60px;
    z-index: 9;
    left: calc(50% - 75px + 30px);
    top: 30px;
    text-align: center;
    font-size: 1.3em;
}
.home_page_badge {
	position: fixed;
	top: 35px;
	right: 0px;
	font-size: 1.1em;
	z-index: 9;
	width: calc(100% - 80px);
	height: 35px;
	line-height: 37px;
	text-transform: uppercase;
	text-align: right;
	padding-right: 25px;
}
.home_page_badge a {
	color: #FFF;
    width: calc(50% - 29px);
    display: inline-block;
    background-image: url(img/arrow_right_white.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: right 8px;
    padding-right: 35px;
}
h3.ticket_label {
	display: inline-block;
	float: left;
}
.ticket_type_block p.add_to_cart_inline,
.ticket_type_block .cart {
display: inline-block;
	float: right;
	text-align: right;
	border: none !important;
	padding: 0 !important;
}
ul.shop_grid li {
	position: relative;
	width: calc(50% - 40px);
    padding: 20px 20px 80px;
    margin: 20px;
	background-color: #f2f2f2;
	
  transition: all 0.2s ease-in-out;
}
.page-id-11870 ul.shop_grid li {
background-color: #fff;
	}

ul.grid_list li.flex-item {
	width: 33.33%;
	position: relative;
}
ul.grid_list li.flex-item .splash-bg {
	    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
  transition: all 0.2s ease-in-out;
}
ul.grid_list li.flex-item:hover .splash-bg {
 -webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
	}
 
ul.grid_list li.flex-item:nth-child(4n), ul.shop_grid li:nth-child(3n) {
	border-right: solid 0px #000;
}
.grid-item-50-abbottom-right p, .grid-item-50-abbottom p {
	font-size: 1.05em;
	line-height: 1.35;
	font-family: 'HankenGroteskMedium';
	margin: 0 0 6px;
}
.grid-item-50-abbottom-right p:last-child, .grid-item-50-abbottom p:last-child {
	margin-bottom: 0;
}
.footer .adr {
margin: 15px 0;
}
.panel_block_bg h5 {
	margin: 0;
	font-size: 1.1em;
	text-align: left;
	padding-top: 20px;
	font-family: 'HankenGroteskMedium';
}
.pub_height {
	min-height: 70vh;
}
.full-width-block h5.center_panel,
#relevents h5.center_panel,
.full-width-block-varheight h5.center_panel {
	margin: 0 auto;
	font-size: 1.1em;
	text-align: center;
	padding-top: 0px;
	font-family: 'HankenGroteskMedium';
}
#publication .full-width-block-varheight h5.center_panel {
	font-size: 1em;
}
h5.no-top-marg {
	margin-top: 0;
}
.bio_name {
	font-size: 1.25em;
	line-height: 1.4;
}
h5.panel_head {
	font-size: 1.1em;
}
.full-width-block h5 {
	margin: 0 20px 0 20px;
	font-size: 1.1em;
	text-align: left;
	position: relative;
	z-index: 3;
	padding-top: 20px;
	font-family: 'HankenGroteskMedium';
}
.panel_block_bg h2.panel_title {
margin: 0;
text-align: left;
color: #FFF;
padding: 0 0px;
font-family: 'HankenGroteskMedium';
font-size: 2.5em;
line-height: 1.25;
	}
.full-width-block h2.panel_title {
margin: 0;
padding: 0 0px;
color: #FFF;
font-family: 'HankenGroteskMedium';
font-size: 2.5em;
line-height: 1.25;
	}
.full-width-block .info_panel_left h2.panel_title {
	
}
.full-width-block h3.panel_title {
margin: 0;
text-align: left;
color: #FFF;
padding: 0 0px;
font-family: 'HankenGroteskMedium';
font-size: 2.0em;
line-height: 1.1;
	}
.panel_block_bg h3.panel_title {
margin: 0;
text-align: left;
color: #FFF;
padding: 0 0px;
font-family: 'HankenGroteskMedium';
font-size: 1.9em;
letter-spacing: 0.02em;
line-height: 1.1;
	}
.meta_para_wrap p {
	margin-top: 0;
	font-size: 1.4em;
	font-family: 'HankenGroteskMedium';
	line-height: 1.3;
}
.tour_list {
	font-size: 1.15em;
	font-family: 'HankenGroteskMedium';
	line-height: 1.3;
	margin-bottom: 40px;
}
.tour_list li {
	margin-bottom: 0.6em;
}
.tour_list li a {
	border-bottom: solid thin #CCC;
}
.tour_list li a:hover {
	border-bottom: solid thin #00F;
}
.pad_block .expo_desc p:first-child {
	margin-top:0;
}
.doc_list {
	font-size: 1.15em;
	font-family: 'HankenGroteskMedium';
	line-height: 1.3;
}
a.register--link, .sub_cell a.register--link {
	color: #FFF;
	border-bottom: none;
	background: #00F;
	padding: 5px 40px;
}
.doc_list li {
	margin-bottom: 0.2em;
}
.doc_list li:before, .page-id-11923 .expo_desc ul li:before, .page-id-17770 .expo_desc ul li:before {
	content: "– ";
}
.page-id-11923 .expo_desc ul li:before,
.page-id-11923 .expo_desc ul li p,
.page-id-17770 .expo_desc ul li:before,
.page-id-17770 .expo_desc ul li p{
	display: inline-block;
}
.page-id-17770 .sub_cell .expo_desc ul {
	margin-bottom: 0.7em;
}
.table-cell-view-50.archive_site {
	width: 50% !important;
	position: relative;
	vertical-align: bottom;
}
.archive_site {
	margin-top: 75px;
}
.page-id-11625 .block_more {
	bottom: 20px;
	right: 20px;
	padding-left: 15px;
	color: #000;
	background-image: url(img/top_bar_ltarrow_blk.svg);
}

.page-id-24 .nav_list {
	margin-top: 75px;
}
.page-id-24 #pub .expo_desc {
	margin-bottom: 50px;
}
.nav_list {
	font-size: 1.1em;
	font-family: 'HankenGroteskMedium';
	text-align: right;
}
.nav_list li {
	margin-bottom: 0.7em;
}
.nav_list li {
	padding-right: 60px;
	background-image: url('img/anchor_arrow.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 44px 12px;
}
.credit_list {
	margin-top: 0;
	margin-bottom: 40px;
	font-size: 1.4em;
	font-family: 'HankenGroteskMedium';
	line-height: 1.3;
}
.credit_list li {
	display: inline-block;
}
.grid-item-50.fl_right {
	float: right;
}
.credit_list li:after {
	content: ", ";
}
.credit_list li:last-child:after {
	content: "";
}
.meta_para_wrap p strong {
font-family: 'HankenGroteskMedium';
	}
h2.block_title {
	text-align: center;
	font-size: 2.3em;
	margin: 0 auto;
	font-family: 'HankenGroteskMedium';
}
.res--subtitle {
	display: block;
	padding-top: 8px;
}
.res--pub--cont {
	display: block;
	padding-top: 8px;
	font-size: 0.9em;
}
.res--guest {
	display: block;
	padding-bottom: 8px;
}
.highlight_link {
	background-color: #00F;
    padding: 20px;
    margin-bottom: 1.5em;
}
.page-id-14563 .highlight_link {
	background-color: #ff4f55;
	}
.page-id-14563 .expo_desc p {
	color:#ff4f55;
}
.page-id-14563 ul.award_list {
	color:#ff4f55;
}
.page-id-14563 ul.award_list li:before{
content: "⁠—";
color:#ff4f55;
}
.page-id-14563 ul.award_list li:first-child:before{
	content: "";
}
.page-id-14563 ul.award_list li {
	margin-bottom: 0.5em;
}
.highlight_link p, .highlight_link p a {
	margin: 0;
	text-align: center;
	font-size: 1.15em;
	color: #FFF;
}
h2.block_title.shophours {
	font-size: 1.8em;
}
.expo_info_block .marg_expo_single_left {
	padding: 80px 0 0px;
}
.page-id-5591 .expo_info_block .marg_expo_single_left {
	padding: 60px 0 0px;
}
.page-id-5594 .expo_info_block .marg_expo_single_left {
	padding: 42px 0 0px;
}
.expo_info_block h5:first-child {
	padding: 0px 0 5px;
	margin: 0;
}
.expo_info_block .grid-item-50 h5:first-child {
	padding: 0px 0 10px;
	margin: 0;
}
.expo_info_block h5 {
	padding: 0;
	margin: 0 0 10px 0;
}
.flexslider {
	position: relative;
    z-index: 2;
}
#mycolumns {
	margin-top: 35px;
	min-height: calc(100vh - 35px);
}
.expo_info_block {
	min-height: calc(100vh - 35px);
}
.flexslider p.wp-caption-text {
	position: absolute;
    width: calc(50% - 40px);
    right: 20px;
    margin: 0;
    font-size: 0.75em;
    top: calc(100% + 10px);
}
.expo_desc h3 {
	font-size: 1.3em;
	margin-top: 20px;
	margin-bottom: 5px;
    line-height: 1.3;
    font-family: 'HankenGroteskMedium';
}
.wp-caption {
	max-width: 100% !important;
	width: 100% !important;
}
.captionsplash p.wp-caption-text {
	margin: -10px 0 0;
	font-size: 0.75em;
	position: relative;
    background-color: transparent;
    transform: none;
    left: auto;
}
.expo_desc .wp-caption p.wp-caption-text {
	margin: 10px 0 20px !important;
	font-size: 0.75em;
}
h2.marg_top, h1.marg_top {
	margin-top: 45px;
}
#publication .lt-grey {
	height: 100%;
}
#publication .full-width-block-varheight .vert_title_container {
	width: calc(100% - 40px);
}
h4.hashtag {
	font-size: 1.3em;
    margin-top: 8px;
    line-height: 1;
    margin-bottom: 0;
}
.panel_block_bg h3.date, .full-width-block h3.date {
margin: 20px 0 0;
color: #FFF;
}
.panel_block_bg .vert_title_container,
.full-width-block .vert_title_container,
.full-width-block-varheight .vert_title_container,
.plholder .vert_title_container {
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 100%;
	transform: translateY(-50%);
}
.full-width-block .grid-item-50.pad_block.fullh .vert_title_container {
	width: calc(100% - 40px);
}
.white a {
	color: #FFF;
}
h1.addressblock {
font-size: 1.8em;
line-height: 1;	
font-family: 'HankenGroteskMedium';
margin: 0 0 5px;
}
.event_info_panel h3.ev-panel_title,
#relevents h3.ev-panel_title {
	font-size: 1.3em;
	line-height: 1.2;
	margin-bottom: 2px;
	font-family: 'HankenGroteskMedium';
}
.page-id-11494 .event_info_panel h3.ev-panel_title:first-child {
	margin-top: 0;
}
.page-id-11494 .event_info_panel h3.ev-panel_title:nth-child(2) {
	margin-top: 10px;
}

.event_info_panel h3.expo_subtitle_home_archive,
#relevents h3.expo_subtitle_home_archive {
	margin-top: 0;
	font-size: 1.125em;
	font-family: 'HankenGroteskMedium';
}
h4.ev_archive_date {
	margin-top: 0;
	font-size: 1.3em;
	line-height: 1.2;
	margin-bottom: 10px;
}
h4.news_archive_date {
	margin-top: 0;
	font-size: 0.9em;
	line-height: 1.2;
	margin-bottom: 11px;
}
.grid-pack-item h4.ev_archive_date {
	font-size: 1.2em;
	margin-bottom: 5px;
	}
.grid-pack-item .event_info_panel h3.ev-panel_title,
.post-type-archive-news .grid_list .event_info_panel h3.ev-panel_title {
    font-size: 1.25em;
    margin-top: 5px;
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'HankenGroteskMedium';
}
.post-type-archive-news ul.grid_list li.flex-item {
	margin-bottom: 1.5em;
}
h3#order_review_heading, .woocommerce-billing-fields h3, .woocommerce-shipping-fields h3 {
font-size: 1.4em;
}
.woocommerce-input-wrapper input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #CCC;
  text-transform: none !important;
}
.woocommerce-input-wrapper input::-moz-placeholder { /* Firefox 19+ */
  color: #CCC;
  text-transform: none !important;
}
.woocommerce-input-wrapper input:-ms-input-placeholder { /* IE 10+ */
  color: #CCC;
  text-transform: none !important;
}
.woocommerce-input-wrapper input:-moz-placeholder { /* Firefox 18- */
  color: #CCC;
  text-transform: none !important;
}
.woocommerce-checkout #payment ul.payment_methods li img {
	display: inline-block;
}
.woocommerce-input-wrapper input {
	text-transform: none !important;
}
.woocommerce form .form-row.mc4wp-checkbox.mc4wp-checkbox-woocommerce {
	margin: 10px 0;
    background: #00F;
    padding: 10px !important;
    color: #FFF;
}
#customer_details p, .woocommerce-checkout-payment label {
	font-size: 1.2em;
}
.woocommerce form .form-row {
    padding: 5px 0 !important;
    }
.grid-pack-item .event_info_panel h3.ev-panel_subtitle {
    font-size: 1.2em;
    margin-top: 0px;
    line-height: 1.2;
    margin-bottom: 0px;
    font-family: 'HankenGroteskMedium';
}
.fett {
	font-family: 'HankenGroteskMedium';
}
.ima_address_block p {
	margin: 0;
	font-size: 1.3em;
	line-height: 1.0;
}
.rttxt {
	text-align: right;
}
.biography p {
	margin: 0 0 0.7em 0;
    line-height: 1.4;
    font-family: 'HankenGroteskRegular';
}
h3.ev_archive_date_upcoming {
	margin-top: 0;
	margin-bottom: 0.7em;
	font-size: 1.5em;
}
.event--multiple:after {
	font-size: 1.5em;
}
h4.ev_archive_date .event--multiple:after {
	font-size: 1.25em;
	line-height: 1;
}
.full-width-block_news .event--multiple:after {
	font-size: 1.2em;
}
.full-width-block_news .event--multiple .multiple_archive_date_upcoming {
	font-size: 1.2em;
}
.event--multiple .multiple_archive_date_upcoming {
	font-size: 1.5em;
}
h3.ev_archive_date_upcoming.spandate {
	margin-top: 0;
	display: inline-block;
	margin-bottom: 0.7em;
	font-size: 1.5em;
}
h3.ev_archive_date_upcoming.spandate:last-child:before {
	content: " – ";
}
h4.ev_archive_date .event--multiple .date_wrapper_events:last-child:before {
	content: none;
}
h2.ev-panel_title_up {
margin-top: 0;
margin-bottom: 0;
line-height: 1.15;
font-size: 2.5em;	
}
h3.event_upcoming_subtitle {
	margin-top: 0;
	font-size: 1.9em;
}
.term_titles {
	position: absolute;
    right: 20px;
    top: -42px;
    text-align: right;
}
h3.ev_archive_date_upcoming .ampernone:after {
	content: "–";
}
h3.ev_archive_date_upcoming .ampernone:last-child:after {
	content: "";
}

.event_nav_full {
	left: 0px;
	width: calc(100% - 0px);
	height: 85px;
	transition: all 0.2s ease-in-out;
	background: rgba(255,255,255,0.9);
	z-index: 3;
	opacity:1;
	position: fixed;
    top: 35px;
}
.page-id-5676 .event_nav {
	padding: 0;
}
.block--border--top {
	border-top: solid 2px #000;
}
ul.ev_utlity.floatR li.wide_left_marg {
	margin-right: 10px;
}
/*CHURCHIE*/
img.churchie_logo {
	max-width: 280px;
	margin: -15px 0 -15px -5px;
}
.churchie-border-top {
	width: calc(100% - 35px);
    height: 40px;
    position: absolute;
    left: 35px;
    z-index: 3;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff4f55+0,ffffff+100&1+0,0+100 */
background: -moz-linear-gradient(top,  rgba(255,79,85,1) 0%, rgba(255,255,255,0) 80%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,79,85,1) 0%,rgba(255,255,255,0) 80%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,79,85,1) 0%,rgba(255,255,255,0) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4f55', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

}
.churchie-border-bottom {
	width: calc(100% - 35px);
    height: 40px;
    position: absolute;
    left: 0px;
    bottom: 0;
    z-index: 3;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ff4f55+100&0+0,1+100 */
background: -moz-linear-gradient(top,  rgba(255,255,255,0) 20%, rgba(255,79,85,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 20%,rgba(255,79,85,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,255,255,0) 20%,rgba(255,79,85,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ff4f55',GradientType=0 ); /* IE6-9 */

}
.churchie-border-left {
	width: 40px;
    height: calc(100% - 35px);
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 3;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff4f55+0,ffffff+100&1+0,0+100 */
background: -moz-linear-gradient(left,  rgba(255,79,85,1) 0%, rgba(255,255,255,0) 80%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(255,79,85,1) 0%,rgba(255,255,255,0) 80%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(255,79,85,1) 0%,rgba(255,255,255,0) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4f55', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */

}
.churchie-border-right {
	width: 40px;
    height: calc(100% - 35px);
    position: absolute;
    right: 0px;
    top: 35px;
    z-index: 3;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ff4f55+100&0+0,1+100 */
background: -moz-linear-gradient(left,  rgba(255,255,255,0) 20%, rgba(255,79,85,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 20%,rgba(255,79,85,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(255,255,255,0) 20%,rgba(255,79,85,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ff4f55',GradientType=1 ); /* IE6-9 */

}



/*LINKS*/
.event_nav {
	position: relative;
    top: 0px;
    transition: all 0.2s ease-in-out;
    width: calc(50% - 0px);
    left: 0px;
    height: 85px;
    z-index: 2;
    float: left;
    padding: 20px;
    border-bottom: solid 2px #000;
    border-right: solid 1px #000;
}
a.blur-out {
	transition: all 0.2s ease-in-out;
}
a.blur-out:hover, a.blur-out:focus {
-webkit-animation:rainbow 1s infinite;
-ms-animation:rainbow 1s infinite;
-o-animation:rainbow 1s infinite;
animation:rainbow 1s infinite;
}

.color-text-flow span,
.color-text-flow-hover:hover span {
    -webkit-animation-name: color-text-flow-keys;
    animation-name: color-text-flow-keys;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.color-text-flow span:nth-of-type(1),
.color-text-flow-hover:hover span:nth-of-type(1) {
    -webkit-animation-delay: -4.2s;
    animation-delay: -4.2s;
}
.color-text-flow span:nth-of-type(2),
.color-text-flow-hover:hover span:nth-of-type(2) {
    -webkit-animation-delay: -4s;
    animation-delay: -4s;
}
.color-text-flow span:nth-of-type(3),
.color-text-flow-hover:hover span:nth-of-type(3) {
    -webkit-animation-delay: -3.8s;
    animation-delay: -3.8s;
}
.color-text-flow span:nth-of-type(4),
.color-text-flow-hover:hover span:nth-of-type(4) {
    -webkit-animation-delay: -3.6s;
    animation-delay: -3.6s;
}
.color-text-flow span:nth-of-type(5),
.color-text-flow-hover:hover span:nth-of-type(5) {
    -webkit-animation-delay: -3.4s;
    animation-delay: -3.4s;
}
.color-text-flow span:nth-of-type(6),
.color-text-flow-hover:hover span:nth-of-type(6) {
    -webkit-animation-delay: -3.2s;
    animation-delay: -3.2s;
}
.color-text-flow span:nth-of-type(7),
.color-text-flow-hover:hover span:nth-of-type(7) {
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}
.color-text-flow span:nth-of-type(8),
.color-text-flow-hover:hover span:nth-of-type(8) {
    -webkit-animation-delay: -2.8s;
    animation-delay: -2.8s;
}
.color-text-flow span:nth-of-type(9),
.color-text-flow-hover:hover span:nth-of-type(9) {
    -webkit-animation-delay: -2.4s;
    animation-delay: -2.4s;
}
.color-text-flow span:nth-of-type(10),
.color-text-flow-hover:hover span:nth-of-type(10) {
    -webkit-animation-delay: -5.5s;
    animation-delay: -2.2s;
}
.color-text-flow span:nth-of-type(11),
.color-text-flow-hover:hover span:nth-of-type(11) {
    -webkit-animation-delay: -5.0s;
    animation-delay: -2.2s;
}
.color-text-flow span:nth-of-type(12),
.color-text-flow-hover:hover span:nth-of-type(12) {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}
.color-text-flow span:nth-of-type(13),
.color-text-flow-hover:hover span:nth-of-type(13) {
    -webkit-animation-delay: -1.8s;
    animation-delay: -1.8s;
}
.color-text-flow span:nth-of-type(14),
.color-text-flow-hover:hover span:nth-of-type(14) {
    -webkit-animation-delay: -1.6s;
    animation-delay: -1.6s;
}
.color-text-flow span:nth-of-type(15),
.color-text-flow-hover:hover span:nth-of-type(15) {
    -webkit-animation-delay: -1.4s;
    animation-delay: -1.4s;
}
.color-text-flow span:nth-of-type(16),
.color-text-flow-hover:hover span:nth-of-type(16) {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}
.color-text-flow span:nth-of-type(17),
.color-text-flow-hover:hover span:nth-of-type(17) {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
.color-text-flow span:nth-of-type(18),
.color-text-flow-hover:hover span:nth-of-type(18) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.color-text-flow span:nth-of-type(20),
.color-text-flow-hover:hover span:nth-of-type(20) {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.color-text-flow span:nth-of-type(21),
.color-text-flow-hover:hover span:nth-of-type(21) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.color-text-flow span:nth-of-type(22),
.color-text-flow-hover:hover span:nth-of-type(22) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.color-text-flow span:nth-of-type(23),
.color-text-flow-hover:hover span:nth-of-type(23) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
@-webkit-keyframes color-text-flow-keys {
    0% {
        color: #FFF;
    }
    
    50.0% {
        color: #00F;
    }
    
    90% {
        color: #FFF;
    }
    
    100% {
        color: #FFF;
    }
}
@keyframes color-text-flow-keys {
    0% {
        color: #FFF;
    }
    
    50.0% {
        color: #00F;
    }
    
    90% {
        color: #FFF;
    }
    
    100% {
        color: #FFF;
    }
}
img.gala_location_logo {
	max-width: 280px;
    margin: -1em auto 0px;
}
.parent-pageid-12638 .color-text-flow span,
.parent-pageid-12638 .color-text-flow-hover:hover span {
    -webkit-animation-name: color-text-flow-keys-gala;
    animation-name: color-text-flow-keys-gala;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes color-text-flow-keys-gala {
    0% {
        color: #FFF;
    }
    
    50.0% {
        color: #876cf9;
    }
    
    90% {
        color: #FFF;
    }
    
    100% {
        color: #FFF;
    }
}
@keyframes color-text-flow-keys-gala {
    0% {
        color: #FFF;
    }
    
    50.0% {
        color: #876cf9;
    }
    
    90% {
        color: #FFF;
    }
    
    100% {
        color: #FFF;
    }
}

.event_nav_full:hover {
	opacity: 1;
}
.event_nav_right {
	position: relative;
	float: left;
    top: 0px;
    width: calc(50% - 0px);
    right: 0px;
    transition: all 0.2s ease-in-out;
    height: 85px;
    border-left: solid 1px #000;
    z-index: 2;
    padding: 20px;
    border-bottom: solid 2px #000;

}
.third-height {
	height: 33vh;
}
.third-height iframe {
	max-height: 100%;
	height: 100%;
	filter: grayscale(1);
}
.info_panel_right.blkbg,
.info_panel_left.blkbg,
.info_panel_left.blkbg a,
.info_panel_right.blkbg a{
	color: #FFF;
}

/*bg Colours*/
.pink {
	color: #DA188A;
}
.midgreybg {
background:#8E9091;	
}
.blue {
	color: #0000FF;
}
.white {
	    color: #FFF;
}
h3.lrger {
	font-size: 1.25em;
}
.lt-grey {
	background:#F2F2F2;
	}
.mid-grey {
	background:#dedede;
}
.dark-grey {
	background:#222;
}
.grid-item-50.pad_block.fullh {
	height: 100%;
}
a.donate_more {
	background-color: #0000FF;
	font-size: 1.0em;
	text-align: center;
	color: #FFF;
	width: calc(100% - 0px);
	padding:10px; 
	margin: 5px 0px 10px;
	display: block;
}
a.donate_more.right_button {
	float: right;
}
a.donate_more.leftbutton {
	float: left;
}
.expo_desc ol {
	font-size: 1.1em;
	font-family: 'HankenGroteskRegular';
}
/**
 * 3.0 - JS Controllers
 */
table.extra-options .required {
	color: #00F !important;
}
table.extra-options {
	margin-bottom: 0.5em;
}
table.extra-options .thwepo-input-field {
	border: solid 2px #000;
	padding: 5px;
	width: 100%;
}
table.extra-options td {
	padding: 5px 0;
}
.wpcf7 ol {
	font-size: 1.1em;
	font-family: 'HankenGroteskRegular';
}
div.wpcf7-response-output {
    margin: 2em 0em 0em !important;
    }
div.wpcf7-mail-sent-ok {
    border: 2px solid #00F !important;
    color: #FFF !important;
    background: #00F !important;
}
.wpcf7 .gala .pad_block {
	padding-top: 0;
}
table.extra-options .thwepo-input-field:focus {
	outline: none;
	border: solid 2px #00F;
}
.wpcf7-checkbox input[type="checkbox"] {
	margin-top: 1em;
}
.wpcf7-form-control-wrap.radio-155 {
	margin-top: 1em;
}
.wpcf7-checkbox span.wpcf7-list-item {
    display: inline-block;
    margin: 0em;
}
.wpcf7 .wpcf7-repeater-item {
    padding: 0px;
}
.wpcf7 p {
	line-height: 1.4;
}
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="url"] {
	border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: solid 1px #000;
    background-color: transparent;
    padding: 5px 0;
}
.wpcf7-repeater-remove {
    color: #FFF;
    border-color: #000;
    background: #000;
    -webkit-box-shadow: none;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: 'HankenGroteskMedium', arial, sans-serif;
    box-shadow: none;
    vertical-align: top;
}
.land--welcome {
	display: none;
}
.wpcf7-repeater-add {
    background: #FFF;
    border-color: #000;
    margin-top: 0.5em;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: 'HankenGroteskMedium', arial, sans-serif;
    color: #000;
    text-decoration: none;
    text-shadow: none;
}
.time--multiple {
	display: inline-block;
}
.time--multiple:before {
	content: " — ";
}
.event--multiple {
	white-space: nowrap;
}
.event--multiple:after {
	content: ", ";
}
.event--multiple:last-child:after {
	content: "";
}
.wpcf7-repeater-add:hover, .wpcf7-repeater-add:focus {
	background: #00F;
	color: #FFF;
}
.wpcf7 textarea {
	width: 100%;
	margin:0.7em 0;
	padding: 10px;
	border:solid thin #000; 
	background-color: transparent;
}
.wpcf7 textarea:focus {
border:solid thin #00F;
outline: none;
}
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 input[type="url"]:focus {
	border-bottom: solid 1px #00F;
	outline: none;
}
.page-id-4 .wp-caption-text {
	color: #FFF;
}
.page-id-4 .expo_desc p:last-child {
	padding-bottom: 40px;
}
h3.blue--text {
	color: #00F;
}
.button--page {
	display: block;
    margin: 10px 0 2.5rem;
}
.sub_cell h3.block--sub {
	margin: 1.5rem 0 0;
}
.sub_cell .button--page a.button--page--link {
    color: #FFF;
    background: #00F;
    display: inline-block;
    padding: 10px;
    font-size: 1em;
    text-transform: uppercase;
    border-bottom: none;
	}
.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.donate_holder .ywcds_amount_field label {
    font-weight: normal !important;
    display: block !important;
}
.donate_holder .ywcds_form_container .ywcds_button_field .ywcds_submit_widget {
font-size: 1em;
margin: 28px 0 0;
padding: 7px 12px;
background-color: #00F;
}
.ywcnp_sugg_price {
	border: 2px solid #000;
	margin: 5px 0 0;
padding: 5px;
}
.ywcnp_sugg_price:focus {
outline: none;
	border: solid 2px #00F;
	}
.donate_holder .ywcds_amount {
display: inline-block;
margin: 5px 0 0;
padding: 5px;
width: 100%;
border: 2px solid #000;
}
.donate_holder .ywcds_amount:focus {
	outline: none;
	border: solid 2px #00F;
}
.grid-item-50.half-height .embed-container iframe {
    position: absolute;
    top: 0px;
    left: 20px;
    width: calc(100% - 40px);
    height: 100%;
}
.grid-item-50.half-height {
	height: calc(50vh - 18px);
}
#event-nav {
	transition: all 0.3s ease-in-out;
}
.single-resources .pad_block p:first-child {
	margin-top: 0;
}
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideUp {
0% {
    transform: translateY(0);
}

100% {
    transform: translateY(-100%);
}
}
@keyframes slideUp {
0% {
    transform: translateY(0);
}

100% {
    transform: translateY(-100%);
}
}
.slideUp {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
@-webkit-keyframes slideDown {
0% {
    transform: translateY(-100%);
}

100% {
    transform: translateY(0);
}
}
@keyframes slideDown {
0% {
    transform: translateY(-100%);
}

100% {
    transform: translateY(0);
}
}
.slideDown {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}


.marg_utlity {
	margin-top: 120px !important;
}
#artist_bio, #curator_bio, #publication {
	width: 100%;
}

.gutter-sizer {
    width: 0;
    height: 0;
} 
.top_pod_icon {
	transition: all 0.1s ease-in-out;
	fill: #000000;
}
.top_pod_icon:hover, #grid_view_trigger:hover, #grid_view_trigger.is-active, #list_view_trigger:hover, #list_view_trigger.is-active {
	fill: #0000FF;
}
#forty {
transition: all 0.1s ease-in-out;
fill: #000;	
}
ul.ev_utlity li.archive_40years {
	border: none;
	padding: 2px;
}
#forty:hover {
fill: #ec1c4f;	
}
#grid_view_trigger, #list_view_trigger {
	cursor: pointer;
	transition: all 0.1s ease-in-out;
	fill: #000000;
}
#view {
	transition: all 0.3em ease-in-out;
}
.grid-item-50.fullh.cur_double {
	height: calc(100vh - 35px);
	width: calc(50% - 40px);
}
.grid-item-50.fullh.cur_double:first-child {
	margin-left: 80px;
}
.cur_double .splash-bg-full {
    width: 100%;
    height: 100%;
    }
.cur_double .home_expo_title_block {
	height: 100%;
    width: calc(100% - 0px);
}
.location_logo {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
}
ul.grid_list.list-view {
	flex-wrap: wrap;
}
.flex .features.section_wrap.list-view:first-child {
	margin-top: 85px;
}
.features.section_wrap.list-view h3.ev_archive_date_upcoming {
	margin-bottom: 0;
}
ul.grid_list.list-view li.flex-item .splash-bg{
	width: 120px;
	padding-top: 120px;
	float: left;
}
ul.grid_list.list-view li.flex-item img.respub--archive {
	width: 120px;
	height: 120px;
	float: left;
}
.features.section_wrap.list-view h3.ev_archive_date_upcoming,
.features.section_wrap.list-view h2.ev-panel_title_up {
	font-size: 1.3em;
}
.features.section_wrap.list-view h3.event_upcoming_subtitle {
	font-size: 1.125em;
	margin-top: 2px;
}
.features.section_wrap.list-view .grid {
	float: left;
	width: calc(50% - 40px);
}
.features.section_wrap.list-view .grid .grid-item-70,
.features.section_wrap.list-view .grid .grid-item-30 {
	width: 100%;
	float: none;
}
.features.section_wrap.list-view  .grid-item-30.rttxt {
	text-align: left;
}
.features.section_wrap.list-view .splash-bg-full {
	width: 120px;
	float: left;
	height: calc(120px);
}
.features.section_wrap.list-view .full-width-block,
.features.section_wrap.list-view {
	height: 120px;
}
.features.section_wrap.list-view .ab_home,
.features.section_wrap.list-view .term_titles,
.features.section_wrap.list-view .teaser {
	display: none;
}
ul.grid_list.list-view li.flex-item .event_info_panel,
.features.section_wrap.list-view .info_panel_right {
	float: right;
	width: calc(100% - 120px);
}
.features.section_wrap.list-view .info_panel_right {
	min-height: 120px;
	max-height: 120px;
}
ul.grid_list.list-view li.flex-item .title_block_upcoming {
    float: right;
    width: calc(100% - 120px);
}
ul.grid_list.list-view li.flex-item .event_info_panel h4.ev_archive_date,
ul.grid_list.list-view li.flex-item .title_block_upcoming .title_block_list_contain {
	width: calc(50% - 40px);
    float: left;
}
ul.grid_list.list-view li.flex-item .event_info_panel h3 {
	width: calc(50% - 0px);
    float: left;
    margin-top: 0;
}
ul.grid_list.list-view li.flex-item .title_block_upcoming h3.expo_date_upcoming {
	width: calc(50% - 0px);
    float: left;
    margin-top: 0;
    margin-bottom: 0.2em;
}
ul.grid_list.list-view li.flex-item .title_block_upcoming p.locations-para {
	width: calc(50% - 0px);
    float: left;
    font-size: 0.85em;
    margin-top: 0;
    margin-bottom: 0.0em;
}

ul.grid_list.list-view li.flex-item {
    width: 100%;
    position: relative;
    flex-direction: row;
    border-bottom: solid 2px #000;
}
.flexslider.loading{
    background-image:url("http://placehold.it/921x537/bada55/111&text=Loading...");
    height:100%;
    background-position: center;
    background-size: cover;
    width:100%;
}
.ev_archive_date .event--multiple .date_wrapper_events:after {
	content: "";
}
.ev_archive_date .date_wrapper_events:after {
	content: " – ";
}
.ev_archive_date .date_wrapper_events:last-child:after {
	content: "";
}
.inactive {
	display: none !important;
}
#event_types {
	font-size: 1.2em;
}
#select_filter {
    width: 100%;   
    position: relative;
    float: left;
    background: #FFF;
    } 
#select_filter .inner {
    width: 100%;
    position: relative;
}
#select_filter .label {
    padding-left: 9px;
    line-height: 40px;
}
#select_filter .selected {
    width: 100%;
    height: 100%;
    border: 2px solid #1e1e1e;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
#select_filter .selected:before {
    content: '';
    width: 40px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    background: url(img/anchor_arrow.svg) no-repeat;
    background-size: 100%;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translateY(-50%);
    transform: translate3d(0,-50%,0);
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.options ul {
	column-count: 2;
}
#select_filter .options ul li:hover {
    background: #000000;
    color: #fff;
}
#select_filter .options ul li:hover a{
	color: #FFF;
	} 
#event_types.active .selected:before {
    -webkit-transform: translate3d(0,-50%,0) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    transform: translate3d(0,-50%,0) rotate(180deg);
}
#select_filter .options ul li {
    width: 100%;
    cursor: pointer;
}
#select_filter .options.is-active {
	overflow: visible;
	height: auto;
}
#select_filter .cat-item {
    padding-left: 9px;
    line-height: 40px;
}
#select_filter .options {
    width: 100%;
    height: 0px;
    position: absolute;
    top: 100%;
    overflow: hidden;
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
#select_filter .options ul {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 2px solid #000;
    background: #FFF;
    border-top: 0px;
}

.select-style select {
    padding: 10px 12px;
    width: 130%;
    font-size: 1em;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
}
.lazy {
    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
    max-width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
}

.lazy.b-loaded {
    opacity: 1;
}
.opacity-30 {
	opacity: 0.3;
}
.woocommerce .products ul.product--tags--list li:after {content: ",\00a0";}
.woocommerce .products ul.product--tags--list li:last-child:after {content: "";}
.woocommerce .products ul.product--tags--list li {font-size: 0.8em;color: #00F; opacity: 0.5;}
.woocommerce .products ul.product--tags--list {margin: 0 0 0.2em 0 !important;}
/**
MEDIA
**/



/**
 * 4.0 - Structure
 */
 
 
body {
	font-family: 'HankenGroteskMedium', arial, sans-serif;
}


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
} 
.title_block_left {
	min-height: calc(40vh - 35px);
	position: relative;
}
#main {
	width: calc(100% - 0px);
    padding-left: 0px;
	min-height: calc(100% - 35px);
	overflow: hidden;
}
.cur-ex {
	padding-left: 0px;
	width: calc(100% - 0px);
}
.vertical_label {
	width: 80px;
	float: left;
	height: 100%;
    position: relative;
}
.panel_block_bg {
	padding: 20px 20px 50px;
}
.grid-pack-item .panel_block_bg {
	padding: 20px 0;
}
.pad_block {
	padding: 20px;	
}
.grid-item-25.pad_block {
	width: calc(25% - 40px);
}
.grid-item-50.pad_block {
	padding-right: 20px !important;
}
.rotate_label {
transform:  translateX(-50%) translateY(-50%) rotate(90deg);
position: absolute;
text-transform: uppercase;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    z-index: 99999;
    font-size: 2em;
    font-family: "HankenGroteskMedium";
    color: white;
    mix-blend-mode: difference;
}


.wrap_news {
	width: calc(100% - 0px);
	margin-left: 0px;
}
.features .left-50 {
	width: calc(50% - 0px);
	position: relative;
}
.full-width-block h5.ab_home {
	top: -30px;
    left: calc(0% + 20px);
}
.info_panel_left.grid-item-50 {
	position: absolute !important;
	left: 0px;
	width: 100%;
	min-height: 30vh;
	transition: all 0.2s ease-in-out;
	bottom: 0;
}
.info_panel_left.upcoming_block {
	right: 0;
	left: auto;
}
.full-width-block h2.panel_title a {
	color: #FFF;
}
.pad_block h3:first-child {
	margin-top: 0;
}

.info_panel_right.grid-item-50 {
	position: absolute !important;
	right: 0px;
	width: 100%;
	min-height: 30vh;
	bottom: 0;
}
.info_panel_right.ontoday {
	bottom: 35px;
}
.ima_address_block.left-50 {
	width: auto;
	border: solid 2px #000;
    background: #FFF;
	padding: 20px !important;
}
.pad-right-10 {
	padding-right: 10px !important;
}
.pad-right-20 {
	padding-right: 20px !important;
}
.features .right-50 {
	width: calc(50% + 0px);
	position: relative;
	float: right;
}
.ima_address_block {
	position: absolute !important;
	z-index: 2;
	top: 20px;
	left: 100px;
}
.ima_address_block .adr {
margin-top: 20px;
}

#side_bar {
	width: 80px;
	height: calc(100vh - 35px);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}
.mc-field-group.input-group input, .mc_fieldset.gdprRequired input{
    width: 35px;
    border-bottom: solid 2px #000;
    border-right: none;
    transition: all 0.2s ease-in-out;
    border-top: none;
    border-left: none;
    float: left;
}
#mc_embed_signup div.mce_inline_error {
    background-color: #00F !important;
    }
#mc_embed_signup input.mce_inline_error {
    border-color: #00F !important;
}

.page-id-4 .grid.table-view .table-cell-view-50:last-child,
.single-exhibitions .grid.table-view .table-cell-view-50:last-child {
    border-left: solid 0px #000;
}
.border_bottom_dash {
	border-bottom: dashed 2px #CCC;
}

.sub_cell p {
font-size: 1.15em;
font-family: 'HankenGroteskRegular';
line-height: 1.4;
margin: 15px 0;	
}
.page-id-114 h1.expo_title_home, .page-id-114 h3.sub_page {
font-size: 2.1em;
margin: 0 0 0em;
    line-height: 1.2;
}
.variations .label {
	display: none;
}
.variations {
	width: 100%;
}
.variations select {
	width: 100%;
}
ul.perks .perk_head, ul.cost .cost_head {
	font-size: 1.3em;
}
ul.perks li:before {
	content: "– "
}

ul.perks li {
	margin-bottom: 5px;
}

.sub_cell h4 {
	margin-bottom: 0;
	font-size: 1.15em;
}

.page-id-114 .table-cell-view-50 a {
	border-bottom: solid 1px #00F;
}
.grid-item-60 .comma:after {
	content: ", ";
}
.grid-item-60 .comma:last-child:after {
	content: "";
}
.min-height-40 {
	min-height: 40vh;
}
.page-id-12299 .flex .full-width-block-varheight:last-child .border_bottom_dash,
.page-id-12297 .flex .full-width-block-varheight:last-child .border_bottom_dash{
	border-bottom: none;
}
.pdfdown {
	margin-top: 25px;
}
.interests li {
	margin: 0 0 10px 0;
}
.input-group h3, .content__gdpr h3, .sub_cell h3{
	font-size: 1.4em;
	margin: 15px 0;
}
ul.perks {
	margin-bottom: 2em;
}
.mc-field-group.gdpr-mergeRow {
	margin-bottom: 0;
}
.page-id-11923 .sub_cell ul, .page-id-17770 .sub_cell ul {
    font-size: 1em;
    margin-bottom: 40px;
}

.page-id-20 .sub_cell ul {
	font-size: 1em;
	margin-top: 20px;
	margin-bottom: 20px;
}
.page-id-20 .sub_cell ul li p {
	display: inline-block;
	margin-left: 1.5em;
}
.page-id-20 .sub_cell ul li p:before {
	content: "— ";
	margin-left: -1.5em;
	width: 1.5em;
	display: inline-block;
}
.sub_cell ul h4 {
	color: #00F;
}
.page-id-11923 .sub_cell h3, .page-id-17770 .sub_cell h3 {
	margin-bottom: 5px;
}
.page-id-17770 .sub_cell li h3 {
	margin-top: 15px;
}
.page-id-11923 .table-cell-view-50.sub_cell p,
.page-id-17770 .table-cell-view-50.sub_cell p{
	margin-top: 0;
}

.page-id-114 .table-cell-view-50 a.subbut,
.page-id-11923 .table-cell-view-50 a.subbut,
.page-id-17770 .table-cell-view-50 a.subbut{
    border-bottom: solid 1px #00F;
    font-size: 1.15em;
    display: inline-block;
    margin-bottom: 15px;
}
.expo_desc.fett.lrg_type {
	font-size: 1.20em;
	margin-top: -10px;
}
.sub_cell ul {
	font-size: 1.15em;
	margin-bottom: 20px;
}
.sub_cell ul.block--list li {
	margin-bottom: 2.5em;
}
.sub_cell ul li {
	margin-bottom: 10px;
}
#mc_embed_signup_scroll input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border: 0;
    color: #FFF;
    background-color: #00f;
    font-size: 1.15em;
    padding: 15px;
    margin-bottom: 10px;
}
.mc-field-group fieldset {
    border: 2px solid #00F;
    margin: 0 0 1.75em;
    font-size: 1em !important;
    min-width: inherit;
    padding: 0.875em;
}
.foot_container .pad-foot-col h4 {
	font-size: 1.2em;
	margin: 10px 0; 
}
.indicates-required {
	text-align: right;
}
.mc-field-group {
	font-size: 1.15em;
	margin-bottom: 15px;
	font-family: 'HankenGroteskRegular';
	line-height: 1.4;
}
.mc-field-group input {
	width: 70%;
	border-bottom: solid 2px #000;
	border-right: none;
	transition: all 0.2s ease-in-out;
	border-top: none;
	border-left: none;
	float: right;
}
.parent-pageid-12638 .ywcds_form_container input {
	padding: 5px;
	border: solid 2px #000;
}
.parent-pageid-12638 .ywcds_form_container input:focus {
	outline: none;
	border: solid 2px #00F;
}
.mc-field-group input:focus {
	outline: none;
	border-bottom: solid 2px #00F;
}
.asterisk {
color: #00F;	
}
.subscribe_full_block p {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 2.1em;
    text-align: center;
    line-height: 1.25;
    color: #FFF;
    padding: 0 20px;
}
.floatL {
	float: left;
}
.multiplyimage {
	background-blend-mode: lighten;
    background-color: #00F;
}
.floatR {
	float: right;
}
.medium-gallery {
	margin-left:80px;
	height: 70vh;
	width: calc(100% - 80px);
}
.medium-gallery .flexslider, .small-gallery-50vh .flexslider{
	width: 100%;
}
.medium-gallery .flexslider .splash-bg-full-single {
	height: 70vh;
	max-width: 960px !important;
}
.medium-gallery .flexslider .slides > li {
transition: all 0.2s ease-in-out;
opacity: 1;
}
.medium-gallery .flexslider .slides > li.flex-active-slide {
opacity: 1;
}
.grid-item-50.small-gallery-50vh {
	height: 50vh;
	margin-left: 80px;
	width: calc(100% - 80px);
}
.grid-item-50.small-gallery-50vh .splash-bg-full-single {
	width: calc(50% - 0px);
}
.section_wrap {
	width: calc(100% - 0px);
	height: calc(100vh - 35px);
	position: relative;
}
.subscribe_full_block {
	height: 35vh; width: calc(100%);margin-left: 0px;
	transition: all 0.2s ease-in-out;
	position: relative;
}
.subscribe_full_block:hover {
	background-color: #0000FF;
}
.subscribe_full_block .latest_label {
left: 50%;
    transform: translateX(-50%);
    text-shadow: 0px 0px 0px rgba(50, 50, 50, 1);
	}
.section_wrap_single {
	width: calc(100% - 0px);
    margin-left: 0px;
	height: calc(50vh - 0px);
	position: relative;
}
.section_wrap_news {
	width: calc(100% - 0px);
	height: calc(100vh / 4);
	position: relative;
}
.subtitle_small {
	font-size: 0.70em;
}
.full-width-block_news {
width: calc(100% - 0px);
	margin-left: 0px;
	height:100%;
	position: relative;
	border-bottom: solid 2px #000;
	}
.full-width-block_news p, .full-width-block_news .talk-date {
	line-height: 1.35;
	font-size: 1.1em;
}
.full-width-block {
	width: calc(100% - 0px);
	margin-left: 0px;
	height: calc(100vh - 35px);
	position: relative;
}
.full-width-block-70vh {
	width: calc(100% - 0px);
	margin-left: 0px;
	height: calc(70vh - 0px);
	position: relative;
}
.full-width-block-80vh {
	width: calc(100% - 0px);
	margin-left: 0px;
	margin-top: 0px;
	height: calc(50vh - 0px - 0px);
	position: relative;	
}
.full-width-block-varheight {
	width: calc(100% - 0px);
	margin-left: 0px;
	height: auto;
	position: relative;
}
.full-width-block-height70 {
	width: calc(100% - 80px);
	margin-left: 80px;
	height: calc(70vh - 35px);
	position: relative;
}
.expo_desc.pad_block p:last-child {
margin-bottom: 0;
}
.grid:after, .accordion_list li:after, .meta_list li:after, .meta_list_partner li:after, .mc-field-group:after {
	content: "";
	display: table;
	clear: both;	
}
.meta_list li p, .meta_list_partner li p {
	margin: 0;
}
.meta_list li p a, .meta_list_partner li p a {
	border-bottom: solid 1px #00F;
}
.grid-item-50-abbottom {
	position: absolute !important;
	width: calc(50% - 40px);
	bottom: 20px;
	left: 20px;
}
.grid-item-50-abbottom-right {
position: absolute !important;
	width: calc(50% - 40px);
	bottom: 20px;
	right: 20px;
}


.grid-pad-vert {
	padding-top: 20px;
	padding-bottom: 20px;
}
.grid-item-25.alright {
	float: none;
}
[class*='grid-item-'] {
  padding-right: 0px;
  float: left;
  position: relative;
}

[class*='grid-item-']:last-of-type {
  padding-right: 0;
}

.grid-border {
	border: solid 0px #000;
}
.grid-item-16 {
	width: 16.666%;	
}

.grid-item-20 {
	width: 20%;	
}

.grid-item-25 {
	width: 25% ;
}

.grid-item-30 {
	width: 30%;	
}

.grid-item-33 {
	width: 33.333%;
}

.grid-item-50 {
	width: 50%;
}
.grid-item-40 {
	width: 40%;
}
.grid-item-60 {
	width: 60%;
}

.grid-item-66 {
	width: 66.666%;
}

.grid-item-70 {
	width: 70%;	
}

.grid-item-75 {
	width: 75%;	
}
.grid-item-80 {
	width: 80%;	
}

.grid-item-100 {
	width: 100%;	
}
.title_block_upcoming {
	padding: 20px;
}

.img-bg, .gallery {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.section_head {
	padding: 12px 20px 10px;
}
.center {
	width: 100%;
    padding: 0 20px;
}
.home_expo_title_block {
	position: absolute;
    bottom: 0px;
    padding: 20px;
    min-height: 30vh;
    right: 0px;
    width: calc(100% - 0px);
    z-index: 1;
}
.border-bottom-rel {
	border-bottom: solid 2px #dedede;
	padding-top: 15px;
    padding-bottom: 11px;
}
.marg_top_sec_col {
	margin-top: 70px;
}
.border-bottom-list {
	border-bottom: solid 2px #dedede;
}
.home_expo_title_block h5 {
	margin-top: 0;
	margin-bottom: 0em;
}
h5.ab_home {
	margin-top: 0;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 0.45);
    letter-spacing: 0.01em;
    font-size: 1em;
    margin-bottom: 0;
    position: absolute;
    top: -30px;
    right: auto;
    left: calc(0% + 20px);
    font-family: 'HankenGroteskRegular';
    z-index: 1;
    border: solid 0px #FFF;
    padding: 0px;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-left: 0px;
    display: inline-block;
    color: #FFF;
}
.video--resource {
	position: relative;
    top: 0;
    margin: 20px;
    display: block;

}
.embed-container {
    padding-top: 56.25%;
    position: relative;	
}
h5.ab_home:before {

}
.text-shadow {
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.9);
}
.accordion_list, .meta_list li, .meta_list_partner li {
	width: 100%;
	font-size: 1.1em;
}
.meta_list li {
	border-bottom: solid 2px #000;
}
.meta_list li .grid-item-40, .meta_list_partner li .grid-item-40{
	padding-left: 20px;
}
.meta_list li .grid-item-60, .meta_list_partner li .grid-item-60{
	padding-right: 20px;
}
.accordion_list li {
	padding: 20px 0;
}
.meta_list_partner {
	border-top: solid 2px #CCC;
	padding-top: 10px;
	font-family: 'HankenGroteskRegular';
}
.meta_list li, .meta_list_partner li {
	padding: 13px 0 11px;
	line-height: 1.2;
}
.accordion_list li {
	padding: 20px 0;
	border-bottom: dashed 2px #CCC;
}
.accordion_list li:last-child {
	border-bottom: none;
}
.expo_title_block {
	overflow:hidden;
}
.scroll_div {
	overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100vh - 40px - 35px) !important;
}
.d-height-fix .scroll_div {
	overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100vh - 35px) !important;
}
.scroll_div::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
.counter {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-size: 1.4em;
	z-index: 99;
}
.anchor_trigger {
	float: right;
	width: 44px;
	height: 12px;
	margin-right: 20px;
}
.pad-left {
	padding-left: 20px;
}
.pad-right {
	padding-right: 20px;
}
.expo_desc.pad_block p:first-child {
	margin-top: 0;
}
progress {
    position: fixed;
    left: 0;
    z-index: -1;
    top: 0px;
    display: block;
    /* height: 100%; */
    width: 78px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: #0000ff;
    color: #0000ff;
}

/**
 * 5.0 - Header
 */
 
header#masthead {
	width: 80px;
    position: fixed;
    top: 35px;
    background: #FFF;
    border-right: solid 2px #000; 
    left: 0;
    height: calc(100vh - 35px);
    font-weight: 400;
    z-index: 999;
}
.menu_label {
	font-size: 0.8em;
    width: 40px;
    letter-spacing: 0.13em;
    text-align: center;
    margin: -15px auto 0;
    font-family: 'HankenGroteskMedium';
}
#top_bar {
	top: 0;
	position: fixed;
	z-index: 999999;
	height: 35px;
	line-height: 35px;
	width: 100%;
}
#top_bar #top_bar_items {
	width: calc(25% + 20px);
    margin-left: 0px;
    font-family: 'HankenGroteskRegular';
    font-size: 1.1em;
    height: 35px;
    line-height: 35px;
}
#top_bar #top_bar_sub {
	width: calc(25% + 20px);
    margin-left: -1px;
    text-align: right;
    font-size: 1.1em;
    font-family: 'HankenGroteskRegular';
    height: 35px;
    line-height: 35px;
}
#top_bar #top_bar_sub li {
	padding-right: 1em;
}
#top_bar .half {
    width: calc(50% - 40px);
    float: left;
}
#top_bar_items li {
    display: inline-block;
}
.nav-item-link{
    display: block;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.navigation .main_menu a.nav-item-link:hover,
.navigation .main_menu .is-active a.nav-item-link,
.navigation .child-menu a.nav_item:hover {
	color: #0000FF;
}
.nav-item-link--parent .icon-more {
    display: block !important;
}
.nav-item-link:hover.nav-item-link--parent .icon-more,
.is-active > .nav-item-link .icon-more {
    fill: #0000FF;
    stroke: #0000FF;
}
.nav-item-link .icon-more{
    display: none;
    position: absolute;
    top: 50%;
    right: -1px;
    stroke-width:0;
    width: 30px;
    height: 20px;
    stroke: #000000;
    fill: #000000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: fill 0.1s, stroke 0.1s;
    transition: fill 0.1s, stroke 0.1s;
}
#parent_search .icon-more {
	position: absolute;
    top: 59%;
    right: -1px;
    stroke-width:0;
    width: 30px;
    height: 20px;
    stroke: #000000;
    fill: #000000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: fill 0.1s, stroke 0.1s;
    transition: fill 0.1s, stroke 0.1s;
}
#parent_search {
	position: relative;
	border-top: solid 2px #efefef;
    padding-top: 15px;
    margin-bottom: -8px;
}

.blkbg {
	background-color: #000;
}

p.large {
	font-size: 1.4em;
	margin-top: -8px;
}
h1.site-logo {
	width: 100%;
    padding: 0 20px;
    z-index: 9999;
    position: fixed;
    height: 84px;
    max-width: 80px;
    top: calc(50% - 0px);
    transform: translateY(-50%);
}
img.logo_hover {
	opacity: 0;
	margin: -32px -15px;
    position: absolute;
    height: 150px;
}
img.logo_hover, img.logo_base {
	transition: all 0.2s ease-in-out;
}
h1.site-logo:hover img.logo_hover {
opacity: 1;
}
h1.site-logo:hover img.logo_base {
opacity: 0.3;
}
.block--image {
	margin: 0.5em auto;
}
.block--image .caption-text {
	margin: 10px 0 2em;
    font-size: 0.75em;
}


/**
 * 6.0 - Menus
 */
.navigation {
	position: fixed;
    width: calc(100% - 0px);
    left: -100%;
    transition: all 0.3s ease-in-out;
    top: 35px;
    display: table;
    z-index: 12;
    padding: 0px;
    
}
.tiny_mob {
	display: none;
}
.navigation.is-active {
left: 0px;
	}
.nav-col-left {
	border-right: solid 2px #000;
	border-bottom: solid 2px #000;
	background-color: #FFF;
	width: 50%;
	display: table-cell;
	vertical-align: top;
	float: none;
}
.nav-col-right.is-active {
	border-right: solid 2px #000;
	border-bottom: solid 2px #000;
	background-color: #FFF;
	display: table-cell;
	width: 50%;
	vertical-align: top;
	float: none;
}
.navigation .main_menu {
font-size: 1.2em;
padding: 20px 18px 20px 20px;
font-family: 'HankenGroteskMedium';
} 
.navigation .main_menu li {
	margin-bottom: 0.6em;
}
.navigation .main_menu li:last-child {
	margin-bottom: 0;
}
.navigation .main_menu a {
	color: #000;
	text-decoration: none;
}
.navigation .child-menu {
	display: none;
}
.navigation .child-menu.is-active {
	display: block;
}
.top_bar_current {
	background-image: url(img/top_bar_arrow.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: 0px 5px;
    padding-left: 30px;
     white-space: nowrap;
     font-size: 1.1em;
    margin-left: -13px;
    font-family: 'HankenGroteskRegular';
}
.top_bar_dash {
	background-image: url(img/top_bar_dash.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: 0px 5px;
    padding-left: 30px;
    margin-left: -13px;
    width: calc(100% - 0px);
    font-family: 'HankenGroteskRegular';
    white-space: nowrap;
  overflow: hidden;
  font-size: 1.1em;
  text-overflow: ellipsis;
}
.top_crop {
width: calc(100% - 20px);
}
.nav_item_top_archive {
	background-image: url(img/top_bar_rtarrow.svg);
    background-repeat: no-repeat;
    padding-left: 35px;
    font-family: 'HankenGroteskRegular';
    background-size: 30px;
    background-position: 0px -3px;
    transition: all 0.1s ease-in-out;
}
.page-id-5591 .info_panel_right.grid-item-50 {
	min-height: 120px;
}
ul.award_list {
	width: 100%;
	text-align: left;
	font-size: 1.20em;
}
ul.award_list li {
	margin-bottom: 1em;
	text-align: left;
	line-height: 1.35;
}
ul.award_list li a {
	border-bottom: solid 1px #00F;
}



/**
 * 7.0 - Footer
 */
.territory_blurb {
	padding: 20px 20px;
    margin-left: 0px;
    width: calc(100% - 0px);
    position: relative;
    z-index: 1;
}
.foot_container a {
	color: #FFF;
}
.footer {
	padding: 20px;
    width: calc(100% - 0px);
    margin-left: 0px;
    position: relative;
    z-index: 1;
}
.territory_blurb {
	background: rgb(0,0,255);
    background: -moz-linear-gradient(-120deg, rgba(143,143,252,1 ) 0%, rgba(0,0,255,1) 100%) !important;
    background: -webkit-linear-gradient(-120deg, rgba(143,143,252,1 ) 0%,rgba(0,0,255,1) 100%) !important;
    background: linear-gradient(-120deg, rgba(143,143,252,1) 0%,rgba(0,0,255,1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#8f8ffc',GradientType=1 ) !important;
}
.territory_blurb p {
	font-size: 1.15em;
	line-height: 1.3;
	text-align: center;
	margin: 0;
}
.flex-row {
	flex-direction: row;
	display: flex;
}
 
ul.funder_logos li {
 	display: inline-block;
 	padding: 0 5px;
 	max-width: 25%;
 	vertical-align: middle;
 }
ul.partner li {
 	padding: 0 5px 10px;
 }

ul.principle li:first-child {
	max-width: 65px;
}

ul.partner li:nth-child(4){
	max-width: 130px;
}
ul.partner li:nth-child(6),
ul.partner li:nth-child(7),
ul.partner li:nth-child(8){
	max-width: 85px;
}

ul.partner li:nth-child(3){
	max-width: 115px;
}
ul.partner li:nth-child(4){
	max-width: 100px;
}
ul.principle li:nth-child(2),
ul.principle li:nth-child(3) {
	max-width: 190px;
}
ul.principle li:nth-child(4) {
	max-width: 130px;
}
ul.funder_logos li img {
	width: 100%;
	max-width: 100%;
	display: block;
}
ul.funder_logos {
	margin: -15px -5px 10px;
	width: calc(100% + 10px);
}
ul.principle {
	display: flex;
	flex-wrap: nowrap;
	display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
ul.partner {
	display: flex;
	flex-wrap: wrap;
	display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .grid-item-50 .funder_blurb p {
	font-size: 0.7em;
	margin: 15px 0 20px;
	color: #FFF;
	line-height: 1.3;
}
p.nav_expo_title {
	margin: 6px 0 0;
	text-transform: none;
}
.nav_current_block .pad-left {
    padding-left: 10px;
}
.nav_current_block {
	margin: 7px 0;
}
.child-menu li .nav_current_block:last-child {
	margin-bottom: 25px;
}
p.nav_expo_subtitle {
font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-transform: none;
    margin: 0;
    max-width: 270px;
    text-overflow: ellipsis;
}
ul.grid_list_third, ul.grid_list_fourth {
	display: flex;
	flex-wrap: wrap;
}
.page-id-11627 ul.grid_list_third p {
	margin-bottom: 0.3em;
	margin-top: 0.3em;
	font-size: 1.05em;
	font-family: 'HankenGroteskRegular'
}
ul.grid_list_third li.flex-item{
width:50%;
padding:20px;
	}
ul.grid_list_fourth li.flex-item{
width:25%;
padding:20px;
	}
.page-id-11627 ul.grid_list_third li.flex-item{
font-size: 1em;
}
ul.grid_list_third li.flex-item h3 {
	margin-top: 0;
	font-size: 1.3em;
	margin-bottom: 0.4em;
}
ul.grid_list_third li.flex-item{
font-size: 1.15em;
line-height: 1.4;
margin-bottom: 0.0em;
	}
ul.grid_list_third li.flex-item ul.visit_list li {
	margin-bottom: 0.6em;
}
ul.grid_list_third a {
	border-bottom: solid thin #000;
}
/**
 * 8.0 - Splash Screens
 */
.bg_ima-grad {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0000ff+0,da188a+100 */
background: #0000ff; /* Old browsers */
background: -moz-linear-gradient(-45deg, #0000ff 0%, #8f8ffc 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, #0000ff 0%,#8f8ffc 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, #0000ff 0%,#8f8ffc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#8f8ffc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.splash-bg-short {
background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 30vh;	
    position: relative;	
}
p.wp-caption-free {
	position: absolute;
	font-size: 0.9em;
    right: 20px;
    bottom: 16px;
    line-height: 1.40;
    text-align: right;
    margin: 0;
    z-index: 9;
}
.splash-bg-rel-50:hover {
	cursor: pointer;
}
.splash-bg-rel-50 {
background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 50%;
    padding-top: 200px;	
}
.splash-bg.half-height {
	height: 70vh;
}
.flex-item .splash-bg:hover {
	cursor: pointer;
}
.nav_square {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 65px;
    border-radius: 50%;
}
.border--block {
	padding-bottom: 1.5em;
	margin-bottom: 1.5em;
}
.border--block .button--page {
margin-bottom: 0em;
}
.splash-bg-full {
	width: 100%;
    height: calc(70vh - 0px);
    position: absolute;
    top: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.splash-bg-event {
	width: 100%;
    height: calc(40vh - 35px);
    position: relative;
    top: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.splash-bg-full-single {
	width: 100%;
    height: calc(50vh - 0px);
    position: absolute;
    top: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.holder-50vh {
	height: 50vh;
	width: calc(50% - 40px) !important;
}
.grid-item-50.small-gallery-50vh .splash-bg-full-single {
	height: calc(50vh - 0px);
}
.flexslider .medium-flex {
position: relative;
max-width: 960px;
width: 100%;
margin-left: auto;
height: 100%;
margin-right: auto;
	}
.flexslider .small-flex {
position: relative;
max-width: 600px;
width: 100%;
height: 100%;
margin-left: auto;
margin-right: auto;
	}
.splash-bg-block {
	padding-bottom: 11em;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg_img {
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.shop_grid .bg_img {
	position: relative;
	width: 100%;
	transition: all 0.2s ease-in-out;
	top: 0;
	height: calc(100% - 60px);
	left: 0;
	mix-blend-mode: multiply;
}
.page-id-11870 .shop_grid .bg_img {
height: calc(100% - 100px);
}
.page-id-11870 ul.shop_grid li {
	height: 55vh;
}
.shop_grid h3 {
	position: absolute;
    bottom: 0px;
    left: 0px;
    color: #000;
    padding: 20px 0 0 60px;
    font-family: 'HankenGroteskMedium';
    font-size: 1.6em;
    background-image: url(img/arrow_right_blk.svg);
    background-repeat: no-repeat;
    background-position: left 20px top 23px;
    background-size: 30px;
    transition: all 0.2s ease-in-out;
    z-index: 1;
    width: calc(100% + 20px);
    background-color: #FFF;
    margin: 0 0 0 -20px;
}
.shop_grid h3:hover {
    padding: 20px 0 0 65px;
	}
ul.sponsor_list {
	position: relative;
	display: flex;
	flex-direction: row;
	margin: 20px -10px -10px;
	flex-wrap: wrap;
    height: auto;
    width: calc(100% - 0px);
}
.single-news ul.sponsor_list {
	margin: 0px 15px 15px;
	width: calc(100% - 30px);
}
.single-news ul.sponsor_list li {
	width: auto;
}
.newsspon.pad_block {
	padding-bottom: 10px;
}
.newsspon p:last-child {
	margin-bottom: 0;
}
.single-news ul.sponsor_list li img {
	width: 100%;
}
.old_spon_bottom {
	position: relative;
	display: flex;
	margin: 20px 0px -10px;
	flex-wrap: wrap;
	flex-direction: row;
    width: calc(100% - 0px);
}
.old_spon_bottom p img {
	padding: 10px;
	vertical-align: middle;
	max-width: 200px;
}
.old_spon_bottom p {
	margin: 0;
	line-height: 1.4;
	font-size: 0.75em;
	width: 100%;
}
.old_spon_bottom p img {
	display: inline-block;
	margin: 0px;
	width: auto;
}
ul.sponsor_list li:last-child {
	margin-right: 0;
}
ul.sponsor_list li {
	display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
	width: 33.33%;
	padding: 15px 10px 0;
}
.title_holder_single_expo {
	position: relative;
}
.title_holder_single_expo ul.social-share{
position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
}
.title_holder_single_expo ul.social-share li a {
	border: solid 2px #999;
	color: #999;
}
.title_holder_single_expo ul.social-share li.block_display {
	color: #999;
}

ul.sponsor_list li.blurb {
	width: 100%;
	text-align: left;
}
ul.sponsor_list li.blurb p {
font-family: 'HankenGroteskRegular';
font-size: 0.9em;
	}
ul.sponsor_list li .sup_bg_logo {
	background-size: contain;
    padding-top: 80px;
    background-repeat: no-repeat;
    background-position: center;
}

.auto_gal {
	height: calc(70vh - 35px);
}
.sub_cell a {
	border-bottom: solid thin #00F;
}
.sub_cell a:hover {
	border-bottom: solid thin #000;
}
.single-ima-events a.prev,
.single-exhibitions a.prev,
.single-news a.prev,
.single-product a.prev,
.single-ima-talks a.prev,
.single-resources a.prev {
	background-image: url(img/arrow_left_white.svg);
}
.single-ima-events a.next,
.single-exhibitions a.next,
.single-news a.next,
.single-product a.next,
.single-ima-talks a.next,
.single-resources a.next {
	background-image: url(img/arrow_right_white.svg);
}
a.prev {
	background-image: url(img/arrow_left_blk.svg);
	background-repeat: no-repeat;
	background-position: left;
	background-size: 25px;
	margin-left: 20px;
	padding-left: 30px;
	transition: all 0.2s ease-in-out;
}
a.prev:hover {
	padding-left: 35px;
	margin-left: 15px;
}
a.next {
	background-image: url(img/arrow_right_blk.svg);
	background-repeat: no-repeat;
	background-position: right;
	margin-right: 20px;
	background-size: 25px;
	padding-right: 30px;
	transition: all 0.2s ease-in-out;
}
h1.page-title-top-bar {
	font-size: 1em;
    margin: 0;
    font-family: 'HankenGroteskRegular';
}
h3.staff_name {
	font-family: 'HankenGroteskMedium';
	font-size: 1.3em;
	margin: 0 0 0.0em !important;
}
ul.grid_list_third li.flex-item h3.staff_title,
h3.staff_title {
	font-family: 'HankenGroteskRegular';
	font-size: 1.20em;
	margin: 0 0 0.8em !important;
}
a.next:hover {
	padding-right: 35px;
	margin-right: 15px;
}
.border_top {
	border-top: solid 2px #000;
}
.splash-bg-half {
	height: calc(70vh - 35px);
	width: 100%;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.grid.table-view {
	display: table;
	width: 100%;
}
.galshop {
	min-height: 20vh;
}
.grid.table-view.galshop .table-cell-view-50:last-child {
    border-left: solid 0px #000;
}

.term-current-exhibition .grid.table-view {
	height: calc(50vh - 60px);
    margin-left: 0px;
    width: calc(100% - 0px);
}
.table-cell-view-50 .expo_desc p:last-child {
	margin-bottom: 0;
}
.border_bottom {
	border-bottom:solid 2px #000;
}
.grid.table-view .table-cell-view-50:last-child{
	border-left: solid 2px #000;
}
.single-news .grid.table-view .table-cell-view-50:last-child,
.single-ima-events .grid.table-view .table-cell-view-50:last-child,
.term-current-exhibition .grid.table-view .table-cell-view-50:last-child{
	border-left: solid 0px #000;
}
.page-id-11923 .sub_cell h3:first-child{
	margin-top: 65px;
}
.page-id-17770 .sub_cell h3.blue--text:first-child {
	margin-top: 76px;
}
.table-cell-view-50 {
	display: table-cell;
	vertical-align: top;
	position: relative;
	height: 100%;
	width: 50%;
}
.table-cell-view-65 {
	display: table-cell;
	vertical-align: top;
	position: relative;
	height: 100%;
	width: 65%;
}
.table-cell-view-25 {
	display: table-cell;
	vertical-align: top;
	position: relative;
	height: 100%;
	width: 35%;
}
.desc--iframe--wrap {
	padding-top: 56.25%;
	position: relative;
	width: 100%;
}
.desc--iframe--wrap iframe {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	height: 100%;
}

.page-id-11923 .splash-bg-half, 
.page-id-11923 .full-width-block-80vh,
.page-id-17770 .splash-bg-half, 
.page-id-17770 .full-width-block-80vh,
.page-id-24 .full-width-block-80vh,
.page-id-24 .splash-bg-half,
.page-id-11625 .full-width-block-80vh,
.page-id-11625 .splash-bg-half,
.page-id-20 .full-width-block-80vh,
.page-id-20 .splash-bg-half,
.page-id-4 .splash-bg-half,
.page-id-4 .full-width-block-80vh,
.page-id-17849 .splash-bg-half,
.page-id-17849 .full-width-block-80vh{
	height: calc(70vh - 35px);
}

.anni_logo {
	margin-top: 0px;
	max-width: 240px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
}
.tax-categories .splash-bg {
	padding-top: 170px;
}
.splash-bg {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	background-position: center;
	padding-top: 140px;
}
.grid-pack .splash-bg:hover {
	cursor: pointer;
}
.splash-bg.director {
	padding-top: 110%;
}
.splash-bg.staff {
	padding-top: 350px;
	margin-bottom: 0.2em;
}
.splash-bg.board {
	padding-top: 390px;
}
.expo_upcoming {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	background-position: center;
	padding-top: 220px;
	transition: all 0.2s ease-in-out;
	-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}
.term-upcoming .expo_upcoming {
	-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
}
.greyscale {
	-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
  transition: all 0.2s ease-in-out;
}
.grid-pack-item:hover .greyscale {
-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
}
.flexgrid_archive .grid-item-25:hover .expo_upcoming {
-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
	}
.shop_blurb {
	position: absolute;
    right: 0;
    color: #ff88c7;
    z-index: 2;
    top: 85px;
    padding: 20px;
    width: calc(50% - 0px);
}
.tax-product_cat .shop_blurb,
.tax-product_tag .shop_blurb {
	position: relative;
	left: 0;
	right: auto;
	margin-bottom: 0px;
	width: 100%;
}
.tax-product_cat .shop_blurb:after,
.tax-product_tag .shop_blurb:after {
	display: table;
	content: "";
	height: 0;
	clear: both;
}
.tax-product_tag.woocommerce .woocommerce-breadcrumb {
	display: none !important;
} 

.tax-product_cat .shop_blurb p {
	width: 50%;
	float: left;
}
.tax-product_cat .shop_blurb p:first-child {
	padding-right: 20px;
}
.tax-product_cat .shop_blurb p:nth-child(2) {
	padding-left: 20px;
}
.full-width-block-70vh.marggall {
width: calc(100% - 0px);
    margin-left: 0px;
    height: calc(50vh - 0px);
    position: relative;
}
.full-width-block-70vh {
	width: calc(100% - 0px);
    margin-left: 0px;
    height: calc(50vh - 0px);
    position: relative;
}

.tax-product_cat .shop_blurb p {
	font-size: 1.15em;
	margin-bottom: 0em;
	line-height: 1.35;
	color: #FFF;
}
.shop_blurb p, .big-text p {
	font-size: 1.5em;
	margin: 0;
}
.plholder {
	height: 100% !important;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
figure.pub {
	width: calc(90% - 40px);
    height: calc(90% - 40px);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
figure.pub img {
	height: auto;
	width: 100%;
	max-width: 100%;
	-webkit-box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.3);
box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.3);
}

.box-shadow {
-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);	
}
#publication .grid-item-50 {
	height: 100%;
}
#relevents .relevents-third:first-child {
	border-top: solid 2px #F2F2F2;
}
#relevents .relevents-third:last-child {
	border-bottom: none;
}
.relevents-third .grid-item-50:nth-child(2) {
	height: 100%;
	position: relative;
}
.title_block_left ul.social-share {
    width: 100px;
    text-align: left;
    position: absolute;
    bottom: 20px;
}
ul.social-share li {
display: block;
float: left;
font-size: 1.0em;
}
ul.social-share li a {
	padding: 5px 0 0;
	text-align: center;
	width: 30px;
	height: 30px;
	opacity: 0.6;
	margin-right: 7px;
	transition: all 0.1s ease-in-out;
	display: block;
	border:solid 2px #FFF;
	border-radius: 50%;
	} 
ul.social-share li a:hover {
	opacity: 1;
}
ul.social-share li:last-child a{
	margin-right: 0;
}
.note_home_close {
	position: absolute;
	top: 20px;
	cursor: pointer;
	right: 20px;
	width: 25px;
	height: 25px;
}
.gallery-closed-note p {
	margin-top: 0;
	padding-right: 35px;
	font-family: 'HankenGroteskRegular';
	line-height: 1.4;
	font-size: 1.2em;
}
.gallery-closed-note p:last-child {
margin-bottom: 0;
}
.gallery-closed-note a {
	color: #FFF;
	border-bottom: solid thin #FFF;
}
.gallery-closed-note-nav:hover {
opacity: 1;
	}
.gallery-closed-note-nav {
	position: fixed;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
    bottom: 70px;
    opacity: 0.2;
    left: 39px;
    z-index: 9999;
    color: #000;
    text-transform: uppercase;
    font-size: 0.8em;
    text-align: right;
    width: 150px;
    letter-spacing: 0.13em;
    transform: translateX(-50%) translateY(-0%) rotate(90deg);
}
.gallery-closed-note.is-active {
	display: block;
}
.gallery-closed-note.addtop {
	top: 70px;
}
.gallery-closed-note {
	position: fixed;
    z-index: 3;
    display: none;
    width: calc(50% - 40px);
    left: 80px;
    transition: all 0.2s ease-in-out;
    text-align: left;
    top: 35px;
    font-size: 1.1em;
    height: auto;
    line-height: 1.3;
    padding: 20px;
    background: rgba(0,0,255,1);
    color: #fff;
}
ul.social-share li.block_display {
	display: block;
	float: none;
	margin-bottom: 5px;
}
.small-label {font-size: 0.65em;letter-spacing: 0.13em;opacity: 0.6;}
.relevents-third {
	position: relative;
	height: 33vh;
	border-bottom: solid 2px #F2F2F2;
}
.post-type-archive-product .teaser{
    right: 0;
    border-top: solid 0px #000;
     border-bottom: solid 2px #000;
    bottom: auto;
    top: 85px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 35px;
    display: block;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.post-type-archive-product .teaser.teaser-second{
    border-top: solid 0px #000;
     border-bottom: solid 2px #000;
    top: 120px;
    }
.teaser{
    right: 0;
    border-top: solid 2px #000;
     border-bottom: solid 2px #000;
    bottom: 0px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 35px;
    display: block;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.typeloop-2 {
    line-height: 35px;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}
.typeloop {
    font-size: 35px;
    position: absolute;
    white-space: nowrap;
    overflow: visible;
}
.typeloop span {
    white-space: nowrap;
    position: relative;
}
.typeloop-2 span {
    -webkit-animation: typeloop-left infinite 40s linear;
    animation: typeloop-left infinite 40s linear;
}
.teaser-typeloop {
    overflow: hidden;
    background-color: #FFF;
}
@keyframes typeloop-left {
    from {
        left: 0%
    }
    to {
        left: -50%
    }
}
@-webkit-keyframes typeloop-left {
    from {
        left: 0%
    }
    to {
        left: -50%
    }
}
.section .left, .section .right {
    width: 50%;
    height: 100%;
}
.section.auto_height .left, .section.auto_height .right {
    height: auto;
}
#application_form .section.auto_height {
	background: #c0c0f9;
}
.section {
    width: calc(100% - 0px);
    height: 100vh;
    margin-left: 0px;
}
.section.auto_height {
    height: auto;
}

.grecaptcha-badge {
	display: none;
}
.colorchange {
  transition: background .2s ease;
}
/**
 * 9.0 - Body
 */
 .full-width-block_news h6 {
	font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: normal;
}
.full-width-block_news .grid-item-50 {
height: 100%;
 }

#main {
margin-top: 35px;	 
 }
h3.expo_date.no-marg-top.white a {
	border-bottom: solid thin #FFF;
}
h3.no-marg-top {
	margin-top: 0 !important;
}
 h6.hashtag_block {
	position: absolute;
    left: 15px;
    bottom: 15px;
    font-weight: normal;
    margin: 0;
    font-size: 1.3em;
    color: #fff;
}
#relevents .relevents-third .grid-item-50.bg_img {
	border-top: none !important;
}
#relevents .full-width-block .grid-item-50:first-child {
	border-top: solid 2px #F2F2F2;
}
.section_wrap_news .block_more,
.relevents-third .block_more {
	color: #000;
	background-image: url(img/top_bar_ltarrow_blk.svg);
	}
.block_more.about {
	color: #00F;
	background-image: url(img/top_bar_ltarrow_blu.svg);
}
.block_more {
	position: absolute;
    right: 15px;
    padding-right: 35px;
    bottom: 15px;
    font-size: 1.3em;
    color: #FFF;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
    background-size: 30px;
    background-image: url(img/top_bar_ltarrow.svg);
    background-position: right -2px;
}
.subscribe_full_block .block_more {
left: 50%;
right: auto;
transform: translateX(-50%);
}
.block_more:hover {

}  

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
	text-transform: uppercase;
}

::-moz-placeholder { /* Firefox 19+ */
	color: #000;
	text-transform: uppercase;
}

:-ms-input-placeholder { /* IE 10+ */
	color: #000;
	text-transform: uppercase;
}

:-moz-placeholder { /* Firefox 18- */
	color: #000;
	text-transform: uppercase;
}
.single_foot .dt_only {
	display: inline-block;
}
.dt_only {
	display: block;
}
.dt_only.table-cell-view-50 {
	display: table-cell;
}
.single-exhibitions .block_display .small-label {
	display: none;
}
.pub--purchase {
	background: #FFF;
	font-size: 1.3em;
    color: #FFF;
    padding: 7px;
    text-transform: none;
}
.pub--purchase a {
	color: #00F;
}
h3.event_subtitle.subsecond {
font-size: 20px	
}
.single-ima-talks .pad_block h3.ev-panel_title {
	margin-bottom: 0;
}
.single-ima-talks .pad_block h3.ev-panel_subtitle {
	margin-top: 8px;
}
.single-ima-talks .pad_block  h4.ev_archive_date {
	font-size: 1.1em;
}
.page-id-11494 .event_info_panel h3.expo_subtitle_home_archive {
font-size: 1.1em;
}
.pub--rel--list:after {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: #F2F2F2;
	mix-blend-mode: multiply;
}
.single-resources .podcast_single {
	position: relative;
	}
.podcast_single {
	position: absolute;
	bottom: 0;
	width: 100%;
	filter: grayscale(1);
	left: 0;
}
.podcast_single_ev {
	filter: grayscale(1);
}
.podcast_single p {
	margin:0;
	} 
.mob_only, .xl_only {
	display: none !important;
}
.latest_label {
	position: absolute;
    top: 0px;
    font-size: 1em;
    color: #FFF;
    text-shadow: 2px 2px 2px rgba(50, 50, 50, 1);
    padding: 20px;
    line-height: 1;
     font-family: 'HankenGroteskMedium';
    left: 0px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.grid.table-view.gala .table-cell-view-50:last-child {
    border-left: solid 0px #000;
}
.single-ima-talks .expo_desc .pad_block p:first-child {
	margin-top: 0;
}
.page-id-13804 .expo_desc.expo_top ul {font-size: 1.1em; padding-left: 1em;font-family: 'HankenGroteskRegular';}
ul.award_sponsor {
	font-size: 1.1em;
	margin-top: 1.5em;
	font-family: 'HankenGroteskRegular';
}
ul.keydates {
	font-size: 1.1em;
	margin-bottom: 1.5em;
	font-family: 'HankenGroteskRegular';
}
ul.keydates li {
	margin-bottom: 0.5em;
}
img.spon_logo {
	max-width: 150px;
}
.blu {
	color: #00F;
}

/**
 * 14.0 - Media Queries
 */

/**
 * Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}
@media screen and (max-width: 350px) {
.tiny_mob {
	display: inline-block !important;

}
.home_page_badge {
	position: fixed;
    top: 70px;
    right: 0px;
    z-index: 9;
    width: calc(100% - 0px);
    line-height: 37px;
    text-align: right;
    padding-right: 12px;
}
.home_page_badge a {
    color: #FFF;
    width: calc(100% - 0px);
    display: inline-block;
    background-image: none;
    background-repeat: no-repeat;
    padding-right: 0px;
}
.nav-item-link .icon-more {
    width: 15px;
    height: 15px;
    }
.navigation .main_menu {
    font-size: 1.05em;
}
.top_bar_current {
font-size: 1.0em !important;
}
.tiny_mob img {
	width: 50px !important;
	margin-top: 5px;
}
h3.expo_date {
    font-family: 'HankenGroteskMedium';
    font-size: 1.2em;
    color: #FFF;
}
.term-current-exhibition h2.expo_title_home a,
.term-current-exhibition h3.expo_subtitle_home,
.term-current-exhibition h3.expo_subtitle_home,
h3.expo_date {
	color: #FFF;
}
h5.ab_home {
    font-size: 0.7em !important;
    }

#top_bar_items li:first-child {
	display: none !important;
}

}
/**
 * 14.1 - <= 600px
 */
@media screen and (max-width: 35.438em) {
	.dt_only {
	display: none !important;
}
.gala--annoucement {
    color: #291c6b !important;
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0%;
    padding: 12px;
    margin-top: 20px;
    z-index: 9;
    left: 0;
    top: 50px;
    text-align: left;
    font-size: 1.1em;
}
.home_page_badge {
	position: fixed;
    top: 70px;
    right: 0px;
    z-index: 9;
    width: calc(100% - 0px);
    line-height: 37px;
    text-align: right;
    padding-right: 12px;
}
.home_page_badge a {
    color: #FFF;
    font-size: 1.0em;
    width: calc(100% - 0px);
    display: inline-block;
    background-image: none;
    background-repeat: no-repeat;
    padding-right: 0px;
    padding-left: 12px;
}
.nav-item-link .icon-more {
    width: 15px;
    height: 15px;
    }
.single_foot .mob_only {
	display: inline-block !important;
}
.full-width-block h2.panel_title {
	font-size: 1.4em !important;
}
h2.expo_title_home {
    font-size: 1.8em !important;
    }
h3.expo_subtitle_home, .panel_block_bg h3.panel_title {
    font-size: 1.4em !important;
}
h6.hashtag_block {
    font-size: 0.85em !important;
    }
.block_more {
	font-size: 0.85em !important;
}
.counter {
    bottom: 15px;
    left: 15px;
    font-size: 1.1em;
    z-index: 3;
}
.full-width-block-70vh {
    width: calc(100% - 0px);
    margin-left: 0px;
    height: calc(50vh - 0px);
}
.grid-item-50.pad_block {
    padding-right: 15px !important;
}
.table-cell-view-50.cur_double {
	height: calc(50vh - 35px);
}
.term-current-exhibition .grid.table-view {
    height: calc(100vh - 70px);
    margin-left: 0px;
    width: calc(100% - 0px);
}

.mob_only {
	display: block !important;
}
ul.shop_grid li {
    position: relative;
    width: calc(50% - 30px);
    padding: 0px 0px 0px;
    margin: 15px;
    background-color: #f2f2f2;
    
    transition: all 0.2s ease-in-out;
}
.full-width-block_news .grid-item-25 {
    width: 50%;
}
.pad_block {
    padding: 15px !important;
}
.navigation .main_menu {
    font-size: 1.1em;
    padding: 15px 10px 15px 13px;
    font-family: 'HankenGroteskMedium';
}
.nav-col-left .main_menu {
    border-left: solid 2px #000;
}
.full-width-block_news {
    width: calc(100% - 0px);
    margin-left: 0px;
    height: 100%;
    position: relative;
    border-bottom: solid 2px #000;
}
.home h3.expo_subtitle_home, .term-current-exhibition h3.expo_subtitle_home {
    max-width: 100%;
}
.nav_square {
    padding-top: 32px;
    margin-top: 3px;
}
.subscribe_full_block {
height: 50vh;
}
.subscribe_full_block p {
font-size: 1.6em;
}
ul.partner li:nth-child(2) {
    max-width: 170px;
}
.latest_label {
	position: absolute;
    top: 0px;
    font-size: 0.85em;
    color: #FFF;
    text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
    padding: 15px;
    line-height: 1.3;
     font-family: 'HankenGroteskMedium';
    left: 0px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pad_block h3:first-child {
    margin-top: 0;
    margin-bottom: 0.5em;
}
.pad_block h6 {
	margin: 0.2em 0;
	font-size: 1em;
}
.block_more {
	position: absolute;
    right: 12px;
    padding-right: 30px;
    bottom: 15px;
    font-size: 1.1em;
    color: #FFF;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
    background-size: 25px;
    background-image: url(img/top_bar_ltarrow.svg);
    background-position: right -4px;
}
.block_more:hover {

} 
.wrap_news {
    width: calc(100% - 0px);
    margin-left: 0px;
}
.home .section_wrap_news {
width: calc(100% - 0px);
height: calc(100vh / 3);
}
.panel_block_bg h3.date, .full-width-block h3.date {
    margin: 15px 0 0;
    color: #FFF;
    font-size: 1.4em !important;
}
.full-width-block .info_panel_left h2.panel_title a, .full-width-block .info_panel_right h2.panel_title a {
	color: #FFF;
}
.full-width-block .info_panel_left h2.panel_title:hover,
.full-width-block .info_panel_right h2.panel_title:hover {
margin-right: -10px;
}
.full-width-block .info_panel_left h2.panel_title,
.full-width-block .info_panel_right h2.panel_title {
    padding-right: 0px;
}
.panel_block_bg h3.time {
	margin: 4px 0 15px;
    color: #FFF;
    font-size: 1.4em !important;
}
h6.hashtag_block {
	position: absolute;
    left: 15px;
    bottom: 15px;
    margin: 0;
    font-size: 1.1em;
    color: #fff;
}
.full-width-block h5.ab_home {
	left: 15px;
}
h5.ab_home {
    margin-top: 0;
    letter-spacing: 0.05em;
    font-size: 0.9em;
    margin-bottom: 0;
    position: absolute;
    top: -40px !important;
    right: auto;
    left: 15px;
    border: solid 2px #FFF;
    padding: 5px;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-left: 0px;
    display: inline-block;
    color: #FFF;
}
.section_wrap_news {
    height: calc(100vh / 4);
    }
.panel_block_bg h3.panel_title {
    font-size: 1.8em;
    }
.full-width-block h2.panel_title {
    font-size: 2.5em;
}
.panel_block_bg h3.panel_title {
    font-size: 1.8em;
    }
.gallery-closed-note-nav {
    position: fixed;
    display: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    top: 35px;
    padding: 15px;
    opacity: 0.4;
    background: #fff;
    left: 0px;
    z-index: 9999;
    color: #000;
    text-transform: uppercase;
    font-size: 0.8em;
    text-align: left;
    width: 100%;
    letter-spacing: 0.13em;
    transform: translateX(-0%) translateY(-0%) rotate(0deg);
}
#top_bar .right.half {
    width: calc(100% + 30px);
    float: none;
    margin-left: -15px;
}
.top_crop {
    width: calc(100% - 0px);
}
.page-id-11870 ul.shop_grid li {
	width: 100%;
}
.page-id-11870 ul.shop_grid li {
    height: 65vh;
}

.top_bar_current {
    background-image: url(img/top_bar_arrow.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-color: #00F;
    background-position: 5px 5px;
    padding-left: 35px;
    font-size: 1.0em;
    white-space: nowrap;
    margin-left: 0px;
    font-family: 'HankenGroteskRegular';
}

.center {
    padding: 0 15px;
}
.foot_container .pad-foot-col:nth-child(2) {
padding-top: 15px}

.full-width-block-varheight {
    width: calc(100% - 0px);
    margin-left: 0px;
    height: auto;
    position: relative;
}
.foot_container {
    margin: 0px;
    width: calc(100% + 0px);
}
.foot_container .pad-foot-col {
    padding: 0px;
    float: none !important;
    width: 100% !important;
}
.footer {
    padding: 15px;
    width: calc(100% - 0px);
    margin-left: 0px;
    }
.territory_blurb {
    padding: 15px;
    margin-left: 0px;
    width: calc(100% - 0px);
}
.site-header-mobile {
	height: 35px;
	width: 40px;
    position: fixed;
    top: 0;
    z-index: 99999999;
    right: 15px;
}
.info_panel_left.grid-item-50, .info_panel_right.grid-item-50 {
    position: absolute !important;
    left: 0px;
    width: 100% !important;
    min-height: calc(40vh - 70px);
    }
.full-width-block {
    width: calc(100% - 0px);
    margin-left: 0px;
    height: calc(100vh - 70px);
    position: relative;
}
.splash-bg-full {
    width: 100%;
    height: calc(60vh - 0px);
    }
.term_titles .tax_term {
    font-size: 0.8em;
    padding: 5px;
}
.term_titles {
    right: 15px;
    font-size: 0.9em;
    }
.term_titles {
    top: -40px;
}
.post-type-archive-ima-events .full-width-block h5.ab_home {
	left: 15px;
}
.marg_top_sec_col {
    margin-top: 0px;
}

.accordion_list, .meta_list li, .meta_list_partner li {
    font-size: 1.0em;
}
.grid-item-50 h4.ev_archive_date,
.tax-event-type h4.ev_archive_date {
line-height: 1.25;
}
.single-ima-events .pad_block.title_block_left,
.single-news .pad_block.title_block_left,
.single-ima-talks .pad_block.title_block_left {
    padding: 15px 15px 80px!important;
}
.single-ima-events h1.single_title,
.single-ima-talks h1.single_title,
.single-news h1.single_title {
    font-size: 1.8em;
    line-height: 1.25;
    }
.border-bottom-list h3.dates_rel {
	margin-bottom: 0;
}
.single-ima-events h3.single_date_block,
.single-ima-talks h3.single_date_block,
.single-news h3.single_date_block {
    font-size: 1.3em;
}
.single-ima-events h3.event_subtitle,
.single-ima-talks h3.event_subtitle,
.single-news h3.event_subtitle {
    font-size: 1.4em;
    line-height: 1.25;
    margin-bottom: 20px;
}
.post-type-archive-ima-events .term_titles {
	display: none;
}
.single-ima-events h1.single_title {
    width: 100%;
}

h4.ev_archive_date {
    line-height: 0.7;
    }
.event_nav_full {
    left: 0px;
    width: calc(100% - 0px);
    z-index: 3;
    opacity: 1;
    position: fixed;
    top: 70px;
}
.post-type-archive-ima-events .flex-item .event_info_panel h3.expo_subtitle_home_archive {
font-size: 0.9em;
}
.flex-item .event_info_panel h3.ev-panel_title {
    font-size: 1.20em;
    }
.event_nav {
    position: relative;
    top: 0px;
    transition: all 0.2s ease-in-out;
    width: calc(100% - 0px);
    left: 0px;
    height: 65px;
    z-index: 2;
    float: left;
    padding: 15px;
    border-bottom: solid 2px #000;
    border-right: solid 0px #000;
}
.event_nav_right {
    position: relative;
    float: left;
    top: 0px;
    width: calc(100% - 0px);
    right: 0px;
    transition: all 0.2s ease-in-out;
    height: 75px;
    border-left: solid 0px #000;
    z-index: 2;
    padding: 15px;
    border-bottom: solid 2px #000;
}
ul.grid_list.list-view h4.ev_archive_date, ul.grid_list.list-view .event_info_panel h3.ev-panel_title, ul.grid_list.list-view .event_info_panel h3.expo_subtitle_home_archive {
font-size: 1em
}
ul.grid_list.list-view li.flex-item .event_info_panel h4.ev_archive_date, ul.grid_list.list-view li.flex-item .title_block_upcoming .title_block_list_contain {
    width: calc(100% - 0px);
    float: left;
}
.page-id-11494 .event_info_panel h3.expo_subtitle_home_archive {
    font-size: 0.9em;
}
.page-id-11494 h4.ev_archive_date {
    line-height: 1.2;
}


ul.grid_list.list-view li.flex-item .splash-bg {
    width: 100px;
    padding-top: 100px;
    float: left;
}
.pub_height .table-cell-view-50:first-child {
	height: 50vh;
}
.term-188 .top_event_nav_marg,
.term-190 .top_event_nav_marg {
    margin-top: 63px;
}
.term-190 ul.grid_list li.flex-item {
	width: 100%;
}
.term-190 .splash-bg {
    padding-top: 230px;
    
}
.term-190 ul.grid_list li.flex-item .splash-bg {
	filter: grayscale(0);
}

#publication .full-width-block-varheight .vert_title_container {
    width: calc(100% - 0px);
    top: 15px;
    position: relative;
    transform: none;
}
.term-off-site h3.expo_date_upcoming {
	margin-bottom: 5px;
}
p.locations-para {
	font-size: 0.85em;
}
ul.grid_list.list-view li.flex-item .title_block_upcoming p.locations-para {
display: none;
}
.full-width-block h5.center_panel, #relevents h5.center_panel, .full-width-block-varheight h5.center_panel {
    font-size: 1.05em;
}
ul.grid_list.list-view li.flex-item .title_block_upcoming h3.expo_date_upcoming {
    width: calc(100% - 0px);
font-size: 0.85em;
    margin-bottom: 0.2em;
     margin-top: 0.4em;
}

.grid-item-50-abbottom {
    position: relative !important;
    width: calc(100% - 0px);
    bottom: auto;
    float: none;
    left: auto;
    margin-top: 50px;
     margin-bottom: 15px;
}
.grid-item-50-abbottom-right {
    position: relative !important;
    width: calc(100% - 0px);
    bottom: auto;
    float: none;
    right: auto;
}
h2.block_title {
    font-size: 1.8em;
    }
figure.pub {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
	z-index: 1;
    width: 100%;
	height: auto;
	padding-top: calc(50vh - 30px);
}
#publication .lt-grey {
    min-height: 30vh;
}
ul.ev_utlity li:nth-child(8) {
	display: none;
}
ul.grid_list.list-view li.flex-item .event_info_panel {
    float: right;
    width: calc(100% - 100px);
}
ul.grid_list.list-view li.flex-item .event_info_panel h3 {
    width: calc(100% - 0px);
    float: left;
    margin-top: 0;
}
.page-id-11494 ul.grid_list.list-view li.flex-item .event_info_panel h3.ev-panel_title:nth-child(2) {
    font-size: 0.85em;
}
ul.grid_list.list-view li.flex-item .event_info_panel h3.ev-panel_title {
	margin-top: -5px;
}
.page-id-11494 ul.grid_list.list-view li.flex-item .event_info_panel h4.ev_archive_date,
.page-id-11494 ul.grid_list.list-view li.flex-item .event_info_panel .expo_subtitle_home_archive {
	display: none;
}
.page-id-11494 ul.grid_list.list-view li.flex-item .event_info_panel h3.ev-panel_title {
	margin-top: 0px;
}
ul.grid_list.list-view li.flex-item .event_info_panel h3.expo_subtitle_home_archive {
	font-size: 0.8em;
	margin: 0;
}
ul.grid_list.list-view li.flex-item .podcast_badge {
	display: none;
}
.podcast_badge {
    top: 15px;
    right: 15px;
    width: 90px;
    }
.event_nav_full {
    height: 140px;
    }
.grid-pack {
    margin: 15px 10px 0;
    width: calc(100% - 20px);
}
.single_foot {
    font-size: 1.1em;
    }
a.prev {
    background-size: 20px;
    padding-left: 25px;
    margin-left: 15px;
}
a.next {
    margin-right: 15px;
    background-size: 20px;
    padding-right: 25px;
}
.grid-pack-item .event_info_panel h3.ev-panel_title, .post-type-archive-news .grid_list .event_info_panel h3.ev-panel_title {
    font-size: 1.1em;
    margin-top: 5px;
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'HankenGroteskMedium';
}
.grid-pack-item .event_info_panel h3.ev-panel_subtitle {
    font-size: 1.0em;
}
.grid-pack-item .panel_block_bg {
    padding: 15px 0;
}
.grid-pack-item h4.ev_archive_date {
    font-size: 1.1em;
    margin-bottom: 12px;
}
.section_head {
    padding: 12px 15px 10px;
}
.grid-pack .grid-pack-item {
    width: calc(50% - 10px);
    float: left;
    margin: 0 5px 15px;
    display: block;
}
.top_event_nav_marg {
    margin-top: 138px;
}
.compact_marg {
	 margin-bottom: -138px;
}
.section .left, .section .right {
    width: 100%;
    height: 100%;
}
.meta_list li {
    padding: 12px 0;
    line-height: 1.2;
}
.meta_list li .grid-item-40 {
    padding-left: 15px;
}
.meta_list li .grid-item-60 {
    padding-right: 15px;
}
.tax_block {
    bottom: 10px;
    right: 15px;
    width: calc(100% - 115px);
}

h1.single_title {
    margin-bottom: 20px;
    font-size: 2.5em;
    width: 100%;
    line-height: 1;
}
.title_block_left ul.social-share {
    bottom: 15px;
}
.post-type-archive-product ul.shop_grid li {
	width: calc(100% - 30px);
	
}
.shop_grid li a {
	position: relative;
    display: block;
    padding-bottom: 100%;
}
.shop_grid .bg_img {
    position: absolute;
    width: 100%;
    transition: all 0.2s ease-in-out;
    top: 0;
    height: calc(100% - 60px) !important;
    left: 0;
    mix-blend-mode: multiply;
}
.term-ima-editions .full-width-block-varheight {
	margin-top: 145px;
}
.tax-product_cat .shop_blurb p {
    width: 100%;
    float: none;
    line-height: 1.25;
}
.tax-product_cat .shop_blurb p:nth-child(2) {
    padding-left: 0px;
    padding-top: 25px;
}
.term-upcoming .grid .grid-item-25 {
    width: 100%;
}
.term-upcoming h3.expo_title_upcoming {
    font-size: 1.4em;
}
.shop_blurb p, .big-text p {
    font-size: 1.3em;
    margin: 0;
}
.shop_blurb {
    position: absolute;
    right: 0;
    top: 0px;
    padding: 15px;
    width: calc(100% - 0px);
}
.page-id-11923 h1.expo_title_home,
.page-id-17770 h1.expo_title_home,
.page-id-24 h1.expo_title_home,
.page-id-11625 h1.expo_title_home {
	margin-top: 30px;
}
.page-id-11923 .sub_cell h3:first-child,
.page-id-17770 .sub_cell h3:first-child {
    margin-top: 0px;
}
h3.single_date_block {
    font-size: 1.8em;
    }
.search .grid-item-25 {
    width: 50%;
}
h3.event_subtitle {
    font-family: 'HankenGroteskMedium';
    margin-top: -13px;
    font-size: 1.8em;
    margin-bottom: 20px;
    width: 100%;
    line-height: 1;
}
.mc-field-group {
    font-size: 1.05em;
}
.sub_cell p {
    font-size: 1.05em;
    margin: 15px 0;
}
.sub_cell ul {
    font-size: 1.05em;
    margin-bottom: 20px;
}
.mc-field-group input {
    width: 100%;
    margin-top: 10px;
}
.mc-field-group.input-group input, .mc_fieldset.gdprRequired input {
margin-top: 5px;	
}
.page-id-114 h1.expo_title_home, .page-id-114 h3.sub_page {
    font-size: 1.8em;
    }
.page-id-114 h3 {
    font-size: 1.05rem;
}
.page-id-4 .pad_block {
    padding: 15px 15px 60px !important;
}
.bg_ima-grad {
    background: #0000ff;
    background: -moz-linear-gradient(-45deg, #0000ff 0%, #8f8ffc 70%);
    background: -webkit-linear-gradient(-45deg, #0000ff 0%,#8f8ffc 70%);
    background: linear-gradient(135deg, #0000ff 0%,#8f8ffc 70%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#8f8ffc',GradientType=1 );
}
.archive_site {
    margin-top: 0px;
}
.anni_logo {
    margin-top: 15px;
    max-width: 170px;
    margin-bottom: 35px;
}
.page-id-11625 .block_more {
    bottom: 15px;
    }

.page-id-11923 .full-width-block-80vh,
.page-id-17770 .full-width-block-80vh,
.page-id-24 .full-width-block-80vh,
.page-id-11625 .full-width-block-80vh{
	margin-top: 0;
}
.page-id-24 .nav_list {
    margin-top: 15px;
}
.page-id-24 .grid-item-50.fl_right {
    float: none;
    width: 100%;
}
.full-width-block-80vh {
    width: calc(100% - 0px);
    margin-left: 0px;
    margin-top: 138px;
    height: calc(50vh - 0px);
    position: relative;
}

h3.expo_title_upcoming {
    font-size: 1.2em;
}
.grid.table-view .table-cell-view-50:last-child {
    border-left: solid 0px #000;
}

.grid.table-view {
    display: block;
    width: 100%;
}
.table-cell-view-50, .single-product .table-cell-view {
    display: block;
    vertical-align: top;
    position: relative;
    height: auto;
    width: 100%;
}

h3.shop-year {
    font-size: 1.2em !important;
}

h3.expo_subtitle_upcoming, h3.expo_date_upcoming {
    font-size: 1.1em;
}
h3.expo_subtitle_upcoming, h3.expo_date_upcoming {
    font-size: 1.1em;
}
.title_block_upcoming {
    padding: 15px;
}
.tax-event-type .top_bar_dash,
.page-id-11494 .top_bar_dash,
.single-ima-talks .top_bar_dash,
.single-product .top_bar_dash,
.tax-categories .top_bar_dash,
.tax-product_cat .top_bar_dash,
.page .top_bar_dash,
.search .top_bar_dash{
	background-position: 20px 5px;
	padding-left: 45px;
	}
.single-ima-events .top_bar_dash .nav_item_top_archive  {
	background-image: url(img/top_bar_rtarrow.svg);
	padding-left: 35px;
	margin-left: 22px;
	background-position: 5px -3px;
}
.post-type-archive-news .panel_block_bg {
    padding: 15px 15px 0px 15px;
}
.single-news .top_bar_dash .nav_item_top_archive {
	background-image: url(img/top_bar_rtarrow.svg);
	padding-left: 35px;
	margin-left: 22px;
	background-position: 5px 5px;
}
.single-ima-events .top_bar_dash,
.single-news .top_bar_dash  {
    background-image: none;
padding-left: 0px;
    }
.section {
    width: calc(100% - 0px);
    height: 100vh;
    margin-left: 0px;
}
.home #main {
    margin-top: 35px;
}
.expo_upcoming {
    padding-top: 150px;
    }
.podcast_single p iframe,
.podcast_single_ev iframe{
	max-height: 45vh;
	margin: 0;
}
.podcast_single.mob_rel {
	position: relative;
}
.search h3.expo_date_upcoming {
	margin-bottom: 0;
}
h6.search_label {
    top: 15px;
    left: 15px;
    font-size: 0.85em;
    }
#main {
    margin-top: 70px;
}
#main {
    width: calc(100% - 0px);
    padding-left: 0px;
    min-height: calc(100vh - 70px);
    overflow: hidden;
}
#select_filter .cat-item {
line-height: 1.1;
margin: 10px 0;
}
.home_expo_title_block {
    position: absolute;
    bottom: 0px;
    padding: 15px;
    min-height: 40vh;
    right: 0px;
    width: calc(100% - 0px);
}
h4.ab_bottom {
    font-size: 1.0em !important;
    padding: 10px 15px !important;
    line-height: 1.2 !important;
    }
h4.ev_archive_date {
    margin-top: 0;
    font-size: 1.1em;
    }
.event_info_panel h3.ev-panel_title {
    font-size: 1.35em;
    margin-top: 15px;
    line-height: 1.2;
}
#relevents h3.ev-panel_title {
	font-size: 1.15em;
    margin-top: 0px;
    line-height: 1.2;
}
.event_info_panel h3.expo_subtitle_home_archive, #relevents h3.expo_subtitle_home_archive {
    margin-top: 0;
    font-size: 1.1em;
    font-family: 'HankenGroteskMedium';
}

h2.ev-panel_title_up {
	font-size: 1.7em;
}
h3.ev_archive_date_upcoming {
    margin-bottom: 1.2em;
    font-size: 1.0em;
}
.event--multiple .multiple_archive_date_upcoming {
	font-size: 1.0em;
}
.grid-item-70, .grid-item-30 {
    width: 50%;
}
h3.event_upcoming_subtitle {
    margin-top: 0;
    font-size: 1.3em;
}
ul.grid_list li.flex-item {
    width: 50%;
    position: relative;
}
ul.ev_utlity li.date_nav_link {
	 padding: 4px 3px;
}
ul.ev_utlity li {
    text-align: center;
    margin-right: 10px;
    font-size: 0.75em;
    line-height: 1;
    transition: all 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    padding: 3px;
    width: 35px;
    height: 35px;
    border: solid 2px #000;
}

.full-width-block-70vh.marggall {
    width: calc(100% - 0px);
    margin-left: 0px;
    }
.full-width-block-70vh .splash-bg-full-single {
    width: 100%;
    height: calc(70vh - 0px);
}

.post-type-archive-product .full-width-block-80vh {
    margin-top: 73px;
    }
.post-type-archive-product .event_nav_full,
.tax-product_cat .event_nav_full,
.page-id-5676 .event_nav_full{
    height: 73px;
}


ul.ev_utlity li.podcast_link_subnav {
    padding: 0;
    border: 0;
    width: 45px;
}
.panel_block_bg {
    padding: 15px 15px 40px 15px;
}
.splash-bg {
    padding-top: 130px;
}
#event_types {
    font-size: 1.1em;
}
#top_bar #top_bar_sub, .top_bar_dash {
    width: calc(100% + 30px);
    margin-left: -15px;
    text-align: left;
    font-size: 1.05em;
    font-family: 'HankenGroteskRegular';
    height: 35px;
    background-color: #00F;
    line-height: 38px;
}
.flex-item p {
	margin: 0em 0 0.2em;
}
ul.grid_list_third li.flex-item h3 {
    font-size: 1.2em;
    margin-bottom: 0.1em;
}
.tax-product_cat .top_bar_dash {
	background-image: url(img/top_bar_rtarrow.svg);
    background-repeat: no-repeat;
    padding-left: 45px;
    margin-left: 0px;
    font-family: 'HankenGroteskRegular';
    background-size: 30px;
    background-position: 13px 3px;
    transition: all 0.1s ease-in-out;
}
.nav_item_top_archive, .top_bar_dash {
    background-image: url(img/top_bar_arrow.svg);
    background-repeat: no-repeat;
    font-family: 'HankenGroteskRegular';
    background-size: 26px;
    background-position: 5px -2px;
    padding-left: 35px;
    transition: all 0.1s ease-in-out;
}
.section_wrap_single {
    width: calc(100% - 0px);
    margin-left: 0px;
    height: calc(50vh - 0px);
    position: relative;
}
.grid-item-50.fullh.cur_double:first-child {
    margin-left: 0px;
}
.grid-item-50.fullh.cur_double {
    height: calc(100vh - 35px);
    width: calc(100% - 0px);
}
.cur-ex {
    padding-left: 0px;
    }

ul.grid_list_third li.flex-item {
    width: 100%;
    padding: 15px 15px 0;
    font-size: 1.05em;
}
.term-current-exhibition ul.grid_list li.flex-item .splash-bg {
filter: grayscale(0);
}
#top_bar #top_bar_items {
    width: calc(75% + 20px);
    font-size: 1.0em;
}
.navigation.is-active {
    left: 0px;
}
.splash-bg.half-height {
    height: 50vh;
}
.expo_info_block {
    min-height: calc(18vh - 0px);
}
.navigation {
    position: fixed;
    width: calc(100% - 0px);
    left: -100%;
    z-index: 9999999;
}
.grid-item-50.fl_left {
	float: none;
	margin-bottom: 30px;
}
.old_spon_bottom {
    width: calc(100% + 0px);
    }
.old_spon_bottom p img {
    max-width: 150px;
}
.single_foot a {
    font-size: 0.9em;
}
.expo_info_block .marg_expo_single_left {
    padding: 0px 0 0px;
}
.expo_info_block .grid-item-50 {
    width: 100%;
}
.nav_list {
    font-size: 1.0em;
}
.expo_info_block h5:first-child {
    font-size: 0.9em;
}
.credit_list {
    margin-bottom: 40px;
    font-size: 1.2em;
    }
.grid-item-50.fl_right {
    float: none;
}
.single-exhibitions h3.expo_date {
    color: #000;
    max-width: 75%;
    margin-bottom: 2em;
    margin-top: 0.5em;
}
h4.hashtag {
    font-size: 1.1em;
    }
.expo_desc p {
    font-size: 0.95em;
}
ul.social-share li {
    font-size: 0.9em;
}
ul.grid_list.list-view li.flex-item .title_block_upcoming {
    width: calc(100% - 100px);
}
h2.marg_top, h1.marg_top {
    margin-top: 55px;
}
.meta_para_wrap p {
    margin-top: 0;
    font-size: 1.2em;
    }
h1.expo_title_home {
    font-size: 1.8em;
    max-width: 85%;
}
.single-exhibitions .expo_title_block h3.expo_subtitle_home {
	max-width: 85%;
}
.flexslider p.wp-caption-text {
    position: absolute;
    width: calc(100% - 30px);
    right: 15px;
    font-size: 0.45em;
    }
.splash-bg-full-single {
    width: 100%;
    height: calc(50vh - 0px);
    }
.nav_current_block {
    display: none;
}
.tax-categories .event_nav_right {
	display: none;
}
.tax-categories .event_nav_full {
height: 65px;
}
ul.ev_utlity li .utility_thumb {
	width: 35px;
    height: 35px;
}
ul.ev_utlity li.expo_now {
width: 35px;
    height: 35px;
    }
.term-current-exhibition #main {
    margin-top: 135px;
}
.term-current-exhibition ul.grid_list li.flex-item {
    width: 100%;
    position: relative;
    height: calc(100vh - 135px);
}
.term-current-exhibition .splash-bg,
.term-current-exhibition .splash-bg-full {
    padding-top: 270px;
}
.home_expo_title_block h5.off-site {
    font-size: 0.85em;}
.territory_blurb p {
    font-size: 1.05em;
}
#top_bar .floatL {
	width: 100%;
}
.post-type-archive-ima-events .section_wrap,
.features.section_wrap {
	width: calc(100% - 0px);
	height: calc(100vh - 70px);
	}
.term-187 .title_block_list_contain, .term-187 h3.expo_date {
	color: #FFF;
}
.term-187 .title_block_list_contain a {
	color: #FFF;
}
ul.ev_utlity li.date_nav_link {
	font-size: 0.7em;
}
ul.ev_utlity li.label_utlity.wide_left_marg {
	margin-left:10px;
	width: 0;
}
.ev_utlity .date_nav_link:nth-child(6),
.ev_utlity .date_nav_link:nth-child(7) {
	display: none;
}
.flex .features.section_wrap.list-view:first-child {
    margin-top: 140px;
}
.features.section_wrap.list-view .block_more {
	display: none;
}
.features.section_wrap.list-view .splash-bg-full {
    width: 100px;
    padding-top: 100px;
    height: 100px;
    position: relative;
    float: left;
}
ul.partner li:nth-child(5) {
    max-width: 110px;
}
ul.partner li:nth-child(1) {
    max-width: 105px;
}
.features.section_wrap.list-view .grid {
    float: left;
    width: calc(100% - 0px);
}
.features.section_wrap.list-view h3.ev_archive_date_upcoming, .features.section_wrap.list-view h2.ev-panel_title_up {
    font-size: 0.95em;
}
.features.section_wrap.list-view .grid-item-30.rttxt {
	display: none;
}
.features.section_wrap.list-view .info_panel_right {
    min-height: 100px;
    max-height: 100px;
}
.features.section_wrap.list-view .full-width-block, .features.section_wrap.list-view {
    height: 100px;
}
.features.section_wrap.list-view .info_panel_left.grid-item-50, .features.section_wrap.list-view .info_panel_right.grid-item-50 {
    position: relative !important;
    left: 0px;
    float: left;
    width: calc(100% - 100px) !important;
    }
.features.section_wrap.list-view h3.event_upcoming_subtitle {
    font-size: 0.8em;
    margin-top: 2px;
}


	
	}
	
/**
Phone Landscape
*/
@media screen and (min-width: 35.439em) and (max-width: 47.000em) {
.nav-item-link .icon-more {
    width: 15px;
    height: 15px;
    }	
.mob_only {
	display: block !important;
}
.single-ima-events .nav_item_top_archive,
.single-ima-talks .nav_item_top_archive,
.single-news .nav_item_top_archive {
    background-image: none;
    padding-left: 0;
    }
a.prev {
    margin-left: 15px;
    }
a.next {
    margin-right: 15px;
    }
.center {
    padding: 0 15px;
    }
p.nav_expo_subtitle {
	white-space: normal;
	font-size: 0.85em;
}
.nav_current_block .grid-item-80.pad-left {width: 100%; padding: 0}
.nav_current_block .grid-item-20 {
	display: none;
}
.dt_only {
	display: none !important;
}
#top_bar #top_bar_items {
    width: calc(50% + 10px);
    font-size: 1.00em;
    line-height: 37px;
}
.panel_block_bg h3.date, .full-width-block h3.date {
    margin: 10px 0 0;
    }
.home h3.expo_subtitle_home, .term-current-exhibition h3.expo_subtitle_home {
    max-width: 100%;
}
.top_bar_dash {
 	font-size: 1.00em;
    margin-left: -11px;
    }
.home_expo_title_block {
padding: 15px;
    min-height: 170px;
    width: calc(50% - 0px);
	}
.upcoming_cycle {
    width: calc(100% - 44px);
}
#top_bar #top_bar_sub {
    width: calc(50% - 37px);
    margin-left: -24px;
    }
.section_wrap_single {
    width: calc(100% - 0px);
    margin-left: 0px;
    height: calc(100vh - 35px);
    position: relative;
}
.section {
    width: calc(100% - 0px);
    height: 100vh;
    margin-left: 0px;
}
h3.expo_title_upcoming {
    font-size: 1.15em;
    }
h3.expo_subtitle_upcoming, h3.expo_date_upcoming {
    font-size: 1.0em;
}
p.locations-para {
    margin-top: -30px;
    font-size: 0.85em;
    }
.top_crop {
    width: calc(100% - 20px);
}
#top_bar {
	line-height: 37px;
}
#publication .full-width-block-varheight .vert_title_container {
    width: calc(100% - 30px);
}
.full-width-block-70vh {
    width: calc(100% - 0px);
    margin-left: 0px;
    }
h4.ab_bottom {
    font-size: 1.0em;
    }
.grid-item-50-abbottom {
    position: relative !important;
    width: calc(100% - 0px);
    bottom: auto;
    margin-top: 50px;
    margin-bottom: 15px;
    left: auto;
}
.expo_upcoming {
    padding-top: 150px;
    }
h6.search_label {
    top: 15px;
    left: 15px;
    font-size: 0.75em;
    }
.search .grid-item-25 {
    width: 33.33%;
}
ul.grid_list_third li.flex-item {
    padding: 15px;
}
.page-id-22 ul.grid_list_third li.flex-item {
	width: 50%;
}
.page-id-22 ul.grid_list_third li.flex-item {
    font-size: 0.9em;
    line-height: 1.4;
    }
.page-id-22 ul.grid_list_third li.flex-item h3 {
	font-size: 1.1em;
	line-height: 1.25;
}
.page-id-4 .pad_block.bg_ima-grad {
	padding-bottom: 50px;
}
.pub_title_info p.pub_title {
    font-size: 1.05em;
    }
.pub_title_info p.eds-smaller {
    font-size: 0.85em;
}
.marg_top_sec_col {
    margin-top: 37px;
}
.page-id-11870 ul.shop_grid li {
    height: 95vh;
}
h2 {
    font-size: 1.2em;
}
.grid-item-50-abbottom-right {
    position: relative !important;
    width: calc(100% - 0px);
    bottom: auto;
    right: auto;
}

#top_bar .half {
    width: calc(50% - 20px);
    }
.info_panel_right,
.info_panel_left {
	min-height: 140px;
}
h3.shop-year {
    font-size: 1.25em !important;
    }
h2.expo_title_home, .full-width-block h2.panel_title,
.subscribe_full_block p, h1.expo_title_home, h2.block_title,
h2.ev-panel_title_up, .woocommerce div.product .product_title {
    font-size: 1.5em !important;
}
.top_bar_current {
	margin-left: -24px;
	}
.event_info_panel h3.ev-panel_title, #relevents h3.ev-panel_title {
    font-size: 1.1em;
    }
.event_nav_full {
    left: 0px;
    }
ul.ev_utlity li {
    text-align: center;
    margin-right: 10px;
    font-size: 0.75em;
    line-height: 1;
    transition: all 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    padding: 3px;
    width: 35px;
    height: 35px;
    border: solid 2px #000;
}
.splash-bg-event {
    width: 100%;
    height: calc(100vh - 35px);
    }
.tax_term {
    font-size: 0.7em;
    }
.tax_block {
    position: absolute;
    bottom: 10px;
    right: 15px;
    }
.title_block_left ul.social-share {
bottom: 15px;	
}
.tax-product_cat .flex.marg_utlity {
    margin-top: 115px !important;
}
.tax-product_cat .options ul {
    column-count: 1;
}

.shop_blurb {
    top: 65px;
    padding: 15px;
    }
.shop_blurb p, .big-text p {
    font-size: 1.2em;
    margin: 0;
}

.galshop {
    min-height: 55vh;
}
h2.block_title.shophours {
    font-size: 1.2em;
}
.full-width-block-70vh.marggall {
    width: calc(100% - 0px);
    margin-left: 0px;
    }
.shop_grid h3 {
    padding: 15px 0 0 45px;
    font-size: 1.2em;
    background-position: left 20px top 20px;
    background-size: 20px;
    }
ul.shop_grid li {
    position: relative;
    width: calc(50% - 30px);
    padding: 15px 15px 80px;
    margin: 15px;
    }
.page-id-114 h1.expo_title_home, .page-id-114 h3.sub_page {
    font-size: 1.6em;
}
.full-width-block-80vh {
height: calc(100vh - 0px - 35px);
}
.page-id-114 h3, .mc-field-group, .sub_cell ul {
    font-size: 1.0rem;
}

#mc_embed_signup_scroll input[type="submit"] {
    font-size: 0.85em;
    }
.page-id-114 .sub_cell p {
    font-size: 1.0em;
    }
li.date_nav_link {
	display: none;
}
.mc-field-group input {
    width: 100%;
    }
.splash-bg.staff {
    padding-top: 250px;
    }
.page-id-11627 ul.grid_list_third p {
	font-size: 0.95em;
}
.page-id-11625 .block_more {
    bottom: 15px;
    right: 15px;
    }
.anni_logo {
    margin-top: 15px;
    max-width: 180px;
    }
.page-id-11625 .splash-bg-half,
.page-id-11625 .full-width-block-80vh,
.page-id-20 .full-width-block-80vh,
.page-id-20 .splash-bg-half,
.page-id-11923 .full-width-block-80vh,
.page-id-11923 .splash-bg-half,
.page-id-17770 .full-width-block-80vh,
.page-id-17770 .splash-bg-half,
.auto_gal {
	height: calc(90vh - 35px);
}
.grid.table-view.archive_site {
	display: block;
}
.grid.table-view.archive_site .table-cell-view-50 {
    display: block;
    width: 100%;
    }
ul.grid_list_third li.flex-item h3 {
    margin-top: 0;
    font-size: 1.2em;
    }
ul.grid_list_third li.flex-item h3.staff_title, h3.staff_title {
    font-size: 1.10em;
}
.page-id-11627 ul.grid_list_third li.flex-item {
    font-size: 1em;
    width: 50%;
}
.full-width-block-80vh {
    width: calc(100% - 0px);
    margin-left: 0px;
    }
.pad_block.title_block_left {
	padding-bottom: 75px;
	min-height: calc(100vh - 35px);
}
.page-id-11494 .event_info_panel h3.expo_subtitle_home_archive {
	font-size: 0.85em;
}
.podcast_single {
    position: relative;
    }
.single-ima-talks .grid.table-view .table-cell-view-50:last-child .border-bottom-list .splash-bg-rel-50,
.single-ima-talks .grid.table-view .table-cell-view-50:last-child .border-bottom-list .grid-item-50.pad_block {
	width: 100%;
}
.single-ima-events h1.single_title,
h1.single_title {
    width: 100%;
    font-size: 1.5em;
}
h3.single_date_block {
    margin: 10px 0;
    font-size: 1.25em;
    }
h3.event_subtitle {
    font-size: 1.25em;
    line-height: 1.25;
    width:90%;
    }
.event_info_panel h3.expo_subtitle_home_archive, #relevents h3.expo_subtitle_home_archive {
    font-size: 1.0em;
}
.grid-item-70 {
    width: 60%;
}
.event_info_panel h3.ev-panel_title {
	margin-top: 5px;
}
.grid-item-30 {
    width: 40%;
}
h4.ev_archive_date {
    margin-top: 0;
    font-size: 1.1em;
    }
.term-current-exhibition .grid.table-view {
    height: calc(100vh - 35px);
    margin-left: 0px;
    width: calc(100% - 0px);
}
.term-current-exhibition ul.grid_list li.flex-item {
    width: 50%;
}
.single_foot a {
    font-size: 0.85em;
}
.term-current-exhibition #main {
    margin-top: 100px;
}
.top_event_nav_marg {
    margin-top: 63px;
}
.single_foot .dt_only {
	display: inline-block !important;
}
.single_foot .mob_only {
	display: none !important;
}
.relevents-third {
    position: relative;
    height: 50vh;
    }
.nav_item_top_archive, .top_bar_dash {
    background-image: url(img/top_bar_arrow.svg);
    background-size: 26px;
    background-position: 1px 5px;
    padding-left: 30px;
    }
.counter {
    bottom: 15px !important;
    left: 15px !important;
    font-size: 1.2em !important;
    }
.flexslider p.wp-caption-text {
    width: calc(50% - 30px) !important;
    right: 15px !important;
    font-size: 0.45em !important;
    }
ul.grid_list li.flex-item {
    width: 33.33%;
    position: relative;
}
.title_block_upcoming {
    padding: 15px;
}
.term-off-site .expo_date.no-marg-top.white {
	font-size: 0.85em;
}
.splash-bg {
    padding-top: 140px;
    }
h3.expo_date {
    margin-top: 5px;
    }
.full-width-block-varheight {
    width: calc(100% - 0px);
    margin-left: 0px;
    }
.event_nav_full {
    height: 65px;
    }
ul.ev_utlity li .utility_thumb {
    width: 35px;
    height: 35px;
}
ul.ev_utlity li.expo_now {
    padding: 0;
     width: 35px;
    height: 35px;
}
.thumb_wrapper {
   width: 35px;
    height: 35px;
    }
.event_nav_right {
    position: relative;
    float: left;
    top: 0px;
    width: calc(50% - 0px);
    right: 0px;
    transition: all 0.2s ease-in-out;
    height: 65px;
    border-left: solid 1px #000;
    z-index: 2;
    padding: 15px;
    border-bottom: solid 2px #000;
}
.event_nav {
    position: relative;
    top: 0px;
    width: 50%;
    border-right: solid 1px #000;
    transition: all 0.2s ease-in-out;
    height: 65px;
    padding: 15px;
}
.full-width-block {
    width: calc(100% - 0px);
    margin-left: 0px;
    }
h5.ab_home, .full-width-block h5.ab_home {
	left: calc(0% + 15px);
	font-size: 0.75em;
	top: -20px;
}
.grid-item-50.pad_block {
    padding-right: 15px !important;
}
.pad_block {
    padding: 15px;
}
.navigation .main_menu {
    font-size: 0.95em;
    padding: 10px 13px 15px 15px;
    }
.latest_label {
    font-size: 0.85em;
    padding: 15px;
    }
.navigation.is-active {
    left: 0px;
}
.navigation {
    position: fixed;
    width: calc(50% - 0px);
    }
.wrap_news {
    width: calc(50% - 0px);
    margin-left: 0px;
}
ul.partner li:nth-child(1) {
    max-width: 100px;
}
ul.partner li:nth-child(2) {
    max-width: 150px;
}
ul.partner li:nth-child(5) {
    max-width: 100px;
}
.footer h5 {
    margin: 0 0 15px;
    font-size: 0.85em;
    }
.footer p {
    font-size: 0.75em;
}
.foot_container .pad-foot-col {
    padding: 0 15px;
}
.foot_container .grid-item-25 {
	width: 50%;
}
.meta_list li, .meta_list_partner li {
    padding: 11px 0;
    line-height: 1.2;
}
.grid-pack-item {
	width: 50%;
}
.podcast_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 90px;
    }
.territory_blurb p {
    font-size: 1.0em;
    }
.territory_blurb {
    padding: 15px;
    margin-left: 0px;
    width: calc(100% - 0px);
    }
.subscribe_full_block {
    height: 150vh;
    }
.section_wrap_news {
    width: calc(50% - 0px);
    height: calc(100vh / 2);
}
.meta_list li .grid-item-40, .meta_list_partner li .grid-item-40 {
    padding-left: 15px;
    font-size: 0.9em;
}
.meta_list li .grid-item-60, .meta_list_partner li .grid-item-60 {
    padding-right: 15px;
    font-size: 0.9em;
}
.panel_block_bg {
    padding: 15px 15px 25px;
}
.splash-bg-full-single {
    height: calc(100vh - 35px);
    }
.panel_title.time {
	margin-bottom: 5px !important;
}
#publication .full-width-block-varheight h5.center_panel,
.full-width-block h5.center_panel, #relevents h5.center_panel, .full-width-block-varheight h5.center_panel {
    font-size: 0.9em;
}
.section_head {
    padding: 12px 15px 10px;
    font-size: 0.9em;
}
.old_spon_bottom p img {
    padding: 10px 10px 10px 0px;
    vertical-align: middle;
    max-width: 120px;
    }
.nav_list {
    font-size: 1.05em;
    }
.grid-item-50.fl_right {
    float: none;
    width: 100%;
}
.credit_list {
    margin-bottom: 40px;
    font-size: 1.05em;
    }
.single-exhibitions h3.expo_date {
	max-width: 75%;
}
#event_types {
    font-size: 1.1em;
}
#select_filter .label {
    padding-left: 9px;
    line-height: 30px;
}
li.wide_left_marg {
    margin-left: 20px;
}
ul.ev_utlity li.podcast_link_subnav {
    width: 50px;
}
h4.hashtag {
    font-size: 1.05em;
    }
h3.expo_subtitle_home,
.panel_block_bg h3.panel_title,
.single-exhibitions .expo_title_block h3.expo_subtitle_home {
    font-size: 1.3em;
    }
h3.expo_date, .panel_block_bg h3.panel_title {
    font-size: 1.2em;
}
h3.event_upcoming_subtitle {
	font-size: 1.1em;
}
h3.ev_archive_date_upcoming {
	font-size: 1.0em;
}
.event--multiple .multiple_archive_date_upcoming {
	font-size: 1.0em;
}
.post-type-archive-ima-events .term_titles {
	display: none;
}
.term_titles {
    position: absolute;
    right: 15px;
    top: -35px;
    text-align: right;
}
.term_titles .tax_term {
    font-size: 0.75em;
    }
.post-type-archive-ima-events .full-width-block h5.ab_home {
    left: 15px;
    top: -25px;
}
.expo_desc p {
	font-size: 0.90em;
}
#publication .full-width-block-varheight .vert_title_container {
    width: calc(100% - 0px);
    top: 15px;
    position: relative;
    transform: none;
}
.footer {
    padding: 15px;
    width: calc(100% - 0px);
    margin-left: 0px;
    }
h6.hashtag_block {
    font-size: 1.0em;
    position: relative;
    margin-top: -2px;
    left: 0;
    bottom: 0;
    }
.block_more {
    font-size: 0.9em;
    line-height: 1;
    padding-right: 30px;
    background-position: right -8px;
}
.cur-ex {
    padding-left: 0px;
    }	

.site-header-mobile {
	height: 35px;
    position: fixed;
    top: 0;
    z-index: 99999999;
    right: 20px;
}

.grid-pack-item .panel_block_bg {
    padding: 15px;
}
.grid-pack-item h4.ev_archive_date {
    font-size: 0.95em;
    margin-bottom: 5px;
}
.grid-pack-item .event_info_panel h3.ev-panel_title {
	font-size: 1.1em;
}
.grid-pack-item .event_info_panel h3.ev-panel_subtitle {
    font-size: 0.95em;
    }

}

/**
 * 14.1 - >= 710px
 */
@media screen and (min-width: 47.01em) {
.grid-pack .grid-pack-item {
	width:calc(50% - 25px);
	float: left;
	margin:0 10px 20px;
	display: block;
}
p.related--resource--label {
	font-size: 1.125em;
    font-family: 'HankenGroteskMedium';
    margin-bottom: 0.2rem;
    margin-top: 0;
}
.flexslider p.wp-caption-text {
	position: absolute;
    width: calc(50% - 40px);
    right: 20px;
    left: auto;
    text-align: left;
    background-color: transparent;
    transform: none;
    margin: 0;
    font-size: 0.75em;
    top: calc(100% + 10px);
}
h3.top_slide, h3.top_slide_artist {
	width: auto;
	display: block;
	z-index: 3;
}
h3.top_slide_artist {
	top: 50px;
}
.expo_top {
	margin-top: 1.6em;
}
.podcast_single p iframe,
.podcast_single_ev iframe{
	max-height: calc(45vh - 40px);
	margin: 0;
}
ul.perks {
    font-size: 1.05em;
    line-height: 1.35;
}
.term-190 ul.grid_list.list-view li.flex-item h3.expo_title_upcoming,
.term-190 ul.grid_list.list-view li.flex-item h3.expo_subtitle_home {
	float: left;
	width: calc(50% - 40px);
	font-size: 1.3em !important;
}
.term-190 ul.grid_list.list-view li.flex-item h3.expo_date {
	float: right;
	width: calc(50% + 40px);
	margin-top: 0;
	font-size: 1.3em !important;
}

a.donate_more {
	font-size: 1.1em;
}

.marg-top_right {
	margin-top: 97px;
}
.full-width-block_news h3 {
	font-size: 1.35em;
}
.subtitle_small {
    font-size: 0.85em;
}
.panel_block_bg h3.panel_title {
	max-width: 80%;
}
.top_bar_dash .dt_only {
	display: inline-block;
}
.single-product .top_bar_dash .dt_only {
	display: none !important;
}
.single-product .top_bar_dash .mob_only {
	display: inline-block !important;
}
.single-product .top_bar_dash {
	background-image: none;
	padding-left: 0px;
	margin-left: -15px;
}
.tax-product_cat .top_bar_dash {
	margin-left: -15px;
}
.single-product .top_bar_dash .nav_item_top_archive,
.tax-product_cat .top_bar_dash {
background-image: url(img/top_bar_arrow.svg);
	}
.donate_holder {
	position: absolute;
	font-size: 1.25em;
	width: calc(100% - 40px);
	bottom: 20px;
}
.donate_holder .ywcds_amount_field {
	float: left;
	width: 65%;
}
.donate_holder .ywcds_button_field {
	float: right;
	width: 30%;
}

.foot_container .pad-foot-col:last-child {
	display: none;
}
.foot_container .grid-item-25 {
	width: 50%;
}
.site-header.dt_only {
	display: none !important;
}
.grid-pack {
	margin: 20px 10px;
    width: calc(100% - 10px);
}
#top_bar #top_bar_sub {
	display: none;
}
#top_bar #top_bar_items {
	width: calc(50% + 0px);
}
#top_bar .right.half .floatR.dt_only {
	display: none;
}

.site-header-mobile {
	height: 35px;
    position: fixed;
    top: 0;
    width: 40px;
    z-index: 99999999;
    right: 20px;
}

.site-header-mobile.mob_only {
	display: block !important;
}
li.wide_left_marg {
    display: none;
}
li.date_nav_link {
	display: none;
}

.term-187 ul.grid_list li.flex-item {
    width: 100%;
    position: relative;
}
.term-187 .splash-bg {
    padding-top: 50vh;
}
ul.partner li:last-child {
}
ul.galalist li{
width: 50%;
}
#closeLand:hover {
	cursor: pointer;
}
#closeLand {
	width: 40px;
	height: 40px;
	display: block;
	position: relative;
}
.close--land {
	position: absolute;
    top: 25px;
    right: 20px;
    z-index: 99;
    width: 40px;
    height: 40px;
}
.close--land span:after {
content: "";
display: block;
    width: 40px;
    height: 2px;
    background-color: #FFF;
    transform: rotate(-90deg);
	}
.close--land span {
	width: 40px;
	display: block;
	position: absolute;
	top: 13px;
	transform: rotate(45deg);
	height: 2px;
	background-color: #FFF;
}
.cookie--acc #LandAck {
	display: none;
	opacity: 0;
}
#LandAck {
	position: fixed;
    top: 35px;
    left: 80px;
    width: calc(100% - 80px);
    z-index: 999;
    height: calc(100vh - 35px);
    background: rgb(0,0,255);
    background: -moz-linear-gradient(-120deg, rgba(143,143,252,1 ) 0%, rgba(0,0,255,1) 100%) !important;
    background: -webkit-linear-gradient(
-120deg
, rgba(143,143,252,1 ) 0%,rgba(0,0,255,1) 100%) !important;
    background: linear-gradient(
-120deg
, rgba(143,143,252,1) 0%,rgba(0,0,255,1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#8f8ffc',GradientType=1 ) !important;
}
.la--content {
	width: 50%;
    max-width: 600px;
    top: 50%;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
}
.la-content-cell-padding p {
	color: #FFF;
    font-size: 2.5em;
    line-height: 1.15;
    margin: 0;
    text-align: center;
}

}	

/**
 * 14.2 - >= 783px
 */

@media screen and (min-width: 48.9375em) {
h1.expo_title_home.page--marg {
	margin-bottom: 1.0em;
}

}
@media screen and (min-width:54em) {
.term-188 ul.grid_list li.flex-item:nth-child(1),
.term-188 ul.grid_list li.flex-item:nth-child(2),
.term-188 ul.grid_list li.flex-item:nth-child(3),
.term-188 ul.grid_list li.flex-item:nth-child(4),
.term-188 ul.grid_list li.flex-item:nth-child(5),
.term-188 ul.grid_list li.flex-item:nth-child(6),
.term-188 ul.grid_list li.flex-item:nth-child(7),
.term-188 ul.grid_list li.flex-item:nth-child(8),
.term-187 ul.grid_list li.flex-item{
    width: 50%;
    position: relative;
}
.single-resources h1.single_title {
	width: 50%;
}
.term-187 ul.grid_list.great_one li.flex-item {
	height: calc(100vh - 35px);
}
.term-187 ul.grid_list.great_one li.flex-item:nth-child(3) {
	height: calc(50vh - 35px);
	width: 100%;
}
.term-187 ul.grid_list.great_one li.flex-item:nth-child(3) .splash-bg {
	position: absolute;
	left: 0;
	width: 50%;
	height: calc(50vh - 35px);
}
.term-187 ul.grid_list.great_one li.flex-item:nth-child(3) .title_block_upcoming {
	position: absolute;
	right: 0;
	width: 50%;
	height: calc(50vh - 35px);
}
.term-187 ul.grid_list.great_one li.flex-item:nth-child(3) .splash-bg
.term-187 ul.grid_list.great_one li.flex-item
.term-188 ul.grid_list.list-view li.flex-item:nth-child(1),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(2),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(3),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(4),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(5),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(6),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(7),
.term-188 ul.grid_list.list-view li.flex-item:nth-child(8) {
    width: 100%;
    position: relative;
    flex-direction: row;
    border-bottom: solid 2px #000;
}
	
}

/**
 * 14.3 - >= 910px
 */

@media screen and (min-width: 56.875em) {
.full-width-block_news .bg_img {
	transition: all 0.2s ease-in-out;
	filter: grayscale(1);
}
.tax-product_cat #main,
.tax-product_tag #main {
    margin-top: 120px;
}
ul.galalist li{
width: calc(33.33% - 30px);
}
ul.galalist li {
    margin: 0 15px 10px;
}
.page-id-12888 ul.galalist.galasp li:nth-child(5) {
width: calc(40% - 30px);	
}
.page-id-12888 ul.galalist.galapartners li:first-child{
max-width: 100px;
width: 40%;
}
.page-id-12888 ul.galalist.galasp li:nth-child(10) {
    width: calc(40% - 30px);
}
.page-id-12888 ul.galalist.galasp li:nth-child(11),
.page-id-12888 ul.galalist.galasp li:nth-child(12),
.page-id-12888 ul.galalist.galasp li:nth-child(15),
.page-id-12888 ul.galalist.galasp li:nth-child(17) {
    width: calc(25% - 30px);
}
.page-id-12888 ul.galalist.galapartners li:nth-child(3){
max-width: 130px;
width: calc(25% - 30px);
}
.page-id-12888 ul.galalist.galapartners li:last-child{
max-width: 110px;
width: 30%;
}
.parent-pageid-12638 h1.expo_title_home {
	max-width: 70%;
}

.parent-pageid-12638 .ywcds_form_container {
	margin-bottom: 5px;
	font-size: 1.05em;
	margin-top: -10px;
}
.hamburger {
margin: -5px 0 0 !important;
}
.marg-top_right {
	margin-top: 55px;
}
a.donate_more {
	font-size: 1.1em;
	width: 47%;
	padding:8px; 
	margin: 5px;
}
.nav_item_top_archive:hover {
	padding-left: 39px;
}
.single-product .top_bar_dash .dt_only {
	display: inline-block !important;
}
.single-product .top_bar_dash .mob_only {
	display: none !important;
}
.single-product .top_bar_dash,
.tax-product_cat .top_bar_dash {
	background-image: url(img/top_bar_dash.svg);
	padding-left: 30px;
	margin-left: -13px;
}


.term-187 .flex-item {
	transition: 0.2s all ease-in-out;
	filter: grayscale(1);
}
.term-187 .title_block_upcoming, .term-187 .title_block_upcoming a{
	color: #FFF;
}
.term-187 .flex-item:hover {
	filter: grayscale(0);
}
.section_wrap_news {
	height: calc(100vh / 3);
	}
.subscribe_full_block {
	height: 100vh;
	}
.term-current-exhibition .grid.table-view {
	height: calc(50vh - 60px);
    margin-left: 80px;
    width: calc(100% - 80px);
}
.full-width-block-70vh.marggall {
width: calc(100% - 80px);
    margin-left: 80px;
    height: calc(70vh - 0px);
    }
ul.shop_grid li {
	position: relative;
	width: calc(33.33% - 40px);
    padding: 20px 20px 80px;
    margin: 20px;
	background-color: #f2f2f2;

  transition: all 0.2s ease-in-out;
}
.full-width-block-80vh {
	width: calc(100% - 80px);
	margin-left: 80px;
	height: calc(100vh - 70px - 85px);
	}
.wrap_news {
	width: calc(50% - 40px);
	margin-left: 80px;
}
.section_wrap_news {
	width: calc(50% - 40px);
}
.info_panel_left.grid-item-50 {
	width: 50%;
	min-height: 260px;
}
.info_panel_right.grid-item-50 {
	width: 50%;
	min-height: 260px;
	z-index: 3;
	}
.home_expo_title_block {
    min-height: 260px;
    width: calc(50% - 40px);
}
.splash-bg-full {
	width: 100%;
    height: calc(100vh - 35px);
    }
.cur-ex {
	padding-left: 80px;
}
.top_crop {
width: calc(100% - 115px);
}
li.wide_left_marg {
    display: block;
}
li.date_nav_link {
	display: block;
}
.full-width-block {
	width: calc(100% - 80px);
	margin-left: 80px;
	}
.section_wrap_single {
	height: calc(100vh - 150px);
	}
.tax-categories .splash-bg {
	padding-top: 220px;
}
ul.grid_list li.flex-item {
	width: 25%;
}
.event_nav {
    width: calc(50% - 40px);
    }
.event_nav_full {
	left: 80px;
	}
.event_nav_right {
    width: calc(50% - 40px);
}
ul.grid_list_third li.flex-item{
width:33.33%;
}
.splash-bg-full-single {
    height: calc(100vh - 150px);
    }
.full-width-block-70vh {
	width: calc(100% - 80px);
    margin-left: 80px;
    height: calc(70vh - 0px);
    }
.foot_container .pad-foot-col:last-child {
	display: block;
}
.foot_container .grid-item-25 {
	width: 25%;
}
.territory_blurb, .full-width-block-varheight, .section_wrap_single {
    margin-left: 80px;
    width: calc(100% - 80px);
    }
.footer {
    width: calc(100% - 80px);
    margin-left: 80px;
    }
.splash-bg-event {
    height: calc(50vh - 35px);
    }
.title_block_left {
	min-height: calc(50vh - 35px);
}
.res--height--cont {
min-height: calc(46vh - 35px - 47px);	
}
.single-resources .title_block_left {
	min-height: calc(46vh - 35px);
	padding-bottom: 80px;
}
.navigation {
    width: calc(100% - 80px);
    }
.navigation.is-active {
left: 80px;
	}
.section {
    width: calc(100% - 80px);
    margin-left: 80px;
}
.site-header-mobile.mob_only {
	display: none !important;
}
.site-header.dt_only {
	display: block !important;
}
#top_bar .right.half .floatR.dt_only {
	display: block;
}
p.nav_expo_title {
	margin: 0px 0 0;
	}
.nav_square {
    padding-top: 52px;
    }
.navigation {
    width: calc(50% - 40px);
    left: -50%;
}
#top_bar #top_bar_items {
    width: calc(25% + 20px);
    }
#top_bar #top_bar_sub {
	display: block;
}
.full-width-block_news:hover .bg_img {
	filter: grayscale(0);
}
.home .full-width-block_news .bg_img:hover {
	cursor: pointer;
}
.header_current {
	position: absolute;
	bottom: 20px;
	width: 40px;
	font-size: 0.85em;
	text-align: center;
	left: 20px;
}
.header_current ul {
margin: 0;
padding: 0;
list-style: none;
	}
.header_current ul li {
width: 40px;
margin: 10px auto 0;
height: 40px;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.header_current ul li:hover {
	overflow: visible;
}
.header_current ul li:hover .roll_over_info {
	opacity: 1;
}
.header_current ul li .roll_over_info {
	position: absolute;
	right: -268px;
	opacity: 0;
	padding: 15px;
	border: 2px solid #000;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	text-align: left;
	font-size: 1.1em;
	top: -15px;
	width:250px;
}
.expo_header_thumb {
	width: 40px;
	transition: all 0.2s ease-in-out;
	height: 40px;
	filter: grayscale(1);
	border-radius: 50%;
	background-size: cover;
	background-position: center;
}
.expo_header_thumb:hover {
filter: grayscale(0);
	}
	

}	


/**
 * 14.4 - >= 1100px
 */

@media screen and (min-width: 1100px) {
	.d-height-fix {
		overflow-y: hidden;
		min-height: calc(100vh - 35px);
		height:calc(100vh - 35px); 
	}
	.subnav--shop {
    flex-wrap: nowrap;
}
.subnav--shop li a{
	font-size: 1.2em;
}
.term-188 ul.grid_list li.flex-item:nth-child(1) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(2) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(3) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(4) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(5) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(6) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(7) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(8) .splash-bg,
.term-190 ul.grid_list li.flex-item .splash-bg {
	padding-top: 350px;
}
.rel_side .pad_block h3.ev-panel_title {
	font-size: 1.55em;
}
.term-187 .block_more {
    right: 20px;
    bottom: 20px;
    }
.term-187 ul.grid_list li.flex-item .splash-bg {
	padding-top: calc(100vh - 450px);
}
.term-187 .full-width-block-varheight {
	height: auto;
}
.term-187 ul.grid_list {
	height: auto;
}
.term-188 ul.grid_list.list-view li.flex-item:nth-child(1) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(2) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(3) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(4) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(5) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(6) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(7) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(8) .splash-bg,
.term-187 ul.grid_list.list-view li.flex-item .splash-bg,
.term-190 ul.grid_list.list-view li.flex-item .splash-bg {
	padding-top: 120px;
}
.full-width-block_news h3 {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 15px;
}
.full-width-block_news h6 {
	font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 5px;
}
	
	}


/**
 * 14.5 - >= 1200px
 */

@media screen and (min-width: 1280px) {
.credit_list {
	margin-bottom: 60px;
	}
h4.news_archive_date {
font-size: 1.2em;
}
ul.galasp li:nth-child(3) {
width: calc(35% - 30px);
}
ul.galalist li {
    width: calc(25% - 30px);
}
ul.galalist.galapartners li {
    width: calc(35% - 30px);
}
.page-id-12888 ul.galalist.galasp li:nth-child(5) {
    width: calc(35% - 30px);
}
.page-id-12888 ul.galalist.galasp li:nth-child(17) {
    width: calc(20% - 30px);
}
.page-id-12888 ul.galalist.galasp li:nth-child(15) {
    width: calc(20% - 30px);
}
.page-id-12888 ul.galalist.galasp li:nth-child(16),
.page-id-12888 ul.galalist.galasp li:nth-child(20),
.page-id-12888 ul.galalist.galasp li:nth-child(7),
.page-id-12888 ul.galalist.galasp li:nth-child(13),
.page-id-12888 ul.galalist.galasp li:nth-child(19) {
    width: calc(33% - 30px);
}
.page-id-12888 ul.galalist.galasp li:nth-child(11),
.page-id-12888 ul.galalist.galasp li:nth-child(12) {
    width: calc(25% - 10px);
    margin: 0 5px 10px;
}

.post-type-archive-news .grid_list .event_info_panel h3.ev-panel_title {
    font-size: 1.35em;
}
ul.ev_utlity.floatR li {
    margin-left: 0px;
}
.marg_top_sec_col {
    margin-top: 55px;
}
.page-id-17849 .marg_top_sec_col {
    margin-top: 77px;
}
.splash-bg-rel-50 {
    padding-top: 220px;
    }
ul.ev_utlity {
    max-width: calc(100% - 52px);
}
ul.partner li {
width: 20%;
}
#event_types {
	font-size: 1.3em;
}
li.wide_left_marg {
	margin-left: 30px;
	}
.splash-bg {
	padding-top: 220px;
}
a.product--link--res {
	display: block;
	background: #CCC;;
}
img.respub--archive {
	width: auto;
	height: 220px;
	display: block;
	margin: 0 auto;
	mix-blend-mode: multiply;
}
.term-upcoming .full-width-block-varheight ul.grid_list li.flex-item {
	width: 50% !important;
}
.term-upcoming .full-width-block-varheight ul.grid_list.list-view li.flex-item {
	width: 100% !important;
}
.term-upcoming .full-width-block-varheight ul.grid_list li.flex-item h3.expo_subtitle_home, .full-width-block-varheight ul.grid_list li.flex-item  h3.expo_date {
font-size: 1.4em;
	}
.term-upcoming .full-width-block-varheight ul.grid_list li.flex-item h3.expo_title_upcoming {
font-size: 1.6em;
}
.term-upcoming .full-width-block-varheight ul.grid_list li.flex-item .expo_upcoming {
	padding-top: 380px;
}	
.term-upcoming .full-width-block-varheight ul.grid_list.list-view li.flex-item .expo_upcoming {
	padding-top: 120px;
} 
.subscribe_full_block p {
padding: 0 40px;
}	
.page-id-11627 ul.grid_list_third.board li.flex-item {
	width: 25%;
}
.splash-bg-block {
    padding-bottom: 13em;
    }
ul.ev_utlity li.expo_now {
	width: 30%;
}
ul.ev_utlity li .utility_thumb{
	display: inline-block;
	float: left;
}
ul.ev_utlity li.expo_now .xl_only {
	display: inline-block !important;
}
ul.ev_utlity li .lititle {
	width: calc(100% - 50px);
	padding-top: 5px;
	height: 42px;
	overflow: hidden;
	float: right;
	font-size: 1.1em;
    line-height: 1.1;
	text-align: left;
}


}
@media screen and (min-width: 1350px) {
.splash-bg {
    padding-top: 250px;
}
img.respub--archive {
    height: 250px;
    }
.search h3.expo_title_upcoming {
font-size: 1.5em;
}
.search h3.expo_subtitle_upcoming,
.search h3.expo_date_upcoming {
	font-size: 1.25em;
}
li.wide_left_marg {
    margin-left: 50px;
}
.splash-bg-rel-50 {
    padding-top: 250px;
    }

.xl_only {
	display: inline-block !important;
}
ul.ev_utlity li.expo_now {
	width: 30%;
}
ul.ev_utlity li .utility_thumb{
	display: inline-block;
	float: left;
}
ul.ev_utlity li .lititle {
	width: calc(100% - 50px);
	padding-top: 5px;
	height: 42px;
	overflow: hidden;
	float: right;
	font-size: 1.1em;
    line-height: 1.1;
	text-align: left;
}
p.nav_expo_title {
	margin: 4px 0 0;
	}
.nav_square {
    padding-top: 58px;
    }
.splash-bg-block {
    padding-bottom: 14em;
    }
h3.expo_title_upcoming {
    font-size: 1.7em;
}
h3.expo_subtitle_upcoming, h3.expo_date_upcoming {
    font-size: 1.5em;
}
.term-188 ul.grid_list li.flex-item:nth-child(1) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(2) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(3) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(4) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(5) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(6) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(7) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(8) .splash-bg,
.term-190 ul.grid_list li.flex-item .splash-bg  {
	padding-top: 420px;
}
.term-187 ul.grid_list li.flex-item .splash-bg {
    padding-top: calc(100vh - 350px);
}

.term-188 ul.grid_list.list-view li.flex-item:nth-child(1) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(2) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(3) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(4) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(5) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(6) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(7) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(8) .splash-bg,
.term-190 ul.grid_list.list-view li.flex-item .splash-bg  {
	padding-top: 120px;
}

}
@media screen and (min-width: 1550px) {
.term-187 ul.grid_list li.flex-item .splash-bg {
    padding-top: calc(100vh - 450px);
}
ul.shop_grid li {

}
.splash-bg-rel-50 {
    padding-top: 290px;
    }
ul.ev_utlity li.expo_now {
	width: 30%;
}
.nav_square {
    padding-top: 68px;
}
p.nav_expo_title {
    margin: 12px 0 0;
}
.navigation {
    width: calc(50% - 38px);
    }
.term-188 ul.grid_list li.flex-item:nth-child(1) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(2) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(3) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(4) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(5) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(6) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(7) .splash-bg,
.term-188 ul.grid_list li.flex-item:nth-child(8) .splash-bg,
.term-190 ul.grid_list li.flex-item .splash-bg {
	padding-top: 520px;
}
.term-188 ul.grid_list.list-view li.flex-item:nth-child(1) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(2) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(3) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(4) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(5) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(6) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(7) .splash-bg,
.term-188 ul.grid_list.list-view li.flex-item:nth-child(8) .splash-bg,
.term-190 ul.grid_list.list-view li.flex-item .splash-bg {
	padding-top: 120px;
}
	}