/*
	Theme Name: Harry Potter
	Theme URI: http://harrypotter.nyhistory.org/
	Description: Harry Potter Microsite
	Author: NYHistory
	Author URI: http://www.nyhistory.org/
	Version: 1.0

	Template: genesis
	Template Version: 2.1

	License: GPL-2.0+
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Table of Contents

	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Gallery
		- Forms
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Titles
	- Widgets
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Footer Widgets
	- Site Footer
	- Media Queries
			
*/


/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Reset (normalize.css 2.1.2)
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;width:250px;margin:50px auto;}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}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:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}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}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}


/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.clearfix:before,
.entry-content:before,
.entry:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
	content: " ";
	display: table;
}

.clearfix:after,
.entry-content:after,
.entry:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/* Preloader
---------------------------------------------------------------------------------------------------- */

.js-loading *,
.js-loading *:before,
.js-loading *:after {
  animation-play-state: paused !important;
}

.loading {
  position:fixed;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display: none;
  background:#FFF;
  z-index:1000;
}

.loadinganimation{
	margin-left:auto;
	margin-right:auto;
	top:50%;
	left:50%;
	width:100px;
	margin-top:300px;
}

.js-loading .loading {
  display: block;
}

/*
Defaults
---------------------------------------------------------------------------------------------------- */

html, body{
	overflow-x:hidden;}

/* Typographical Elements
--------------------------------------------- */

body {
	background-color: #e2e2e2;
	color: #222;
	font-family: 'Crimson Text',Georgia,Times,"Times New Roman",serif;
	font-size: 18px;
	line-height: 1.8;
}

a,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #222;
	color: #fff;
}

::selection {
	background-color: #222;
	color: #fff;
}

a {
	color: #be0f18;
	text-decoration: none;
}

a img {
	margin-bottom: -4px;
}

a:hover {
	text-decoration: none;
}

p {
	margin: 0 0 24px;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

blockquote,
blockquote::before {
	color: #999;
}

blockquote {
	margin: 0;
	padding: 24px 40px;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}

#displaywrap a{
	color:#000;
}
	

/* Headings
--------------------------------------------- */

h1,
h2 {
	color: #FFF;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 0;
}

h3,
h4,
h6  {
	color: #be0f18;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 0;
}

h5{
	color: #FFF;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 0;
}


h1 {
	font-size: 4em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1em;
}

h5 {
	font-size: 1.5em;
}

