/*
Theme Name: i-am-alannah-hill
Text Domain: i-am-alannah-hill
Tags:

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Inputs and buttons
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
13.0 - New Styles
14.0 - Mobile Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust 
	 orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	border: 12px solid #000;	
	background: #fff;
	padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}
img{
	max-width: 100%;
	height: auto;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Montserrat', sans-serif;	
	font-size: 12px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	text-transform: uppercase;
}
h1{
	font-size: 16px;
}

p {
	color: #808080;
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: bold;
}
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: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
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;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Inputs and buttons
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input.large,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: none;
}
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;
}
input.large,
#gform_3 input[type="email"],
#gform_3 textarea{
	width: 100%;
	float: left;
	margin: 2% 0;
}


textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 98%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #000000;
}
a:visited {
	color: #000000;
}
a:hover,
a:focus,
a:active {
	color: #333;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: inline-block;
	text-align: center;
	margin-top: 0;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 0;
	width: 100%;
	text-transform: uppercase;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	width: 100%;
}
.main-navigation li {
	display: inline-block;
	position: relative;
	text-align: center;	
	width: 16%;	
	margin: 0;
}
.main-navigation a {
	display: block;
	text-decoration: none;
	padding: 0;	
	margin: 0 12%;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	display: block;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
.main-navigation li.btn-shop{
	width: 10%;
}
.main-navigation li.btn-shop a{
	border: 1px solid #ff7386;
	color: #ff7386;
}

/* Small menu */
.menu-toggle {
	cursor: pointer;
	display: none;
}

.site-main p {
	font-size: 14px;
}

.site-main h2 {
	font-size: 12px;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.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-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 */
}

/*--------------------------------------------------------------
7.0 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: 0 auto;
}

/*--------------------------------------------------------------
8.0 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;
}

/*--------------------------------------------------------------
9.0 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;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
#page{
	min-height: 100%;
	padding: 0 6%;
	border-top: none;
}
.site-header,
.site-content,
.site-footer{
    width: 100%;
    text-align: center;
}

body.single .site-content{
	margin-left: 20%;
	margin-right: 20%;
	width: 60%;
}

body.single .main-navigation{
	border-bottom: none;
}

.site-header{
	padding-top: 1%; 
}
.site-main{
	margin: 0 auto;
	z-index: 1;
}

.site-header{
	border-top: 12px solid #000;
	border-right: 12px solid #000;
	border-left: 12px solid #000;

	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	margin: 0 auto;
	padding-top: 20px;
	background-color: #FFF;
	z-index: 110;
}

body.page-template-template-poem-php .site-content,
body.single .site-content{
	margin-top: 5%;	
}


body.page-template-template-home-php #logo{
	padding-bottom: 0.5%;
}

body.page-template-template-home-php .site-content{
	padding-top: 15%;
}

body.page-template-template-contact-php .site-footer{
	padding-top: 200px;
}

body.page-template-default article{
	width: 50%;
	margin-left: 25%;
	margin-right: 25%;
}
body.category .nav-links,
body.blog .nav-links{
	display: none;
}


article.contact{
	text-transform: uppercase;
	text-align: left;
	padding-left: 15%;
    padding-right: 0;
}

article.contact:last-child{
	padding-right: 15%;
    padding-left: 0;
}
article.contact .sub-heading{
	font-size: 13px;
	color: #808080;
}


.site-footer{
	clear: both;
	margin-top: 100px;
}

.site-info p,
.site-info a{
	font-size: 11px;
	color: #CCC;
	text-decoration: none;
	text-transform: uppercase;
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 1%;
	margin-right: 1%;
}

.grid-image img{
    width: 278px;
    height: 211px;
}

#load-more{
	clear: both;
}

nav.paging-navigation{
	clear: both;
	float: left;
	width: 100%;
}
nav.post-navigation{
	display: block;
}
.nav-previous,
.nav-next{
	position: fixed;
	top: 50%;
	text-align: left;
}

.nav-previous a,
.nav-next a{
	background-color: #000;
	color: #FFF;
	padding: 10px 20px;
	text-transform: uppercase;
	text-decoration: none;
	width: 30px;
	height: 12px;		
}
.nav-previous{
	left: 12px;
}
.nav-next{
	right: 12px;
}

.nav-previous a{
	background: url('images/post_arrow_left.png') center left no-repeat #000;
}
.nav-next a{
	background: url('images/post_arrow_right.png') center right no-repeat #000;
}


/* navigation states
----------------------------------------------------------------------------------------------------*/
.menu-item a{
	border-bottom: 1px solid #CCC;
}
.menu-item a:hover,
.current-menu-item a{
	border-bottom: 1px solid #000;
}


