/*
Theme Name: GRAM
Theme URI: http://underscores.me/
Author: Grandesigns
Author URI: http://www.grandesigns.net
Description: Custom theme for the Grand Rapids Art Museum
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gram
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

GRAM is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 0em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
/*	border-radius: 3px;*/
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
/*	border-radius: 3px;*/
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color:#838c83;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	display:none;
	left:auto;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	display:block;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
/*	border-radius: 3px;*/
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* Backend Styles */

ul#backend-menu li {margin-right:20px;}
ul#backend-menu li a {font-weight:bold; color:#74b4ff;}
ul#backend-menu li a:hover {font-weight:bold; color:#b4aaa0;}
ul#backend-menu li.current-menu-item a {border-bottom:solid 3px #74b4ff; }
ul#backend-menu li.current-menu-item a:hover {border-bottom:solid 3px #b4aaa0; }

.page-template-template-backend h1.entry-title, .page-template-template-create h1.entry-title, .page-template-template-review h1.entry-title {margin-bottom:0px; color:#b4aaa0;}
.page-template-template-create #masthead {padding-top:0px;}
.page-template-template-create #masthead h1.site-title {margin-top:0px;}
.page-template-template-create #site-navigation {margin-top:20px; text-align:center;}
.page-template-template-create #backend-menu li.menu-item {float:none; display:inline-block;}
.page-template-template-backend a,.page-template-template-create a, .page-template-template-review a,
.page-template-template-backend a:visited, .page-template-template-create a:visited,.page-template-template-review a:visited {color:#74b4ff;}
.page-template-template-backend a:hover, .page-template-template-create a:hover,.page-template-template-review a:hover {color:#b4aaa0;}
.page-template-template-backend .entry-content, .page-template-template-create .entry-content, .page-template-template-review .entry-content  {margin-top:0px;}

.page-template-template-create .entry-content th, .page-template-template-backend .entry-content th,.page-template-template-backend .entry-content td, .page-template-template-review .entry-content th,.page-template-template-review .entry-content td {text-align:left;}

.page-template-template-create #primary, .page-template-template-backend #primary, .page-template-template-review #primary {width:100%;}

.frm_message#message p {margin:0px;}

/* Sidebar Styles */

.content-area {
	float: left;
	margin: 0 0 0 0;
	width: 630px;
}

#secondary.widget-area {
	float: right;
	overflow: hidden;
	width: 300px;
	margin-left:30px;
}

.site-footer {
	clear: both;
	width: 100%;
}

/* Major Area Styles */

#colophon, #colophon .widthbox {background-color:#3c3d41; color:#fff; min-height:265px;}
.site-content {overflow:hidden;}
.page, .widthbox, .single, .post, .archive, .search, .error404, .blog {background-color:#fff;}
body {background-color:#3c3d41; margin-top:27px; font-family: 'PT Sans', sans-serif; color:#02020B;}
.entry-footer a, a, .entry-footer a:visited, a:visited {text-decoration:none; color:#59c2bb}
.entry-footer a:hover, a:hover {color:#838C8E;}
#masthead {margin-bottom:21px;}
.page #primary, .page #secondary {margin-top:21px;}
.entry-content p {margin-bottom:16px;}
.post h1 {padding-top:4px;}

.header-left {width:187px; float:left;}
.header-center {float:left; width:490px; padding-left:38px; margin-top:35px;}
.header-right {width:176px; float:right; margin-top:-5px;}
.header-right img {width:176px!important; height:69px!important;}
.header-right .button, #colophon .button, .membership-buttons .button {background-color:#59c2bb; text-align:center; padding-top:4px; padding-bottom:3px; font-size:.7rem; width:100%; letter-spacing:1px;}
#primary .membership-buttons .button a {color:#fff;}
.header-right .button:hover, #colophon .button:hover, .membership-buttons .button:hover {background-color:rgba(115, 157, 211, 0.8);}
a.button-link {color:#fff; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/ float:left; font-family: 'Montserrat', sans-serif;}
a:visited.button-link; {color:#fff; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/}
a.button-link.donate-button {width:70px; margin-right:6px;}
a.button-link.membership-button {width:100px;}
#primary .pr-link, #primary .pr-link:visited {background-color:#59c2bb; text-align:center; padding-top:4px; padding-bottom:3px; font-size:.7rem; letter-spacing:1px; color:#fff;
	width:76px; float:left; margin-right:18px; font-weight:bold; display:inline-block; /*text-transform:uppercase;*/}
.pr-link:hover {background-color:rgba(115, 157, 211, 0.8); color:#fff;}
.pr-link:last-child {margin-right:0px;}
.social-link {text-decoration:none;}
.home .entry-header {display:none;}
#site-navigation a {color:#3C3D41; /*text-transform:uppercase;*/ font-size:.8rem; margin-right:22px; font-weight:bold; letter-spacing:1px; font-family: 'Montserrat', sans-serif;}
#site-navigation a:hover {color:#59c2bb;}
.header-hours {float:left; width:135px; font-size:.6rem; color:#838C8E; line-height:1rem; margin-bottom:13px;}
.header-hours .time {font-size:.9rem; font-weight:bold; color:#59c2bb;}

.archive h1.page-title {margin-top:0px;}

.header-center .search-form {width:93px; float:right; height:32px; margin-right:19px; margin-top:3px;}
.header-center .search-form button {border:0px; background-color:transparent; font-size:1.2rem;
	-webkit-box-shadow:none; box-shadow:none; padding-left:6px; padding-right:6px; color:#3C3D41;}
.header-center .search-form .search-field {width:50px; border:solid #ccc 1px; font-size:.9rem; letter-spacing:1px; /*border-radius:4px;*/}
.social-icon {float:right; margin-right:8px; margin-top:12px;}
#menu-item-89 a {margin-right:0px;}
#home-slider {width:100%; margin-left:auto; margin-right:auto; margin-top:21px;}
#home-slider ol.bjqs-markers {width:960px; margin-left:auto; margin-right:auto;}
#home-slider ol.bjqs-markers li a {display:block; width:20%; float:left; text-align:center;}
.bjqs-slide {position:relative; z-index:30;}
.triangle {width:14px; height:8px; background-repeat:no-repeat; margin-left:auto; margin-right:auto; position:relative; z-index:50;}
.active-marker .triangle {background:url(http://www.artmuseumgr.org/wp-content/themes/gram/graphics/triangle.png);}
.fa.fa-bookmark {background-color:#fff; height:40px;}
#home-slider ol.bjqs-markers {margin-top:-8px; background-image:;}
.slide-image {width:100%; height:445px; background-size:cover; background-position:center center; text-align:center;}
#home-slider, ul.bjqs {height:445px!important;}
.slider-overlay {width:100%; max-width:960px; margin-left:auto; margin-right:auto;}

.slider-caption h3 {font-size:.7rem; color:#797A7D;
	font-family: 'PT Serif', serif; font-weight:normal; font-style: italic; text-transform:none;}
.slider-caption {color:#3C3D41; /*text-transform:uppercase;*/ font-size:.7rem; font-weight:bold; letter-spacing:1px;}
.slider-caption {display:block; width:18%; float:left; text-align:left; line-height:.8rem;
	padding-left:1.875%; border-left:solid 1px #ddd; margin-left:2.5%; padding-bottom:12px; margin-top:12px; min-height:120px;
	}
a:hover .slider-caption { color:#838c83;}
a:first-of-type .slider-caption {
    border-left:0px; padding-left:0px; margin-left:0px; width:18%;
}


h1.entry-title, .entry-content h1 {color:#59c2bb; font-size:1.5rem; line-height:1.5rem; font-weight:normal; margin-top:0px; margin-bottom:16px;}
h1.entry-title {display:none;}
.search h1.entry-title {display:block;}
.entry-content {margin-top:0px; font-size:.9rem;}
.entry-content p {margin-top:0px;}
#primary h2.date {font-size:1rem; margin-top:-14px;}
h2 {line-height:1.5rem;}

.header-photo {text-align:center; margin-left:auto; margin-right:auto;
	width:100%; height:250px; margin-top:0px; overflow:hidden; background-position:center center;
	background-size:cover;}
.header-photo .widthbox {background-color:transparent;}
#hptitle {color:#fff; text-align:left; background-color:rgba(0, 0, 0, 0.8);
	padding:16px; 25px; 16px; 25px; width:300px; font-weight:bold;
	/*text-transform:uppercase;*/ font-size:1.5rem; letter-spacing:0px; font-family:"Montserrat", sans-serif;
	margin-top:182px;}

.home #primary, #primary.full-width {width:100%;}

.main-navigation ul ul {top:18px; background-color: rgba(0, 0, 0, 0.4);
background: rgba(0, 0, 0, 0.4);
color: rgba(0, 0, 0, 0.4); padding:6px; padding-left:10px; border-top:solid #fff 3px;}
#site-navigation ul ul li a {color:#fff; padding-top:3px; padding-bottom:3px;}
#site-navigation ul ul li a:hover {color:#ddddee;}

#tour-buttons {width:100%; clear:both;}
#tour-buttons a {color: #59c2bb;
font-size: 1.5rem;
line-height: 1.5rem;
font-weight: normal;
display:block; float:left; width:300px; margin-bottom:30px;}
#tour-buttons a img {margin-top:4px;}
#tour-buttons a:hover img {opacity:.8;}
#guided-tour-button {margin-right:30px;}
.category-guided-tours h2.date {display:none;}

/* Membership + Art Page */

.side-by-side {}
.side-by-side img {float:left; width:630px; margin-right:30px;}
.side-by-side h2 {color:#59c2bb; font-size:1.1rem; clear:none; margin-top:0px; font-family:"Montserrat", sans-serif; font-weight:normal; margin-bottom:0px;}
.side-by-side-right {width:300px; float:right;}
.fake-primary {width:630px; float:left;}
.fake-sidebar {width: 300px; margin-left:30px; float:right; margin-top:21px;}
.membership-capsule {width:630px; border:solid 1px #d8d8d8; margin-top:21px; padding:29px 25px 30px 30px; color:#A6A5A5;}
.membership-capsule h3 {clear:none; margin:0px; color:#02020B; font-size:1rem; /*text-transform:uppercase;*/ margin-bottom:3px;}
.membership-capsule h3 .price {color:#59c2bb; margin-left:6px; font-family:"Montserrat", sans-serif; }
.membership-buttons {width:78px; float:right; margin-left:12px; margin-bottom:12px;}
.membership-buttons a {color:#fff; width:78px; height:25px; padding-top:3px; padding-bottom:4px; display:block; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/ font-family: 'Montserrat', sans-serif;}
.membership-buttons .button {margin-bottom:7px; padding-top:0px; padding-bottom:0px;}
.membership-buttons p {margin-bottom:0px;}
#primary .fake-sidebar .capsule:nth-of-type(2),#primary .fake-sidebar .capsule:nth-of-type(5) {margin-left:0px;}

/* Footer */
.footer-one,.footer-two,.footer-three,.footer-four,.footer-five {padding-top:14px; padding-bottom:14px; margin-bottom:14px;}
.footer-one {width:180px; float:left; font-size:.8rem; color:#797A7D; font-family: 'PT Serif', serif;}
.footer-one #footer-logo {margin-bottom:54px;}
.footer-two {width:155px; float:left; border-left:solid 1px #4E5054; margin-left:42px; padding-left:42px; margin-right:20px;}
.footer-two li {margin-bottom:24px; line-height:.8rem;}
.footer-two a {color:#f7f7f7; text-decoration:none; /*text-transform:uppercase;*/ font-family: 'Montserrat', sans-serif; font-size:.8rem;}
.footer-two a:hover {color:#59c2bb;}
.footer-two ul {list-style:none;}
.footer-two #menu-footer-menu {margin-left:0px; padding-left:0px;}
.footer-three {width:180px; float:left;}
.footer-four {min-height:244px;}
.footer-four a {color:#838d8f; text-decoration:none; font-size:.8rem; font-family: 'Montserrat', sans-serif; margin-bottom:10px; display:block;}
.footer-four a i.fa {font-size:1.2rem; min-width:18px; margin-right:13px;}
.footer-four h3 {/*text-transform:uppercase;*/ font-size:.7rem; margin-top:0px; line-height:.7rem; margin-bottom:28px;}
.footer-four {width:155px; float:left; margin-right:42px; padding-right:42px; border-right:solid 1px #4E5054; }
.footer-five {width:180px; float:left;}
#colophon .widthbox {padding-top:41px;}

/* Capsules */

a.capsule-link {text-decoration:none; color:#02020B;}
.capsule.capsule-normal img, .capsule.capsule-bandless img {position:relative; width:300px; max-width:300px; height:197px;}
.blue-band {background-color:rgba(0, 0, 0, 0.8); color:#fff; text-align:left; width:100%; height:73px; z-index:50;
	margin-top:-79px; position:relative; line-height:73px; font-weight:bold; font-size:1.2rem; padding-left:12px;
	padding-right:12px; font-family:"Montserrat", sans-serif; /*text-transform:uppercase;*/ overflow:hidden;}
#secondary .blue-band {margin-top:-80px;}
.capsule {width:100%; margin-bottom:30px; max-width:300px; border:solid 1px #d8d8d8;
	text-align:center; /*border-radius:2px;*/ max-height:276px; height:276px; overflow:hidden; font-family:"Montserrat", sans-serif;}
.capsule p {padding-left:12px; padding-right:12px; margin-top:18px; font-size:.9rem; line-height:.9rem; font-family:"PT Sans", sans-serif;}
.capsule-bandless, .capsule-content-tall, .capsule-calendar-tall, .capsule-mailchimp {height:338px; max-height:338px;}
.capsule .headline {font-weight:bold; font-size:1rem; line-height:1rem; /*text-transform:uppercase;*/
	text-align:left; color:#3A3D3F; margin-top:14px; padding-left:22px; padding-right:22px; padding-bottom:8px;}
.capsule-bandless p, .capsule-content-tall p, .capsule-calendar-tall p, .capsule-mailchimp p
	{padding-left:22px; padding-right:22px; text-align:left; font-size:1rem; line-height:1.2rem;
	color:#A6A5A5; margin-top:0px;}
.capsule-content .standard {padding-left:10px;}
.capsule-content .standard p, .capsule-content-tall .standard p {color:#a6a5a5; text-align:left; font-size:1rem;
	line-height:1.3rem; padding-left:22px; padding-right:22px;}
.capsule-content .standard .headline, .capsule-content-tall .standard .headline {padding-bottom:0px; padding-top:8px;}
.capsule-wr01lc .standard p {line-height:1.6rem;}

.capsule.capsule-horizontal.capsule-exhibition img {max-height:600px;}

.divider {width:100%; clear:both;}

#secondary p {display:none;}
#secondary .capsule p {display:block;}

#secondary .widget_text a:visited {color: #59c2bb;}

.capsule-calendar-tall p, .capsule-calendar-tall .headline, .capsule-calendar p, .capsule-calendar .headline {padding-left:0px; text-align:left;}
.capsule-calendar-tall .headline, .capsule-calendar .headline {padding-top:19px;}
.capsule-calendar-tall, .capsule-calendar {padding-left:32px;}
.capsule-calendar-tall .hours,.capsule-calendar .hours {padding-left:0px; margin-left:0px; font-size:1.2rem;
	line-height:1.2rem; color:#59c2bb; text-align:left; margin-bottom:14px; font-family:"PT Sans", sans-serif;}
.capsule-calendar-tall .hours b, .capsule-calendar .hours b {font-family:"Montserrat", sans-serif;}
a.calendar-link {text-decoration:none; font-size:.8rem; color:#59c2bb; font-weight:bold; letter-spacing:1px;}

.capsule-calendar .frmcal-content, .capsule-calendar-tall .frmcal-content {font-family: "PT Sans", sans-serif; padding-left:0px; padding-top:0px; margin-left:0px; text-align:left; font-size:.8rem; margin-bottom:14px;}
.capsule-calendar-tall #calendar-dropdowns, .capsule-calendar #calendar-dropdowns {height:193px; overflow:hidden; padding-left:15px; padding-right:15px;}
.capsule-calendar-tall .frmcal-content a, .capsule-calendar .frmcal-content a {color:#A6A5A5;}
.capsule-calendar-tall .frmcal-content a:hover, .capsule-calendar .frmcal-content a:hover {color:#59c2bb;}

.capsule-calendar .headline {padding-top:10px; padding-bottom:10px;}
.capsule-calendar .hours {margin-bottom:10px;}
.capsule-calendar #calendar-dropdowns {height:153px; overflow:hidden;}
.capsule-calendar p {margin-bottom:10px; margin-top:10px;}

.capsule-mailchimp p, .capsule-mailchimp br {display:none;}
.capsule-mailchimp .frm_message p {display:block; color:#fff; padding:0px;}
.capsule-mailchimp .headline br {display:block;}
.capsule-mailchimp .frm_submit p {display:block; margin-left:0px; padding-left:0px;}
.capsule-mailchimp {padding-left:40px; padding-right:40px; padding-top:17px;}
.capsule-mailchimp .headline {padding-left:0px; padding-right:0px;}
#frm_field_228_container, #frm_field_229_container {margin-bottom:10px;}
.capsule-mailchimp .frm_submit input[type=submit], #mc-embedded-subscribe {color:#fff; margin-top:0px; width:160px; height:35px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d2e2b3+1,b7cf85+5,99af6e+95,646a57+97 */
background: #d2e2b3; /* Old browsers */
background: -moz-linear-gradient(top,  #d2e2b3 1%, #b7cf85 5%, #99af6e 95%, #646a57 97%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#d2e2b3), color-stop(5%,#b7cf85), color-stop(95%,#99af6e), color-stop(97%,#646a57)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #d2e2b3 1%,#b7cf85 5%,#99af6e 95%,#646a57 97%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #d2e2b3 1%,#b7cf85 5%,#99af6e 95%,#646a57 97%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #d2e2b3 1%,#b7cf85 5%,#99af6e 95%,#646a57 97%); /* IE10+ */
background: linear-gradient(to bottom,  #d2e2b3 1%,#b7cf85 5%,#99af6e 95%,#646a57 97%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2e2b3', endColorstr='#646a57',GradientType=0 ); /* IE6-9 */
}

#mc-embedded-subscribe {box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.0), inset 0 15px 17px rgba(255, 255, 255, 0.0), inset 0 -5px 12px rgba(0, 0, 0, 0.00); text-shadow: rgba(255, 255, 255, 0.0) 0px 0px 0px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Tahoma, sans-serif;
font-size: 14px;}
.mc-field-group input[type=text], .mc-field-group input[type=email] {/*border-radius:4px;*/ font-family: 'Lucida Grande', 'Lucida Sans Unicode', Tahoma, sans-serif; font-size:14px; width:100%;}
#mc_embed_signup {text-align:left;}
#mc_embed_signup ul {margin-left:0px; padding-left:0px; list-style-type:none; font-size:13px; line-height:19px; font-weight:normal; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Tahoma, sans-serif;}
#mc_embed_signup .mc-field-group {padding-bottom:10px;}
#mc_embed_signup ul li {float:left; margin-right:4px; max-width:192px; line-height:21px;}
#mc_embed_signup ul input {margin-right:3px;}
#mc-embedded-subscribe {margin-top:10px;}
#mce-responses {clear:both; font-size:10px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Tahoma, sans-serif;}

#primary .capsule {float:left;}
#primary .capsule:nth-of-type(2),#primary .capsule:nth-of-type(5), #primary .capsule:nth-of-type(8), #primary .capsule:nth-of-type(11) {margin-left:30px; margin-right:30px;}

.capsule.capsule-horizontal {width:100%; height:196px; max-width:630px; max-height:500px; float:none; text-align:left;}
.capsule.capsule-horizontal.gramlabs {height:auto; max-height:1000px;}
.capsule-horizontal img {width:300px; max-height:199px; float:left; margin-right:20px;}
.horizontal-capsule-image {width:298px; float:left; margin-right:0px; overflow:hidden;}
.capsule.capsule-horizontal .horizontal-capsule-image span p {margin:0px; padding:0px; padding-top:6px; font-size:.625rem; clear:left;}
.image-caption {margin:0px; padding:0px; padding-top:0px; font-size:.625rem; clear:left;}
.image-caption img {margin-bottom:0px;}
.capsule-horizontal .subtitle {color:#02020b; padding-left:22px;}
.capsule-horizontal .headline {color:#59c2bb; padding-bottom:0px; padding-left:22px;}
.capsule.capsule-horizontal p {color:#A6A5A5; margin-top:6px; line-height:1rem; padding-left:22px;}
#primary .capsule.capsule-horizontal:nth-of-type(2),#primary .capsule.capsule-horizontal:nth-of-type(5), #primary .capsule.capsule-horizontal:nth-of-type(8), #primary .capsule.capsule-horizontal:nth-of-type(11) {margin-left:0px; margin-right:0px;}

.capsule.capsule-horizontal.capsule-exhibition {border:0px; height:auto; min-height:196px;}
.capsule.capsule-horizontal.capsule-exhibition img {margin-right:0px;}
.exhibition-capsule-content {width: 330px; float:right;}
.exhibition-capsule-content .headline {margin-top:0px;}

.capsule-container {padding-top:13px;}

#post-79 .capsule-calendar-month .headline {margin-top:0px;}
.capsule-calendar-month {text-align:left;}
.capsule-calendar-month table {max-width:245px;}
.calendar-item {text-align:left; font-family: "PT Sans", sans-serif; font-size:.8rem;}
.capsule-calendar-month td {font-size:12px; line-height:12px; padding-bottom:1px;}
.calendar-item a {color:#A6A5A5;}
.calendar-item a:hover {color:#59c2bb;}
.date-td {width:28px; vertical-align:top; text-align:right; padding-right:5px;}
.full-width-td {padding-left:33px; text-indent:-33px;}

.capsule-horizontal.capsule-exhibition-hero {border:0px; padding:0px;  height:338px; max-height:338px; width:630px;}
.capsule-exhibition-hero img {width:630px; height:338px; max-height:338px;}
.fake-capsule {height:338px; margin-left:1px; width:1px; border:0px; margin-left:29px!important; margin-right:0px!important;}

#secondary .addthis_default_style {display:none;}

.capsule.capsule-bx516a p {margin-top:12px;}
.capsule.capsule-content.capsule-vxe8vh p {line-height:1.1rem; margin-top:22px;}

.featured-capsules .capsule.capsule-normal {height:320px; max-height:320px;}

#primary .rsDefaultInv, #primary .rsDefaultInv .rsOverflow, #primary .rsDefaultInv .rsSlide {background-color:transparent;}
#primary .rsSlideRoot p {margin-left:0px; width:100%; max-width:100%;}

/* Staff */

.staff-box {margin-bottom:30px; width:100%;}
.staff-box img {width:150px; float:left; margin-right:21px;}

/* Virtual Tour */

#vt-iframe-large {width:100%; height:500px;}

/* GRAM Labs */

.capsule.capsule-horizontal.gramlabs p {width:300px; margin-left:300px;}

/* Responsive */

/* Large desktop */
@media (min-width: 1200px) {
    .widthbox {
		width:960px;
		margin-left:auto;
		margin-right:auto;
		}
}

/* Portrait tablet to landscape and desktop */
@media (max-width: 1200px) {
    .widthbox {
		width:960px;
		margin-left:auto;
		margin-right:auto;
		}
}

/* iPad portrait */
@media (min-width: 768px) and (max-width: 979px) {
.widthbox, #home-slider ol.bjqs-markers {width:730px;}
.header-center {float:left; width:360px; padding-left:12px; margin-top:35px;}
#site-navigation a {color:#3C3D41; /*text-transform:uppercase;*/ font-size:.8rem; margin-right:10px; font-weight:bold; letter-spacing:0px; font-family: 'Montserrat', sans-serif;}
#menu-item-89 a {margin-right:0px;}
.footer-three {width:88px;}
.footer-four {clear:left; margin-left:189px;}
.footer-one {margin-left:121px;}
.content-area {
	float: left;
	margin: 0 0 0 0;
	width: 400px;
}

.site-content .widget-area {
	float: right;
	overflow: hidden;
	width: 300px;
	margin-left:30px;
}
#primary .capsule:nth-of-type(2),#primary .capsule:nth-of-type(5), #primary .capsule:nth-of-type(8), #primary .capsule:nth-of-type(11) {margin-left:0px; margin-right:0px;}
#primary .capsule:nth-of-type(odd) {margin-left:50px; margin-right:30px;}

#primary .capsule.capsule-horizontal:nth-of-type(2), #primary .capsule.capsule-horizontal:nth-of-type(5), #primary .capsule.capsule-horizontal:nth-of-type(8), #primary .capsule.capsule-horizontal:nth-of-type(11) {margin-left:0px; margin-right:0px;}
#primary .capsule.capsule-horizontal:nth-of-type(odd) {margin-left:0px;}
.capsule.capsule-horizontal {width:300px; height:400px; min-height:400px; max-width:630px; float:none; text-align:left; margin-left:0px;}
.capsule-horizontal img {width:298px; float:none; margin-right:0px;}
.capsule-horizontal .subtitle {color:#02020b; padding-left:22px; font-size:.8rem;}
.capsule-horizontal .headline {color:#59c2bb; padding-bottom:0px; padding-left:22px;}
.capsule.capsule-horizontal p {color:#A6A5A5; margin-top:6px; line-height:1rem; padding-left:22px;}
.capsule.capsule-horizontal.capsule-exhibition .subtitle {padding-left:0px;}
.capsule.capsule-horizontal.capsule-exhibition .headline {padding-left:0px;}
.capsule.capsule-horizontal.capsule-exhibition p {padding-left:0px; padding-right:0px;}

.capsule.capsule-horizontal .horizontal-capsule-image span p {padding-top:0px; padding-bottom:6px;}

.side-by-side img {float:none; width:630px; margin-right:30px;}
.side-by-side h2 {color:#59c2bb; font-size:1.1rem; clear:none; margin-top:0px; font-family:"Montserrat", sans-serif; font-weight:normal; margin-bottom:0px;}
.side-by-side-right {width:100%; float:none;}
.fake-primary {width:100%; float:none;}
.fake-sidebar {width: 100%; margin-left:0px; float:none; margin-top:21px;}
.membership-capsule {width:100%; border:solid 1px #d8d8d8; margin-top:21px; padding:29px 25px 30px 30px; color:#A6A5A5;}

#post-79 .capsule-calendar-tall .headline {margin-top:0px;}

.capsule.capsule-horizontal.capsule-exhibition {border:0px; height:auto; min-height:196px; overflow:visible; clear:both; max-height:1000px;}
.exhibition-capsule-content {width: 300px; float:none;}

.exhibition-capsule-content .headline {margin-top:14px;}

.capsule.capsule-horizontal.capsule-exhibition-hero {border:0px; padding:0px; height:338px; max-height:338px; min-height:338px; width:630px; margin-left:50px!important; margin-right:0px!important;}
.capsule-exhibition-hero img {width:630px; height:338px; max-height:338px;}
.fake-capsule {height:338px; margin-left:1px; width:1px; border:0px; margin-left:29px!important; margin-right:0px!important;}

.slider-caption { min-height:130px;}
.capsule.capsule-horizontal.gramlabs p {width:100%; margin-left:0px;}

/*#guided-tour-button {margin-right:20px;}
#tour-buttons a {width:190px;}*/

}

@media (min-width: 768px) and (max-width: 1199px) {

}

/* Landscape phone to portrait tablet */
@media (min-width: 640px) and (max-width: 767px) {
.widthbox, #home-slider ol.bjqs-markers {width:620px;}
.header-center form.search-form {display:none;}
.header-center {float:left; width:200px; padding-left:34px; margin-top:20px;}
.header-hours {width:100%; padding-left:3px;}
.social-icon {float:left; margin-right:8px; margin-top:12px;}
.footer-five {float:none; margin-left:auto; margin-right:auto; display:none;}
.footer-three {text-align:center;}
.footer-four {margin-right:0px; padding-right:0px; border-right:0px;}
.footer-one {margin-left:60px;}
.content-area {
	float: left;
	margin: 0 0 0 0;
	width: 100%;
	margin-bottom:0px;
}

.site-content .widget-area {
	float: left;
	overflow: hidden;
	width: 100%;
	margin-left:0px;
}
#primary .capsule:nth-of-type(2),#primary .capsule:nth-of-type(5), #primary .capsule:nth-of-type(8), #primary .capsule:nth-of-type(11) {margin-left:0px; margin-right:0px;}
#primary .capsule:nth-of-type(odd) {margin-left:0px; margin-right:20px;}
#primary .capsule {margin-bottom:20px;}

#secondary.widget-area {margin-left:0px; width:100%; margin-top:0px;}
#secondary.widget-area .capsule:nth-of-type(odd) {margin-left:0px; margin-right:20px;}
#secondary.widget-area .capsule {margin-bottom:20px; float:left;}

#primary .capsule.capsule-horizontal:nth-of-type(2), #primary .capsule.capsule-horizontal:nth-of-type(5), #primary .capsule.capsule-horizontal:nth-of-type(8), #primary .capsule.capsule-horizontal:nth-of-type(11) {margin-left:0px; margin-right:0px;}
#primary .capsule.capsule-horizontal:nth-of-type(odd) {margin-left:0px; margin-right:0px;}
.capsule.capsule-horizontal {width:100%; height:198px; min-height:198px; max-width:620px; float:none; text-align:left; margin-left:0px;}
.capsule-horizontal img {width:298px; float:left; margin-right:20px;}
.capsule-horizontal .subtitle {color:#02020b; padding-left:22px;}
.capsule-horizontal .headline {color:#59c2bb; padding-bottom:0px; padding-left:22px;}
.capsule.capsule-horizontal p {color:#A6A5A5; margin-top:6px; line-height:1rem; padding-left:22px;}
.capsule.capsule-horizontal.capsule-exhibition p {padding-left:22px; padding-right:0px;}

#post-79 .capsule-calendar-tall .headline {margin-top:0px;}

.slide-image {width:100%; height:400px; background-size:cover; background-position:center center;}
#home-slider, ul.bjqs {height:400px!important;}
.slider-overlay {max-height:400px;}

.side-by-side img {float:none; width:100%; margin-right:0px;}
.side-by-side h2 {color:#59c2bb; font-size:1.1rem; clear:none; margin-top:0px; font-family:"Montserrat", sans-serif; font-weight:normal; margin-bottom:0px;}
.side-by-side-right {width:100%; float:none;}
.fake-primary {width:100%; float:none;}
.fake-sidebar {width: 100%; margin-left:0px; float:none; margin-top:21px;}
.membership-capsule {width:100%; border:solid 1px #d8d8d8; margin-top:21px; padding:29px 25px 30px 30px; color:#A6A5A5;}

.capsule.capsule-horizontal.capsule-exhibition {border:0px; height:auto; min-height:196px; max-height:1000px;}
.capsule.capsule-horizontal.capsule-exhibition img {margin-right:0px;}
.exhibition-capsule-content {width: 320px; float:right;}

.capsule.capsule-horizontal.capsule-exhibition-hero {border:0px; padding:0px; height:332px; max-height:332px; min-height:332px; width:620px; margin-left:0px!important; margin-right:0px!important;}
.capsule-exhibition-hero img {width:620px; height:332px; max-height:332px;}
.fake-capsule {height:332px; width:0px; border:0px; margin-left:0px!important; margin-right:0px!important;}

.slider-caption { min-height:150px;}

body {margin-top:0px;}
#page {margin-top:27px;}
#vt-iframe {margin-bottom:20px;}

#first-connect-link {margin-left:165px;}
#guided-tour-button {margin-right:20px;}

}

/* Big and/or Landscape Phones */
@media (min-width: 480px) and (max-width: 639px) {

	#post-797 .entry-content h1, #post-497 .entry-content h1 {text-align:center;}

	.widthbox, #home-slider ol.bjqs-markers {width:460px;}
	.header-center form.search-form {display:none;}
	.header-center {float:left; width:100%; padding-left:0px; margin-top:20px;}
	.header-right {margin-top:0px;}
	.header-right img {display:block; margin-top:2px;}
	.header-hours {width:50%; padding-left:3px;}
	.social-icon {float:right; margin-left:8px; margin-top:10px;}
	.footer-five {float:none; margin-left:auto; margin-right:auto; display:none;}
	.footer-three {text-align:center; width:150px;}
	.footer-four {margin-right:0px; padding-right:0px; border-right:0px; width:130px;}
	.footer-one {margin-left:0px;}
	.content-area {width:100%;}
	.content-area {
		float: left;
		margin: 0 0 0 0;
		width: 100%;
		margin-bottom:0px;
	}

	.site-content .widget-area {
		float: left;
		overflow: hidden;
		width: 100%;
		margin-left:0px;
	}
	.capsule {margin-left:auto; margin-right:auto; float:none; clear:left;}
	#primary .capsule:nth-of-type(2),#primary .capsule:nth-of-type(5), #primary .capsule:nth-of-type(8), #primary .capsule:nth-of-type(11) {margin-left:80px; margin-right:0px;}
	#primary .capsule {margin-left:80px;}
	.slide-image {width:100%; height:300px; background-size:cover; background-position:center center;}
	#home-slider, ul.bjqs {height:300px!important;}
	.slider-overlay {max-height:300px;}
	.header-hours {margin-bottom:0px;}

	#secondary.widget-area {margin-left:0px; width:100%; margin-top:0px;}
	#secondary.widget-area .capsule {margin-bottom:20px; float:left; margin-left:80px;}

	#primary .capsule.capsule-horizontal:nth-of-type(2), #primary .capsule.capsule-horizontal:nth-of-type(5), #primary .capsule.capsule-horizontal:nth-of-type(8), #primary .capsule.capsule-horizontal:nth-of-type(11) {margin-left:80px; margin-right:0px;}
	#primary .capsule.capsule-horizontal:nth-of-type(odd) {margin-left:80px;}
	.capsule.capsule-horizontal {width:300px; height:400px; min-height:400px; max-width:630px; float:none; text-align:left; margin-left:80px;}
	.capsule-horizontal img {width:298px; float:none; margin-right:0px;}
	.capsule-horizontal .subtitle {color:#02020b; padding-left:22px; font-size:.8rem;}
	.capsule-horizontal .headline {color:#59c2bb; padding-bottom:0px; padding-left:22px;}
	.capsule.capsule-horizontal p {color:#A6A5A5; margin-top:6px; line-height:1rem; padding-left:22px;}
	.capsule.capsule-horizontal .horizontal-capsule-image span p {padding-top:0px; padding-bottom:6px;}
	.capsule.capsule-horizontal.capsule-exhibition p {padding-left:22px;}

	.capsule.capsule-horizontal.capsule-exhibition .subtitle {padding-left:0px;}
	.capsule.capsule-horizontal.capsule-exhibition .headline {padding-left:0px;}
	.capsule.capsule-horizontal.capsule-exhibition p {padding-left:0px; padding-right:0px;}

	.side-by-side img {float:none; width:100%; margin-right:0px;}
	.side-by-side h2 {color:#59c2bb; font-size:1.1rem; clear:none; margin-top:0px; font-family:"Montserrat", sans-serif; font-weight:normal; margin-bottom:0px;}
	.side-by-side-right {width:100%; float:none;}
	.fake-primary {width:100%; float:none;}
	.fake-sidebar {width: 100%; margin-left:0px; float:none; margin-top:21px;}
	.membership-capsule {width:100%; border:solid 1px #d8d8d8; margin-top:21px; padding:29px 25px 30px 30px; color:#A6A5A5;}
	#primary .fake-sidebar .capsule:nth-of-type(2), #primary .fake-sidebar .capsule:nth-of-type(5) {margin-left:80px;}

	.capsule.capsule-horizontal.capsule-exhibition {border:0px; height:auto; min-height:196px; overflow:visible; clear:both; max-height:1000px;}
	.exhibition-capsule-content {width: 300px; float:none;}

	.exhibition-capsule-content .headline {margin-top:14px;}

	.capsule.capsule-horizontal.capsule-exhibition-hero {border:0px; padding:0px; height:246px; max-height:246px; min-height:246px; width:460px; margin-left:0px!important; margin-right:0px!important;}
	.capsule-exhibition-hero img {width:460px; height:246px; max-height:246px;}
	.fake-capsule {height:246px; width:0px; border:0px; margin-left:0px!important; margin-right:0px!important; display:none;}
	#post-79 h3 {text-align:center;}

	.slider-caption, a:first-of-type .slider-caption {display:block; width:300px; float:none; text-align:left; line-height:.8rem;
		padding-left:0%; border-left:solid 0px #ddd; margin-left:80px; padding-bottom:12px; margin-top:24px;
		}
	.slider-caption { min-height:20px;}
	#home-slider ol.bjqs-markers {display:none;}
	body {margin-top:0px;}
	#page {margin-top:27px;}
	#vt-iframe {margin-bottom:20px;}

	#first-connect-link {margin-left:84px;}
	.capsule.capsule-horizontal.gramlabs p {width:100%; margin-left:0px;}

	#guided-tour-button {margin-right:20px;}
	#tour-buttons a {width:220px;}
}

/* Portrait phones and down */
@media (max-width: 479px) {
.widthbox {width:300px;}
body {margin-top:0px;}
#page {margin-top:27px;}
#home-slider ol.bjqs-markers {display:none;}
.header-left {width:187px; float:none; margin-left:auto; margin-right:auto;}
.header-right {width:176px; float:none; margin-left:auto; margin-right:auto; margin-top:6px;}
.header-right img {display:none;}
.header-center form.search-form {display:none;}
.header-center {float:left; width:100%; padding-left:0px; margin-top:20px;}
.header-hours {width:50%; padding-left:3px;}
.social-icon {float:right; margin-left:8px; margin-top:10px;}
#home-slider {margin-top:10px;}
.content-area {width:100%;}
.footer-one  {text-align:center; margin-left:60px;}
.footer-one #footer-logo {margin-bottom:12px;}
.footer-three {text-align:center; width:100%;}
.footer-three img {margin-left:12px; margin-right:12px;}
.footer-two,.footer-three,.footer-four,.footer-five {padding-top:0px;}
.footer-four {margin-right:0px; margin-left:95px; padding-right:0px; border-right:0px; width:110px;}
.footer-five {display:none;}
.header-hours {margin-bottom:0px;}
.content-area {
	float: left;
	margin: 0 0 0 0;
	width: 100%;
	margin-bottom:0px;
}

.site-content .widget-area {
	float: left;
	overflow: hidden;
	width: 100%;
	margin-left:0px;
}
.capsule {margin-left:auto; margin-right:auto; float:none; clear:left;}
#primary .capsule:nth-of-type(2),#primary .capsule:nth-of-type(5), #primary .capsule:nth-of-type(8), #primary .capsule:nth-of-type(11) {margin-left:0px; margin-right:0px;}
#primary .capsule {margin-left:auto; margin-right:auto;}
.slide-image {width:100%; height:200px; background-size:cover; background-position:center center;}
#home-slider, ul.bjqs {height:200px!important;}
.slider-overlay {max-height:200px;}
.slider-caption, a:first-of-type .slider-caption {display:block; width:100%; float:left; text-align:left; line-height:.8rem;
	padding-left:0%; border-left:solid 0px #ddd; margin-left:0%; padding-bottom:12px; margin-top:12px;
	}
.header-photo {height:200px;}
#hptitle {margin-top:132px;}

#secondary.widget-area {margin-left:0px; width:100%; margin-top:0px;}
#secondary.widget-area .capsule {margin-bottom:20px; float:left; margin-left:0px;}

#primary .capsule.capsule-horizontal:nth-of-type(2), #primary .capsule.capsule-horizontal:nth-of-type(5), #primary .capsule.capsule-horizontal:nth-of-type(8), #primary .capsule.capsule-horizontal:nth-of-type(11) {margin-left:0px; margin-right:0px;}
#primary .capsule.capsule-horizontal:nth-of-type(odd) {margin-left:0px;}
.capsule.capsule-horizontal {width:300px; height:400px; min-height:400px; max-width:630px; float:none; text-align:left; margin-left:0px;}
.capsule-horizontal img {width:298px; float:none; margin-right:0px;}
.capsule-horizontal .subtitle {color:#02020b; padding-left:22px; font-size:.8rem;}
.capsule-horizontal .headline {color:#59c2bb; padding-bottom:0px; padding-left:22px;}
.capsule.capsule-horizontal p {color:#A6A5A5; margin-top:6px; line-height:1rem; padding-left:22px;}
.capsule.capsule-horizontal .horizontal-capsule-image span p {padding-top:0px; padding-bottom:6px;}
.capsule.capsule-horizontal.capsule-exhibition p {padding-left:22px;}

.capsule.capsule-horizontal.capsule-exhibition .subtitle {padding-left:0px;}
.capsule.capsule-horizontal.capsule-exhibition .headline {padding-left:0px;}
.capsule.capsule-horizontal.capsule-exhibition p {padding-left:0px; padding-right:0px;}

.side-by-side img {float:none; width:100%; margin-right:0px;}
.side-by-side h2 {color:#59c2bb; font-size:1.1rem; clear:none; margin-top:0px; font-family:"Montserrat", sans-serif; font-weight:normal; margin-bottom:0px;}
.side-by-side-right {width:100%; float:none;}
.fake-primary {width:100%; float:none;}
.fake-sidebar {width: 100%; margin-left:0px; float:none; margin-top:21px;}
.membership-capsule {width:100%; border:solid 1px #d8d8d8; margin-top:21px; padding:29px 25px 30px 30px; color:#A6A5A5;}

.capsule.capsule-horizontal.capsule-exhibition {border:0px; height:auto; min-height:196px; overflow:visible; clear:both; max-height:1000px;}
.exhibition-capsule-content {width: 300px; float:none;}

.exhibition-capsule-content .headline {margin-top:14px;}

.staff-box img {display:none;}

.capsule.capsule-horizontal.capsule-exhibition-hero {border:0px; padding:0px; height:160px; max-height:160px; min-height:160px; width:300px; margin-left:0px!important; margin-right:0px!important;}
.capsule-exhibition-hero img {width:300px; height:160px; max-height:160px;}
.fake-capsule {height:160px; width:0px; border:0px; margin-left:0px!important; margin-right:0px!important; display:none;}
#post-79 h3 {text-align:center;}

.slider-caption { min-height:20px;}

#vt-iframe, .wp-image-3322 {display:none;}
#vt-iframe-large {height:400px;}
.capsule.capsule-horizontal.gramlabs p {width:100%; margin-left:0px;}

#guided-tour-button {margin-right:0px;}
#tour-buttons #drop-in-tour-button {margin-bottom:18px;}
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    /* Retina-specific stuff here */

}

/*--------------------------------------------------------------
## Will's Additions
--------------------------------------------------------------*/
.gala-capsule {width:630px; border:solid 1px #d8d8d8; margin-top:21px; padding:29px 25px 30px 30px; color:#A6A5A5;}
.gala-capsule h3 {clear:none; margin:0px; color:#02020B; font-size:1rem; /*text-transform:uppercase;*/ margin-bottom:3px;}
.gala-capsule h3 .price {color:#59c2bb; margin-left:6px; font-family:"Montserrat", sans-serif; }
.gala-buttons {width:78px; float:right; margin-left:12px; margin-bottom:12px;}
#primary .gala-buttons a {color:#fff; width:78px; height:40px; padding-top:3px; padding-bottom:4px; display:block; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/ font-family: 'Montserrat', sans-serif;}
.gala-buttons .button {margin-bottom:7px; padding-top:0px; padding-bottom:0px;}
.gala-buttons p {margin-bottom:0px;}

.header-right .button, #colophon .button, .gala-buttons .button {background-color:#59c2bb; text-align:center; padding-top:4px; padding-bottom:3px; font-size:.7rem; width:100%; letter-spacing:1px;}
.header-right .button:hover, #colophon .button:hover, .gala-buttons .button:hover {background-color:rgba(115, 157, 211, 0.8);}
a.button-link {color:#fff; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/ float:left; font-family: 'Montserrat', sans-serif;}
a:visited.button-link; {color:#fff; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/}

/* RESERVATION BUTTON */

.r-buttons {width:78px; float:right; margin-left:12px; margin-bottom:12px;}
.r-buttons a {color:#fff; width:78px; height:40px; padding-top:3px; padding-bottom:4px; display:block; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/ font-family: 'Montserrat', sans-serif;}
.r-buttons .button {margin-bottom:7px; padding-top:0px; padding-bottom:0px;}
.r-buttons p {margin-bottom:0px;}

.header-right .button, #colophon .button, .r-buttons .button {background-color:#59c2bb; text-align:center; padding-top:4px; padding-bottom:3px; font-size:.7rem; width:100%; letter-spacing:1px;}
.header-right .button:hover, #colophon .button:hover, .r-buttons .button:hover {background-color:rgba(115, 157, 211, 0.8);}
a.button-link {color:#fff; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/ float:left; font-family: 'Montserrat', sans-serif;}
a:visited.button-link; {color:#fff; text-decoration:none; font-weight:bold; /*text-transform:uppercase;*/}