h6 {
	font-size: 1.5em;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

.events-img{
	float: left;
	margin: 10px 30px 20px 0px;
}

img {
	height: auto;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	box-shadow: 1px 1px 3px #eee inset;
	color: #222;
	font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 14px;
	padding: 16px;
	width: 100%;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	background-color: #c7d316;
	border: none;
	border-radius: 5px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	padding: 16px 20px;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
	background-color: #6bd5f1;
	border: none;
	text-decoration: none;
}

.button {
	border-radius: 5px;
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.site-container {
	margin: 0 auto;
	max-width: 100%;
	background-color: #758baf;
}


/*.site-background-layer{
	 -webkit-transform: translateZ(-600px) scale(3);
    transform: translateZ(-600px) scale(3);
    z-index: 1;
}*/

.site-inner {	
	background-image: url('/wp-content/themes/harry-potter-gen/images/fullbg.jpg');
	background-repeat: no-repeat;
    background-attachment: fixed !important;
    background-position: center; 
	background-size:cover;
	background-color: #e2e2e2;
	clear: both;
	margin: 0 auto;
	}

/* Column Widths and Positions
--------------------------------------------- */

/* Content  */


.content{
	width:100%;
	margin:0px;
	}

.content-sidebar .content {
		margin: 0 auto;
		width:100%;
		}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 340px;
}

.sidebar-content .sidebar-primary {
	float: left;
}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	border: 1px solid #fff;
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.search-form {
	overflow: hidden;
}

.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.search-form input[type="search"] {
	background: #fff url(images/icon-search.png) no-repeat right;
	background-size: 36px 16px;
	color: #888;
	font-size: 10px;
	margin-bottom: 10px;
	padding: 16px;
	text-transform: uppercase;
	width: 100%;
}

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

a.alignnone img,
img.alignnone {
	margin-bottom: 12px;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

a.alignnone {
	display: inline-block;
}

a.alignleft img,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 12px 0;
}

a.alignright img,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.entry-content .wp-caption-text {
	font-size: 10px;
	margin: 0;
	text-align: center;
}

.gallery-caption,
.entry-content .gallery-caption {
	margin: 0 0 10px;
}

/* Titles
--------------------------------------------- */

.entry-title {
	font-size: 16px;
	line-height: 1;
	margin-bottom: 20px;
	margin-top: 20px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover,
.footer-widgets .entry-title a:hover {
	color: #c7d316;
	text-decoration: none;
}

.archive-title,
.widget-title,
.executive-pro-portfolio .entry-title {
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer-widgets .entry-title,
.sidebar .entry-title {
	font-size: 16px;
}

.footer-widgets .entry-title a,
.footer-widgets .widget-title {
	color: #fff;
}

/*
Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	width: 100%;
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
	top:0;
	left:0;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
 
    -webkit-transition-timing-function: cubic-bezier( 0.215, 0.610, 0.355, 1.000 );
    transition-timing-function: cubic-bezier( 0.215, 0.610, 0.355, 1.000 );
 
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.site-header--hidden{
    -webkit-transform: translateY( -150% )!important;
    -ms-transform: translateY( -150% )!important;
    transform: translateY( -150% ) !important;
}

.site-header--narrow{
	background-image: url('/wp-content/themes/harry-potter-gen/images/narrowbg.png');
    -webkit-transform: translateY( -80% );
    -ms-transform: translateY( -80% );
    transform: translateY( -80% );
}

.black { 
	background-image: url('/wp-content/themes/harry-potter-gen/images/black.png');
	}

/* Title Area
--------------------------------------------- */

.title-area {
	font-weight: 700;
	overflow: hidden;
	width:30%;
	min-width:200px;
	float:left;
	margin: 10px;
}

.site-title {
	font-size: 36px;
	line-height: 1.25;
	margin: 0 0 5px;
}

.site-title a,
.site-title a:hover {
	color: #222;
	display: block;
	padding: 28px 0 0;
	text-decoration: none;
}

/* Full width header, no widgets */

/*.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
}*/

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

/* Logo, hide text */

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

.header-image .site-title,
.header-image .site-title a {
 margin: 0;
 max-width: 299px;
 min-width: 165px;
 min-height: 165px;
 background-size: 100% !important;
 padding: 0;
 width: 100%;
}

.site-header .wrap {
	width: 100%;
	margin: 0 auto;
}

/* Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
	width:30%;
	max-width: 330px;
	min-wdith: 200px;
	margin: 50px 10px 10px 10px;
}

.site-header .widget {
	padding: 0px;
}

.site-header .search-form {
	float: right;
	width: 50%;
}

/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.nav-primary {
	width: 100%;
	transition: top 0.3s ease-in-out;
}
	

.nav-primary .wrap{
	 margin: 0 auto;
	 width: 100%;
	 text-align:center;
	 margin-top:180px;
	 background-image: url('/wp-content/themes/harry-potter-gen/images/black.png');
}

.genesis-nav-menu {
	clear: both;
	color: #666;
	font-size: 20px;
	line-height: 1.5;
	text-transform: uppercase;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: center;
}

.genesis-nav-menu a {
	color: #FFF;
	display: block;
	padding: 16px 20px;
	position: relative;
}

.genesis-nav-menu li:hover,
.genesis-nav-menu a:hover {
	color: #be0f18 !important;
	text-decoration: none;
}

.genesis-nav-menu .current-menu-item > a {
	color: #fff !important;
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 148px;
	z-index: 999;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #f5f5f5;
	border-top: none;
	color: #666;
	font-size: 12px;
	padding: 10px 18px;
	position: relative;
	width: 148px;
}

.genesis-nav-menu .sub-menu a:hover {
	background-color: #f5f5f5;
	color: #222;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -40px 0 0 147px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	list-style-type: none;
	padding: 16px 20px;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	background: url(images/icon-rss.png) no-repeat left;
	background-size: 12px 12px;
	margin-left: 12px;
	padding-left: 16px;
}

.genesis-nav-menu > .twitter > a {
	background: url(images/icon-twitter-nav.png) no-repeat left;
	background-size: 16px 16px;
	padding-left: 20px;
}

.genesis-nav-menu > .search {
	padding: 0;
}

.genesis-nav-menu .search-form {
	width: 200px;
}

/* Site Header Navigation
--------------------------------------------- */

.site-header .widget_nav_menu {
	padding: 0;
}

.site-header .genesis-nav-menu {
	width: auto;
}

.site-header .genesis-nav-menu a {
	padding: 0px 10px 0px 10px;
}

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .genesis-nav-menu .sub-menu a {
	padding: 10px 18px;
}

.site-header .sub-menu .sub-menu {
	margin-top: -40px;
}

/*
Content Area
---------------------------------------------------------------------------------------------------- */

#intro{
	height:900px;
	width:100%;
	background-image: url("/wp-content/themes/harry-potter-gen/images/panel1.jpg");
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	overflow:none;
}

#events-intro{
	height:800px;
	width:100%;
	background-image: url("/wp-content/themes/harry-potter-gen/images/panel-single.jpg");
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	overflow:none;
}

#single-intro{
	height:700px;
	width:100%;
	background-image: url("/wp-content/themes/harry-potter-gen/images/panel-single-v1.jpg");
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	overflow:none;
}