.current-menu-item:after{
	content: "";
	position: absolute;
	top: 22px;
	left: 48%;
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #000;
}
/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/
.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.grid_1 {
	width:6.333%;
}

.grid_2 {
	width:14.667%;
}

.grid_3 {
	width:23.0%;
}

.grid_4 {
	width:31.333%;
}

.grid_5 {
	width:39.667%;
}

.grid_6 {
	width:48.0%;
}

.grid_7 {
	width:56.333%;
}

.grid_8 {
	width:64.667%;
}

.grid_9 {
	width:73.0%;
}

.grid_10 {
	width:81.333%;
}

.grid_11 {
	width:89.667%;
}

.grid_12 {
	width:98.0%;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 0.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-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;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.site-main .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-main .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.site-main .gallery dd {
	margin: 0;
}
.site-main .gallery-columns-4 .gallery-item {
}
.site-main .gallery-columns-4 .gallery-item img {
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
13.0 New Styles
--------------------------------------------------------------*/

#logo{
	padding: 10px 0 20px 0;
}

.grid .grid-sizer {
    width: 278px;
}
.grid .gutter-sizer {
    width: 50px;
}

.load-more-box,
.grid-box{
	width: 278px;
	margin-bottom: 1%;
}
.load-more-box{
	cursor: pointer;
	border: 2px solid #000;
}

.grid-box h2{
	padding: 2% 0;
}
	.grid-box h2:after{
		content: "";
		display: block;
		width: 20%;
		height: 1px;
		background-color: #000;
		position: relative;
		margin: 2% auto 1% auto;
	}

	.grid-box h2 a{
	    text-decoration: none;
	}

.grid-social {
	display: none;
	width: 278px;
	min-height: 211px;
	background: url('images/grid-social.png') center center;
	position: absolute;
}

	.grid-social a {
		text-decoration: none;
	}

	.grid-social .addthis_toolbox {
		margin-top: 100px;
	}

.content-share {
	margin: 5px 0 15px 0;
	position: relative;
	top: 5px;
}
	.content-share a {
		text-decoration: none;
	}

.sub-heading p{
	font-size: 10px;
	text-transform: uppercase;
}
.archive .sub-heading a,
.blog .sub-heading a{
	text-decoration: none;
}


article.contact a{
	color: #808080;
	font-size: 13px;
	text-transform: none;
	text-decoration: none;
}

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

/* Cycle SlideShow */
.slideshow {
	max-width: 662px;
	height: 502px;
	margin: 0 auto;
	
}
.slideshow .slide {
	width: 100%;
	min-height: 500px;
	height: 0px;
	position: relative;
	padding-top: 0px;
	padding-bottom: 50%;
    overflow: hidden;
}

.slideshow .slide .image {
	display: block;
	background-position: center center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: transform 0.3s ease-in-out 0s;
}
.slideshow .slide .image:hover{
	transform:scale(1.1);
}
.slideshow .slide .image .play {
	display: block;
	width: 100%;
	height: 100%;
	background: url(images/play.png) no-repeat;
	background-position: center;
}
.slideshow .slide .image.video{
	padding-top: 0;
	transform:inherit;

}
.slideshow .slide .image .play.playing {
	background-position: -9999px;
	background-color: rgba(0, 0, 0, .75);
}

.youtube-embed,
.vimeo-embed{
    position: relative;
    padding-top: 0px;
    /* padding-bottom: 70.5%; */
    height: 500px;
    overflow: hidden;
}
 
.youtube-embed iframe,
.youtube-embed object,
.youtube-embed embed,
.vimeo-embed iframe,
.vimeo-embed object,
.vimeo-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pager { position:relative; text-align: center; width: 100%; z-index: 1; top: 10px; overflow: hidden; font-family:  Arial; font-size: 14px; line-height: 18px; color: #333; margin-bottom: 20px; }
.pager span { font-size: 50px; width: 16px; margin: 0 5px; height: 16px; display: inline-block; color: #DDD; z-index: 1; }
.pager span.cycle-pager-active { color: #000;}
.pager > * { cursor: pointer;}


/* Homepage Slideshow */
.splash-home{
	max-width: 1300px;
	max-height: 1300px;
	margin: 0 auto;
	text-align: center;
}
.splash-home img{
	display: none;
}
.splash-home img:nth-child(1){
	z-index: 92 !important;
	padding-top: 100px;
}
.splash-home img:nth-child(2){
	z-index: 93 !important;
}
.splash-home img:nth-child(3){
	z-index: 94 !important;
}
.splash-home img:nth-child(4){
	z-index: 95 !important;
}
.splash-home img:nth-child(5){
	z-index: 96 !important;
}
.splash-home img:nth-child(6){
	z-index: 97 !important;
}
.splash-home img:nth-child(7){
	z-index: 98 !important;
}
.splash-home img:nth-child(8){
	z-index: 99 !important;
}

#skip{
	cursor: pointer;
	display: none;
	position: absolute;
	left: 49%;
	bottom: 10%;
	z-index: 100;
}


/* Poem */
#poem {
	text-align: center;
	max-width: 450px;
	margin: 0 auto;
}

#poem-wrap {
	min-height: 600px;
	display: block;
	position: relative;
}

#poem-wrap #canvas {
	border: none;
	cursor: crosshair;
	width: 100%;
	height: 100%;
	float: left;
}

#poem-wrap #instruct {
	text-align: center;
	background-color: #FFF;
	position: absolute;
	margin: 0 auto;
	width: 100%;
}

#poem-wrap #instruct p {
	color: black;
	margin: 10px;
}

/* Fading bars loading animation... maybe move to another stylesheet... */
#fadingBarsG {
	position:absolute;
	width:240px;
	height:29px
}

.fadingBarsG {
	position:absolute;
	top:0;
	background-color:#000000;
	width:29px;
	height:29px;
	-moz-animation-name:bounce_fadingBarsG;
	-moz-animation-duration:1.3s;
	-moz-animation-iteration-count:infinite;
	-moz-animation-direction:linear;
	-moz-transform:scale(.3);
	-webkit-animation-name:bounce_fadingBarsG;
	-webkit-animation-duration:1.3s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-direction:linear;
	-webkit-transform:scale(.3);
	-ms-animation-name:bounce_fadingBarsG;
	-ms-animation-duration:1.3s;
	-ms-animation-iteration-count:infinite;
	-ms-animation-direction:linear;
	-ms-transform:scale(.3);
	-o-animation-name:bounce_fadingBarsG;
	-o-animation-duration:1.3s;
	-o-animation-iteration-count:infinite;
	-o-animation-direction:linear;
	-o-transform:scale(.3);
	animation-name:bounce_fadingBarsG;
	animation-duration:1.3s;
	animation-iteration-count:infinite;
	animation-direction:linear;
	transform:scale(.3);
}

#fadingBarsG_1 {
	left:0;
	-moz-animation-delay:0.52s;
	-webkit-animation-delay:0.52s;
	-ms-animation-delay:0.52s;
	-o-animation-delay:0.52s;
	animation-delay:0.52s;
}

#fadingBarsG_2 {
	left:30px;
	-moz-animation-delay:0.65s;
	-webkit-animation-delay:0.65s;
	-ms-animation-delay:0.65s;
	-o-animation-delay:0.65s;
	animation-delay:0.65s;
}

#fadingBarsG_3 {
	left:60px;
	-moz-animation-delay:0.78s;
	-webkit-animation-delay:0.78s;
	-ms-animation-delay:0.78s;
	-o-animation-delay:0.78s;
	animation-delay:0.78s;
}

#fadingBarsG_4 {
	left:90px;
	-moz-animation-delay:0.91s;
	-webkit-animation-delay:0.91s;
	-ms-animation-delay:0.91s;
	-o-animation-delay:0.91s;
	animation-delay:0.91s;
}

#fadingBarsG_5 {
	left:120px;
	-moz-animation-delay:1.04s;
	-webkit-animation-delay:1.04s;
	-ms-animation-delay:1.04s;
	-o-animation-delay:1.04s;
	animation-delay:1.04s;
}