#single-intro-random{
	height:700px;
	width:100%;
	background-image: url("/wp-content/themes/harry-potter-gen/images/panel-single-v1.jpg");
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	overflow:none;
}

#single ul{
	margin: 50px;
}


#single li{
	list-style-type: circle !important;
}

#single .section_header{
	background:#216399;
}

#about_the_exhibition .section_header{
	background:#216399;
}

#adult .section_header{
	background:#216399;
}

#buy_tickets .section_header{
	background:#be0f18;
}

#family .section_header{
	background:#be0f18;
}

#membership_levels .section_header{
	background:#5999bd;
}

#frequently_asked_questions .section_header{
	background:#043d6c;
}

#stay_in_touch .section_header{
	background:#216399;
}


.section_header{
	width:100%;
	min-height: 150px;
	padding:10px;
}

.inner{
	max-width: 1080px;
	padding: 20px 5%;
	margin: 0 auto;
}

.section_content {
	max-width: 1080px;
	padding: 5% 12%;
	background: #fff;
	z-index: 100;
	margin-top:-30px;
	margin-left:auto;
	margin-right:auto;
	font-size: 20px;
	overflow: auto;
}

.full_video{
	padding:0px;
	width:100%;
	background:#000;
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
}

.full_video iframe, .full_video object, .full_video embed { 
	position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
}

.phoenix {
	z-index:100;
	position:relative;
	min-width:1500px;
	top:15%;
	left:25%;
	-webkit-animation-name: phoenix; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 5s; /* Safari 4.0 - 8.0 */
    animation-name: phoenix;
    animation-duration: 5s;
	overflow:none;
}

#membership_levels li {
	list-style-type: circle;
	margin-left: 80px;
}


/* Safari 4.0 - 8.0 */
@-webkit-keyframes phoenix {
    0%   {left:150%; top:150%;}
    100% {left:25%; top:15%;}
}

/* Standard syntax */
@keyframes phoenix {
    0%   {left:150%; top:150%;}
    100% {left:25%; top:15%;}
}