#fadingBarsG_6 {
	left:150px;
	-moz-animation-delay:1.17s;
	-webkit-animation-delay:1.17s;
	-ms-animation-delay:1.17s;
	-o-animation-delay:1.17s;
	animation-delay:1.17s;
}

#fadingBarsG_7 {
	left:180px;
	-moz-animation-delay:1.3s;
	-webkit-animation-delay:1.3s;
	-ms-animation-delay:1.3s;
	-o-animation-delay:1.3s;
	animation-delay:1.3s;
}

#fadingBarsG_8 {
	left:210px;
	-moz-animation-delay:1.43s;
	-webkit-animation-delay:1.43s;
	-ms-animation-delay:1.43s;
	-o-animation-delay:1.43s;
	animation-delay:1.43s;
}

@-moz-keyframes bounce_fadingBarsG {
0% {
	-moz-transform:scale(1);
		background-color:#000000;
	}

	100% {
	-moz-transform:scale(.3);
		background-color:#FFFFFF;
	}
}

@-webkit-keyframes bounce_fadingBarsG {
0% {
	-webkit-transform:scale(1);
		background-color:#000000;
	}

	100% {
	-webkit-transform:scale(.3);
		background-color:#FFFFFF;
	}
}

@-ms-keyframes bounce_fadingBarsG {
0% {
	-ms-transform:scale(1);
		background-color:#000000;
	}

	100% {
	-ms-transform:scale(.3);
		background-color:#FFFFFF;
	}
}

@-o-keyframes bounce_fadingBarsG {
0% {
	-o-transform:scale(1);
	background-color:#000000;
	}

	100% {
	-o-transform:scale(.3);
		background-color:#FFFFFF;
	}
}

@keyframes bounce_fadingBarsG {
0% {
	transform:scale(1);
		background-color:#000000;
	}

	100% {
	transform:scale(.3);
	background-color:#FFFFFF;
	}
}
/*--------------------------------------------------------------
13.1 Form Styles
--------------------------------------------------------------*/
label{
	color: #808080;
}

.gform_wrapper ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
#social-nav-container{
	margin: 0 auto;
	width: 760px;
}
#social-nav,
.gform_wrapper{
	position: relative;
	margin-right: 2%;
	margin-bottom: 10px;	
	height: 25px;	
}

#social-nav{
	float:left;	
	border: 1px solid #aeaeae;	
	width: 195px;
	line-height: 22px;
	padding: 0 4%;
	margin-top: 15px;
}
#social-nav ul{
	list-style: none;
}
#social-nav h4,
#social-nav li{
	float: left;
	display: inline-block;
}

#social-nav h4{
	font-size: 10px;
	color: #afafaf;
	margin-right: 10%;
}
#social-nav li{
	width: 15%;
	margin: 0 5%;
}
#social-nav li:last-child{
	margin-right: 0;
}
#social-nav img{
	width: auto;
	max-height: 12px;
	padding-top: 2px;
}
/* 
Nav form containers
*/
#social-nav-container .gform_wrapper{
	float: right;
	position: relative;
	width: 195px;	
	margin-top: 15px;	
	margin-right: 0;
	margin-left: 2%;
	text-align: right;
}
#social-nav-container .gform_body,
#social-nav-container .gform_footer{
	float:left;
	width: 75%;
	margin: 0;
	text-align: left;
}
#social-nav-container .gform_footer{
	width: 25%;
}

/* 
The Small Contact Page Form 
*/
#gform_2 input,
#social-nav-container .gform_wrapper input{
	border: 1px solid #aeaeae;	
	background-color: #FFF;
	color: #cccccc;	
	font-size: 9px;
	line-height: 12px;
	text-transform: uppercase;
	border-radius: 0;
	padding: 0 3%;
	width: 100%;
	height: 23px;
}
#social-nav-container .gform_button{
	cursor: pointer;
	border-left: none !important;
	font-size: 10px;
	padding: 3px 10px;
	color: #afafaf;
}
.gform_confirmation_message h1{
	font-family: 'Playfair Display', serif;	
	font-weight: bold;
	font-weight: 700;

	font-size: 50px;
	line-height: 58px;
}
.gform_confirmation_message p{
	text-transform: none;
}


/* 
	Validation errors
*/
#gform_2 .validation_error,
#social-nav-container .gform_wrapper .validation_error{
	display: none;
	position: absolute;
	right: 0;
	top: 0;
}
 .validation_error,
.validation_message{
	color: red;
	font-size: 10px;
	text-transform: uppercase;	
}

#social-nav-container .gform_wrapper .gfield_description.validation_message{
	position: absolute;
	right: -135px;
	top: 4px;
}
#gform_2 .gfield_description.validation_message{
	position: absolute;
	left: 0;
	right: 0;

	margin-left: auto;
	margin-right: auto;

	top: 35px;
	color: #000;
}


/* 
The Popup in the homepage
*/
.close-button{
	position: absolute;
	top: 5px;
	right: 5px;

	font-family: 'Times New Roman', serif;
	font-size: 12px;
	font-weight: normal;

	color: #000;
	text-decoration: underline;
	text-transform: uppercase;
}
.sign-up-form{
	display: none;
	position: absolute;
	left: 0;
	right: 0;

	margin-left: auto;
	margin-right: auto;

	padding: 40px 0;

	width: 600px;
	height: auto;
	border: 5px solid #000;
	z-index: 101;
	background: url('images/sign_me_up_bg.jpg') no-repeat 0 0 #FFF;

}
.sign-up-form h1{
	font-family: 'Playfair Display', serif;
	font-size: 78px;
	font-weight: bolder;
	font-weight: 900;
	line-height: 82px;
	color: #000000;
}
.sign-up-form h2{
	color: #000000;
}
.sign-up-form .gform_body,
.sign-up-form .gform_footer{
	float: left;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.sign-up-form .gform_wrapper{
	margin-right: 0;
}

#gform_2{
	margin: 5% auto;
	text-align: center;
}
#gform_2 input{
	color: #808080;
	font-size: 16px;
	width: 55%;
	height: 31px;
}
#gform_2 input.gform_image_button{
	background: none;
	width: 350px;
	height: 52px;
	border: none;
	padding: 0;
	margin: 20px 0;
}



#gform_3 .gform_footer{
	margin-top: 10px;
}

#gform_5 input,
#gform_5 textarea{
	text-transform: uppercase;
}

#gform_5 .gchoice_3_1 input{
	margin-top: 15px;
	float: left;
}
#gform_5 .gchoice_3_1 label {
	float: left;
	margin-left: 10px;
	margin-top: 12px;
	text-transform: none;
	font-size: 13px;
	line-height: 18px;
	width: 90%;
	max-width: 405px;
}
#gform_5 #field_5_3 .gfield_description{
	float: left;
	width: 100%;
	color: #808080;
	font-size: 12px;
	text-transform: none;
	padding: 15px 0 25px 0;
}
#gform_5 .gform_footer{
	margin-top: 20px;
	float: right;
}
#gform_5 .gform_footer input{
	margin-right: 6px;
}
/*--------------------------------------------------------------
14.0 Mobile styles
--------------------------------------------------------------*/
@media screen and (min-width: 1280px) and (max-width: 1600px) {
	.main-navigation{
		padding-left: 5%;
		padding-right: 5%;
	}	
	.main-navigation li{
		width: 16%;
	}

	.main-navigation a{
		margin: 0 6%;
	}

}
@media screen and (min-width: 980px) and (max-width: 1280px) {
	.main-navigation{
		padding-left: 2%;
		padding-right: 2%;
	}	
	.main-navigation li{
		width: 19%;
	}
	.main-navigation a{
		margin: 0 3%;
	}	
	article.contact{
		padding-left: 10%;
	}

	article.contact:last-child{
		padding-right: 10%;
	}
}