.intro_text{
	z-index:200;
	position:absolute;
	opacity:0;
	top:40%;
	left:9%;
	width:80%;
	text-align:center;
	-webkit-animation-name: fadein; 
	-webkit-animation-duration: 2s;
	-webkit-animation-delay: 4s;
	-moz-animation-name: fadein; 
	-moz-animation-duration: 2s;
	-moz-animation-delay: 4s;
	-ms-animation-name: fadein; 
	-ms-animation-duration: 2s;
	-ms-animation-delay: 4s;
	-o-animation-name: fadein; 
	-o-animation-duration: 2s;
	-o-animation-delay: 4s;	
	animation-name: fadein; 
	animation-duration: 2s;
	animation-delay: 4s;	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.event_text{
	z-index:200;
	position:absolute;
	opacity:0;
	top:30%;
	left:9%;
	width:80%;
	filter: drop-shadow(0 0 0.2rem black);
	text-align:center;
	-webkit-animation-name: fadein; 
	-webkit-animation-duration: 2s;
	-webkit-animation-delay: 0s;
	-moz-animation-name: fadein; 
	-moz-animation-duration: 2s;
	-moz-animation-delay: 0s;
	-ms-animation-name: fadein; 
	-ms-animation-duration: 2s;
	-ms-animation-delay: 0s;
	-o-animation-name: fadein; 
	-o-animation-duration: 2s;
	-o-animation-delay: 0s;	
	animation-name: fadein; 
	animation-duration: 2s;
	animation-delay: 0s;	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.poof{
    opacity:0;
}

.scroll_for_more{
}


.arrows {
	width: 60px;
	height: 72px;
	position: absolute;
	left: 50%;
	margin-left: -30px;
}

.arrows path {
	stroke: #FFF;
	fill: transparent;
	stroke-width: 2px;	
	animation: arrow 2s infinite;
	-webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
	animation-delay:-1s;
	-webkit-animation-delay:-1s; /* Safari and Chrome */
}

.arrows path.a2 {
	animation-delay:-0.5s;
	-webkit-animation-delay:-0.5s; /* Safari and Chrome */
}


#faq-members p, 
#faq-general p, 
#faq-visit p, 
#faq-group-visits p, 
#faq-troubleshooting p{
	margin:0px !important;
}

.arrow-r {
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #444;
	margin-right: 10px;
	margin-left: 3px;
	display: inline-block;
}

.arrow-d {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #444;
	margin-bottom: 6px;
	margin-right: 7px;
	display: inline-block;
}

/* Entries
--------------------------------------------- */

.ninesixty {
	padding-top:20px !important;
}

.entry-content{
	max-width:1050px;
	margin-left:auto;
	margin-right:auto;
}

.entry-header{
	max-width:1050px;
	margin-left:auto;
	margin-right:auto;
}

.entry {
}

.executive-pro-portfolio .entry,
.single-portfolio .entry {
	margin-bottom: 20px;
}

.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
	margin-bottom: 26px;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul,
.entry-content .wp-caption p {
	margin-bottom: 0;
}

.content .entry-header .entry-meta {
	background-color: #f8f8f8;
	clear: both;
	color: #777;
	font-size: 12px;
	line-height: 5;
	margin: 0 0 24px -60px;
	max-width: 600px;
	overflow: hidden;
	padding-left: 60px;
	text-transform: uppercase;
}

.content .entry-header .entry-meta a {
	color: #777;
	font-weight: 700;
}

.content .entry-header .entry-meta {
	margin-bottom: 24px;
}

.content .entry-header .entry-meta .entry-comments-link {
	background-color: #c7d316;
	color: #fff;
	float: right;
	font-size: 12px;
	padding: 0 20px;
	text-transform: uppercase;
}

.content .entry-header .entry-meta .entry-comments-link a {
	background: url(images/icon-comments.png) no-repeat left;
	background-size: 16px 16px;
	color: #fff;
	padding-left: 32px;
}

.entry-footer .entry-meta {
	border-top: 1px dotted #ddd;
	font-size: 14px;
	margin: 0;
	padding-top: 10px;
}

.entry-footer .entry-tags {
	background: url(images/icon-dot.png) no-repeat left;
	margin-left: 4px;
	padding-left: 10px;
}

#displaywrap {
	width:100%;
	float:left;
	margin-bottom:30px;
	margin-top:30px;
}

#tile{
	float: left;
	min-height: 1px;
	vertical-align: top;
	box-sizing: border-box;
	width:33.333%;
}

/* Pagination
--------------------------------------------- */

.archive-pagination {
	font-size: 14px;
	padding: 30px 0;
}

.entry .archive-pagination a {

}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #c7d316;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 4px;
	padding: 8px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #6bd5f1;
	text-decoration: none;
}

/* Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	font-size: 14px;
	margin-bottom: 40px;
	overflow: hidden;
}

.entry-comments .comment-author {
	font-weight: 700;
	margin: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
	margin: 30px;
	overflow: hidden;
}

.comment-list li.depth-1,
.ping-list li.depth-1 {
	margin: 30px 0;
}

.comment-list li li {
	margin-right: -1px;
}

.comment {
	border-right: none;
}

.comment-header,
.ping-list .comment-meta {
	background-color: #222;
	color: #fff;
	float: left;
	font-weight: 700;
	padding: 30px;
	width: 100%;
}

.comment-list cite,
.ping-list cite,
.says {
	display: inline-block;
}

.comment-header .comment-meta a,
.comment-metadata a {
	font-size: 12px;
	font-weight: 300;
	color: #bbb;
}

.comment-content {
	clear: both;
	padding: 48px;
}

.comment-content p,
.comment-header p.comment-meta {
	margin: 0;
}

.comment .avatar {
	margin-right: 10px;
}

.alt,
.even {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
}

.comment-reply {
	font-size: 14px;
	padding: 0 48px 48px;
}

.entry-pings .reply {
	display: none;
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	padding: 24px;
}

/*
Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-top: 6px;
	text-align: left;
}

.widget ol > li {
	background-image: none;
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget ul > li {
	text-indent: 0;
}

.widget ul > li {
	list-style-position: outside;
	padding: 0 0 0 16px;
}

.widget ol > li:last-child,
.widget ul > li:last-child {
	margin-bottom: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

.widget_calendar caption {
	font-size: 12px;
	font-style: italic;
	padding: 2px 6px 0 0;
	text-align: right;
}

/* Hover */
.pic {
	position: relative;
	width: 100%;
	max-width:450px;
	margin-bottom:20px;
	text-align:center;
  }
  
  .image {
	display: block;
	width: 100%;
	height: auto;
  }
  
  .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #F26522;
  }
  
  .pic:hover .overlay {
	opacity: 0.8;
  }
  
  .linktext {
	color: white;
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
  }


/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	display: inline;
	font-size: 14px;
	padding-bottom: 30px;
	display:none;
}

.sidebar p {
	margin-bottom: 16px;
}

.sidebar p:last-child,
.sidebar ul {
	margin-bottom: 0;
}

.sidebar li,
.sidebar .more-from-category a {
	background: url(images/icon-li.png) no-repeat 0 7px;
	background-size: 8px 8px;
	margin-bottom: 6px;
	padding: 0 0 6px 16px;
}

.sidebar .more-from-category {
	padding-top: 6px;
}

.sidebar .widget {
	margin-bottom: 0;
	padding: 30px 40px;
	word-wrap: break-word;
}

.sidebar .search-form {
	width: 100%;
}


/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	color: #FFF;
	clear: both;
	background: #216399;
}

.footer-widgets a{
	color:#FFF;
}
.footer-widgets .widget_text .textwidget {
    color: #FFF;
    font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 19px;
}

.footer-widgets .widget_text .textwidget h3 {
	color: #FFF;
    font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    line-height: 18px;
    text-transform: lowercase;
	margin: 0px 0px 0px 0px;
}

.footer-widgets .widget_text .textwidget h3 a {
	text-decoration: none;	
}

.footer-widgets .wrap {
	display: block;
	width: 1090px;
	height: auto;
	overflow: hidden;
	padding: 30px 0px 0px;
	margin: 0px auto;
	
}

.footer-widgets-1,
.footer-widgets-2 {
	border-right: 1px solid #CCCCCC;
	width: 33.3333%;
	height: auto;
    min-height: 200px;
	padding: 0px 15px 0px 15px;
}