@media screen and (max-width: 980px) {
	.site-header{
		padding-top: 10px;
	}
	.main-navigation{
		padding-left: 0;
		padding-right: 0;
	}
	.main-navigation li{
		clear: both;
		display: block;
		width: auto;
		margin: 1% auto;
		padding: 0;
	}
	.main-navigation a{
		font-size: 18px;
		border-bottom: none;
	}
	.current-menu-item:after{
		display: none;
	}
	.menu-item a:hover,
	.current-menu-item a{
		border-bottom: none;		
		color: #848484;
	}
	.gform_wrapper .gfield_description.validation_message{
		position: relative;
		font-size: 10px;
		left: 0;
	}

	#social-nav,
	#social-nav-container .gform_wrapper{
		height: auto;	
	}
	#social-nav{
		padding: 1% 20%;
	}
	#social-nav li {
		width: 21%;
	    margin: 0 2%;
	}
	#social-nav h4{
		font-size: 16px;
		line-height: 24px;
		margin-right: 0;
	}
	#social-nav img{
		display: inline-block;
		vertical-align: middle;
		width: auto;
		max-height: 15px;
		padding: 0;
	}
	#social-nav-container .gform_wrapper input{
		font-size: 16px;
		height: 36px;
	}

	#social-nav-container,
	.menu-main-menu-container{
		display: none;
	}

	.menu-toggle,
	.menu-toggle.close{	
		text-indent: -9999px;
		padding: 20px 0 25px;	
		border-bottom: 1px solid #CCC;	
	}
	.menu-toggle{
		position: relative;
		background: url('images/mobile_menu_icon.png') 25px center no-repeat;
		height: 90px;
		padding: 20px 0;
	}
	.menu-toggle.close{
		background: url('images/mobile_close_icon.png') top center no-repeat;		
		height: 24px;
		margin-top: 20px;
	}
	.menu-toggle a{
		margin: 0;
	}
	.menu-toggle a img#logo{
		position: absolute;
		top: 22px;
		left: 12%;		
		display: block;
		padding: 0 20px;
	}
	.menu-toggle.close a img#logo{
		display: none;
	}


	#social-nav-container.toggled,
	.menu-main-menu-container.toggled,
	.menu-toggle{
		display: block;
	}

	#social-nav-container,
	#social-nav-container .gform_wrapper,
	#social-nav{
		float: left;
		width: 94%;
		margin: 10px 3%;
	}

	#social-nav-container .gform_wrapper .gfield_description.validation_message{
		top: 38px;
	}

	#gform_2 .gfield_description.validation_message{
		left: 0;
	}



	body.single .site-header:after{
		height: 0;
	}
	body.page-template-default article{
		width: 74%;
		margin-left: 13%;
		margin-right: 13%;
	}

	.slideshow{
		height: 400px;
	}
	.slideshow .slide {
		min-height: 400px;
	}
	article.contact{
		float: left;
		width: 100%;
		padding: 0 !important;
		margin: 20px 0 !important;
	}	
    article.contact .grid_1,
	article.contact .grid_12{
		padding: 0 !important;
		margin: 0 !important;		
	}



}
@media screen and (max-width: 716px) {
	.sign-up-form{
		position: absolute;
		width: 400px;
		max-width: 400px;
	}
	.sign-up-form h1{
		font-size: 54px;
		line-height: 58px;
		min-height: 100% !important;
		height: auto !important;
	}
	#gform_2 input{
		width: 80%;
	}	
}

@media screen and (max-width: 480px) {
	body,
	.site-header{
		border: none;
	}
	#logo{
		padding: 5%;
	}
	.post-navigation .nav-previous,
	.post-navigation .nav-next{
		position: relative;
		width: 50%;
		z-index: 100;
	}
	.main-navigation{
		padding-bottom: 0;
	}
	.nav-previous,
	.nav-next{
		position: relative;
		bottom: 0;
	}
	.nav-previous{
		left: 0;
	}
	.nav-next{
		right: 0;
	}
	.nav-previous a,
	.nav-next a{
		line-height: 48px;
	}
	.nav-previous a {
	    border-left: 10px solid #000000;
	}	
	.nav-next a {
	    border-right: 10px solid #000000;
	}

	#poem-wrap{
		display: none;
	}
	.youtube-embed,
	.vimeo-embed{
		height: 390px;
	}

	.sign-up-form{
		width: 360px;
		max-width: 360px;
	}
	.sign-up-form h1{
		font-size: 42px;
		line-height: 48px;
	}
	#gform_2 input.gform_image_button{
		width: 280px;
		height: 42px;
	}
}

@media screen and (max-width: 380px){
	.nav-previous a,
	.nav-next a{
		font-size: 12px;
	}
	body.single .site-content{
    	margin-left: 10%;
    	margin-right: 10%;		
		width: 80%;
	}
	.sign-up-form{
		width: 300px;
		max-width: 300px;
	}
	#gform_2 input.gform_image_button{
		width: 240px;
		height: 36px;
	}
	.menu-toggle a img#logo{
		width: 90%;
	}
}