.footer-widgets-3 {
	border-right: none;
	width: 33.3333%;
    height: auto;
	min-height: 200px;
	padding: 0px 15px 0px 15px;
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	float: left;
}

.footer-widgets .widget_text .widget-title {
    display: block;
}

.footer-widgets .widget-title {
    color: #ffce49;
    font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

#footer-links-topline {
    float: right;
    margin: -43px 0 10px;
}

/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	color: #FFF;
    font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    padding: 0 5px;
    text-align: right;
	background: #969696;
}

.site-footer .wrap {
	margin: 0 auto;
    max-width: 960px;	
}

.site-footer a {
	color: #FFF;
	text-decoration: none;
}

.site-footer p {
	margin: 0;
}

/*
Custom CSS
---------------------------------------------------------------------------------------------------- */

/* Single Post */

.single-post {
	display: block;
	width: 100%;
	height: auto;
}

.single-post .wrap {
	display: block;
	height: auto;
	overflow: hidden;
}


/* Videos */

.videos {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;	
}

.videos .wrap {
	display: block;
	width: 960px;
	height: auto;
	overflow: hidden;
	margin: 10px auto;
}

.videowrap {
	position: relative;
	padding-bottom: 35.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videowrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video {
	display: inline-block;
	width: 300px;
    height: 400px;
	overflow: hidden;
	float: left;
    background: #ffffff;;
    -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
	margin: 0px 10px 10px 10px;
}

.video .image {
	display: block;
	width: 300px;
	height: 150px;
	overflow: hidden;
	border-bottom: 5px solid #F26522;
}

.video .image img {
	display: block;
	width: 300px;
	height: 150px;
	overflow: hidden;
}

.video .info {
	display: block;
	width: 300px;
	height: 350px;
	overflow: hidden;
}

.video .info a.video-title {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 24px;
	line-height: 24px;
    color: #2d2d2d;
    text-align: center;
	text-decoration: none;
    padding: 20px 20px 10px 20px;
}

.video .info .text {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 12px;
    line-height: 12px;
	color: #4d4d4d;
	text-align: center;
	padding: 0px 20px 20px 20px;
}

/*
FAQ Section
---------------------------------------------------------------------------------------------------- */
.faq-heading {
	margin-top: 50px;
}

p.answer {
	padding-left: 50px;
}

table.answer {
	margin-left: 50px;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
}
/*
 *
Media Queries
---------------------------------------------------------------------------------------------------- */


@media only screen and (max-width: 1023px) {

/* Regular Styles */

}

@media only screen and (max-width: 800px) {

	#events-intro h1{
		font-size:2.0em !important;
	}
	
	
/* Footer */

.footer-widgets .wrap {
	width: 700px;
}

}

@media only screen and (max-width: 500px) {
	
/* Content */

#events-intro h1{
	font-size:2.0em;
}


p.answer{
	padding-left:0px;
}

table.answer{
	margin-left:0px;
}

th {
	font-size: 13px;
}



/* Header */

.sub-menu-toggle,
.menu-toggle {
	display: none;
	visibility: hidden;
}


.header-image .title-area, .header-image .site-title, .header-image .site-title a {
 min-height: 60px;
}



/* Footer */

.footer-widgets .wrap {
	width: 100%;
	overflow: hidden;
	padding: 25px 25px 50px 25px;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: none;
	width: 70%;
	text-align: left;
	margin: 0 auto;
	padding: 2% 0% 0% 0%;
	border-bottom: 1px solid #CCCCCC;
	border-right: none;
}

.footer-widgets-3 {
	float: none;
	width: 70%;
	text-align: left;
	margin: 0 auto;
	padding: 2% 0% 0% 0%;
}

}

@media only screen and (max-width: 440px) {

.site-header .widget-area{
	display:none;
}

}

@media only screen and (max-width: 385px) {

/* Content */

/* Header */

.header-image .title-area, .header-image .site-title, .header-image .site-title a {
 min-height: 60px;
}

/* Footer */

.footer-widgets .wrap {
	width: 100%;
	overflow: hidden;
	padding: 25px 25px 50px 25px;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: none;
	width: 100%;
	text-align: left;
	margin: 0% 0% 2% 0%;
	padding: 2% 0% 0% 0%;
	border-bottom: 1px solid #CCCCCC;
	border-right: none;
}

.footer-widgets-3 {
	float: none;
	width: 100%;
	text-align: left;
	margin: 0% 0% 2% 0%;
	padding: 2% 0% 0% 0%;
}

.section_content {
	font-size:18px;
}

}

@media only screen and (max-width: 320px) {


/* Header */

.header-image .title-area, .header-image .site-title, .header-image .site-title a {
 min-height: 50px;
 min-width:150px;
}

.nav-primary .wrap{
	margin-top:60px;
}

.title-area{
	width:150px !important;
}

/* Footer */

.footer-widgets .wrap {
	width: 100%;
	overflow: hidden;
	padding: 25px 25px 50px 25px;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: none;
	width: 100%;
	text-align: left;
	margin: 0% 0% 2% 0%;
	padding: 2% 0% 0% 0%;
	border-bottom: 1px solid #CCCCCC;
	border-right: none;
}

.footer-widgets-3 {
	float: none;
	width: 100%;
	text-align: left;
	margin: 0% 0% 2% 0%;
	padding: 2% 0% 0% 0%;
}

}

@media screen and (orientation:portrait) 
and (min-height: 1080px)
{
	
.intro_text{
	top:20% !important;
	width:80%;
	left:10%;
}	


.event_text{
	top:15% !important;
	width:80%;
	left:10%;
}	
	
}



@media only screen
and (max-width:960px)
and (max-height:600px) {
	
.intro_text{
	top:50%;
	width:80%;
	left:10%;
}

.event_text{
	top:50%;
	width:80%;
	left:10%;
}
	
	
}

@media only screen
and (max-height:450px) {

h1{
	font-size:2.5em !important;
}

#events-intro h1{
	font-size:2.0em;
}

.intro_text{
	top: 60% !important;
	width: 90% !important;
	left: 5% !important;
}

.event_text{
	top: 60% !important;
	width: 90% !important;
	left: 5% !important;
}
}


@media only screen
and (max-width:750px)
and (max-height:600px) {
	
h1{
	font-size:3.0em !important;
}

#events-intro h1{
	font-size:2.5em;
}

#intro{
	height:800px;
}

.phoenix {
	z-index:100;
	position:relative;
	min-width:1300px;
	top:8.5%;
	left:5%;
	-webkit-animation-name: phoenix; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 5s; /* Safari 4.0 - 8.0 */
    animation-name: phoenix;
    animation-duration: 5s;
	overflow:none;
}



/* Safari 4.0 - 8.0 */
@-webkit-keyframes phoenix {
    0%   {left:150%; top:150%;}
    100% {left:5%; top:8.5%;}
}

/* Standard syntax */
@keyframes phoenix {
    0%   {left:150%; top:150%;}
    100% {left:5%; top:8.5%;}
}


.intro_text{
	top:50%;
	width:80%;
	left:10%;
}

.event_text{
	top:50%;
	width:80%;
	left:10%;
}
	
	
	
}


@media only screen and (max-width: 500px) {

.events-img{
	width: 100%;
	margin: 20px 0px 20px 0px;
}

.site-header .widget-area{
	display:none;
}

h1{
	font-size:2.5em !important;
}

#events-intro h1{
	font-size:2.0em;
}

#intro{
	height:600px;
}

.phoenix {
	z-index:100;
	position:relative;
	min-width:1000px;
	top:15%;
	left:5%;
	-webkit-animation-name: phoenix; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 5s; /* Safari 4.0 - 8.0 */
    animation-name: phoenix;
    animation-duration: 5s;
	overflow:none;
}



/* Safari 4.0 - 8.0 */
@-webkit-keyframes phoenix {
    0%   {left:150%; top:150%;}
    100% {left:5%; top:15%;}
}

/* Standard syntax */
@keyframes phoenix {
    0%   {left:150%; top:150%;}
    100% {left:5%; top:15%;}
}


.intro_text{
	top:30%;
}

.event_text{
	top:30%;
}


}




/* Regular Styles */
	
}

/* Responsive Navigation
---------------------------------------------------------------------------------------------------- */

/* Standard Navigation
--------------------------------------------- */


/* Navigation toggles
--------------------------------------------- */

.sub-menu-toggle,
.menu-toggle {
	display: none;
	visibility: hidden;
}

/* Navigation toggles - Ensure Menu Displays when Scaled Up
--------------------------------------------- */

@media only screen and (min-width: 600px) {
	

.sub-menu-toggle,
.menu-toggle {
	display: none;
	visibility: hidden;
}
	
	nav {
		display: block !important;
	}
}

/* Background Toggles
--------------------------------------------- */
@media only screen and (max-width: 13px) {


}

/* Navigation toggles - Mobile (Change max width as you see fit)
--------------------------------------------- */
@media only screen and (max-width: 980px) {



.site-header .genesis-nav-menu a {
	padding: 0px 10px 0px;
}

}


@media only screen and (max-width: 860px) {

.site-header--narrow{
    -webkit-transform: translateY( -70% );
    -ms-transform: translateY( -70% );
    transform: translateY( -70% );
}

.header-image .site-title, .header-image .site-title a{
	min-height:140px;
}

.nav-primary .wrap {
	margin-top:155px;
}

.genesis-nav-menu{
	font-size:15px;
}

.site-header .genesis-nav-menu a {
	padding: 0px 10px 0px;
}


@media only screen and (max-width: 660px) {
	
	.site-header--narrow{
    -webkit-transform: translateY( -5% );
    -ms-transform: translateY( -5% );
    transform: translateY( -5% );
}

#events-intro h1{
	font-size:2.5em;
}

	
	
	.header-image .site-title, .header-image .site-title a{
		min-height:115px;
	}
	
	.site-header .widget-area{
		width:170px;
		max-height:60px;
	}
	
	
	.site-inner{
		background-size: cover;
	}
	.site-header .genesis-nav-menu a{
		padding: 10px 18px 0px;
	}
	
	.nav-primary .wrap {
		margin:60px auto 0px auto;
		max-width:800px;
		float:none;
	}
	
	.site-header .genesis-nav-menu{
		float:none;
		width:auto;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: block;
		font-family: "Times New Roman", Times, serif;
		font-size: 20px;
		font-size: 3rem;
		font-weight: 700;
		margin: 30px auto 0px auto;
		overflow: hidden;
		padding: 20px;
		padding:  5px 5px;
		text-align: center;
		visibility: visible;
	}

	button.menu-toggle,
	button.sub-menu-toggle {
		background-color: transparent;
		color: #fff;
	}

	.sub-menu-toggle {
		padding: 18px;
		padding: 1.8rem;
		position: absolute;
		right: 0;
		top: 0;
	}

	.menu-toggle:before {
		content: "\2261";
	}

	.menu-toggle.activated:before {
		content: "\2261";
	}

	.sub-menu-toggle:before {
		content: "+";
	}

	.sub-menu-toggle.activated:before {
		content: "-";
	}

	nav {
		display: none;
		position: relative;
	}
	

	.nav-primary .genesis-nav-menu .menu-item {
		display: block;
		position: relative;
		text-align: center;
	}

	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu .sub-menu {
		clear: both;
		display: none;
		opacity: 1;
		position: static;
		width: 100%;
	}

	.genesis-nav-menu .sub-menu a {
		border-left: 0;
		position: relative;
		width: auto;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: 0;
	}

	.genesis-nav-menu .sub-menu .sub-menu a {
		background-color: #000;
		padding-left: 30px;
	}

	.genesis-nav-menu .sub-menu .sub-menu .sub-menu a {
		background-color: #000;
		padding-left: 40px;
	}

	.nav-primary a:hover,
	.nav-primary .current-menu-item > a {
		color: #333;
	}

}
