/*
Theme Name: Cano
Theme URI: http://underscores.me/
Author: Automattic
Author URI: http://automattic.com
Description: Custom Theme for Robinson Cano
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cano
Domain Path: /languages/
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.

 Cano is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
	3.1 - Links
4.0 - Forms
5.0 - Header, Hero/Featured & Navigation
	5.1 - Hero & Featured Section
	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
	12.1 - Captions
	12.2 - Galleries
13.0 - Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
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 after 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 {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
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;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #323232;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	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;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
3.1 Links
--------------------------------------------------------------*/
a,
a:visited {
	color: #0c2c56;
	text-decoration: none;
}
a:hover {
	color: #000;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
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 */
}
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);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	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="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[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: 10px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding: 10px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/* Button Like Link */
#submit,
.cano-button,
.buy-button,
.cano-button:visited,
.cano-button:hover,
.cano-button:active {
	background: #355150;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 15px 17px rgba(255, 255, 255, 0.3), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba( 255, 255, 255, 0.9 );
	display: inline-block;
	font-family: 'Roboto Slab', serif;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 400;
	margin: 1em 0;
	padding: 0.5em 1.5em;
	text-shadow: 0px 4px 0px rgba( 0, 0, 0, 0.6 );
}
#submit:hover,
.cano-button:hover,
.buy-button:hover {
	color: #fff;
	opacity: 0.8;
}
.buy-button {
	font-size: 16px;
	font-size: 1.6rem;
	margin: 0;
}

/*--------------------------------------------------------------
5.0 Header, Hero & Navigation
--------------------------------------------------------------*/
.site {
	position: relative;
}
.site-header {
	background: rgba( 0, 0, 0, 1 );
	min-height: 77px;
	padding: 0.3em;
	position: fixed;
	z-index: 99999;
	width: 100%;
}
.site-header-wrap,
.site-info,
.featured-wrap,
.site-main-wrap,
.site-hero .entry-header {
	margin: 0 auto;
	max-width: 1000px;
}
.site-hero .entry-header {
	position: relative;
}
.site-branding {
	float: left;
	width: 14.4%;
}
.navigation-social-wrap {
	display: block;
	float: right;
	margin-top: 1em;
	width: 83%;
}
.site-description {
	display: none;
}
.site-title, 
.site-title a {
	color: #fff;
}
.site-title {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
}


/*--------------------------------------------------------------
5.1 Hero & Featured Sections
--------------------------------------------------------------*/

/* Site Hero */
.site-hero,
.site-hero-slider {
	margin-bottom: -0.36em;
	padding-top: 4.8em;
	position: relative;
}
.site-hero {
	overflow: hidden;
}
.site-hero .entry-title,
.blog .site-hero .entry-title {
	color: #fff;
	font-family: 'Roboto Slab', serif;
	font-size: 65px;
	font-size: 6.5rem;
	font-weight: 700;
	line-height: 1.2;
	max-width: 30%;
	top: 20%;
	padding: 0.5em 0;
	position: absolute;
	right: 3em;
	text-shadow: 0px 3px 0px rgba( 0, 0, 0, 1 );
	z-index: 1;
}
.single .site-hero .entry-title,
.page-child .site-hero .entry-title {
	max-width: 100%;
}
.page .site-hero .entry-title,
.blog .site-hero .entry-title {
	bottom: 2%;
	left: 0;
	top: inherit;
}
.site-hero img {
	width: 100%;
}

/* Featured Sections Global Structural Elements */
.featured-section {
	padding: 3.063em 0;
}
.featured-wrap .entry-content,
.featured-wrap .hentry {
	margin: 0;
}

/* Featured Pages */
.featured-pages {
	box-shadow: 0 4px 8px 3px rgba(0,0,0,0.5);
	margin-bottom: 0.4em;
}
.featured-page-thumb {
	background: #fff;
	box-shadow: 3px 1px 2px 0 rgba(0, 0, 0, 0.2);
	padding: 0.3em 0.3em 0;
}
.featured-pages-wrap .hentry {
	float: left;
	margin: 0;
	max-width: 33%;
	padding: 0 1em;
}
.featured-pages-wrap .entry-title {
	font-family: 'Roboto Slab', serif;
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.5em 0;
}

/* Featured Page */
.featured-page,
.widget-area-2 {
	background: #bcbdbd;
	background: rgba(188,189,189,1);
	background: -moz-linear-gradient(top, rgba(188,189,189,1) 0%, rgba(201,201,201,0.77) 83%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(188,189,189,1)), color-stop(83%, rgba(201,201,201,0.67)));
	background: -webkit-linear-gradient(top, rgba(188,189,189,1) 0%, rgba(201,201,201,0.77) 83%);
	background: -o-linear-gradient(top, rgba(188,189,189,1) 0%, rgba(201,201,201,0.77) 83%);
	background: -ms-linear-gradient(top, rgba(188,189,189,1) 0%, rgba(201,201,201,0.77) 83%);
	background: linear-gradient(to bottom, rgba(188,189,189,1) 0%, rgba(201,201,201,0.77) 83%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bcbdbd', endColorstr='#c9c9c9', GradientType=0 );
}
.featured-page-wrap .entry-title {
	color: #fff;
	font-family: 'Roboto Slab', serif;
	font-size: 46px;
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.5em 0;
	text-shadow: 0px 3px 0px rgba( 0, 0, 0, 1 );
	text-transform: uppercase;
}
.featured-page-wrap .entry-content {
	color: rgba( 0, 0, 0, 0.5 );
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.6;
}
.featured-page-wrap .entry-content p {
	margin-bottom: 0.7em;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.menu-main-menu-container {
	clear: both;
	float: right;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	color: #fff;
	display: block;
	font-size: 15px;
	font-size: 1.5rem;
	padding-right: 1.5em;
	text-decoration: none;
	text-transform: uppercase;
}
.main-navigation li:last-of-type a {
	padding-right: 0;
}
.main-navigation ul ul {
	background: #000;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
	border-bottom: 1px solid rgba( 255, 255, 255, 0.2 );
	padding: 0.7em;
}
.main-navigation li:hover > a {
	color: #ccc;
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
	font-weight: 900;
}
/* Small menu */
.menu-toggle,
.social-toggle {
	display: none;
}
@media screen and (max-width: 760px) {
	.main-navigation button,
	.main-navigation button:hover,
	.social-links button,
	.social-links button:hover {
		background: none;
	    border: medium none;
	    border-radius: 0;
	    box-shadow: none;
	    color: #fff;
	    display: block;
	    font-weight: 700;
	    text-shadow: none;
	    text-transform: uppercase;
	}
	.social-toggle.toggled {
		float: right;
	}
	.social-links ul.toggled {
		clear: both;
		float: none;
	}
	ul.toggled .header-search .search-field {
		background: none;
		padding-left: 0;
	}
	.menu-toggle,
	.main-navigation.toggled .nav-menu,
	.social-toggle,
	.social-links.toggled ul {
	    display: block;
	}
	.main-navigation ul,
	.social-links ul {
		display: none;
	}
	.social-links ul li {
		margin-right: 0;
		margin-top: 0.5em;
	}
	.social-links ul li.newsletter-signup {
		margin-right: 0.6em;
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	clear: both;
	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%;
}
.comment-navigation .nav-next a,
.paging-navigation .nav-next a,
.post-navigation .nav-next a,
.comment-navigation .nav-previous a,
.paging-navigation .nav-previous a,
.post-navigation .nav-previous a {
	font-family: 'Roboto Slab', serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
}

/* Social Links */
.social-links {
	margin-bottom: 0.9em;
}
.social-links ul li {
	background-size: cover;
    display: inline-block;
    float: right;
    list-style: none;
    margin-right: 0.6em;
    opacity: 0.6;
}
.social-links ul li:hover {
	opacity: 1;
}
.twitter-icon {
    background: url('img/social-icons.png') no-repeat;
    background-position: 0 0;
}
.facebook-icon {
    background: url('img/social-icons.png') no-repeat;
    background-position: 0 -65px;
}
.instagram-icon {
    background: url('img/social-icons.png') no-repeat;
    background-position: 0 -30px;
}
.spotify-icon {
    background: url('img/social-icons.png') no-repeat;
    background-position: 0 -100px;
}
.social-links ul li a {
    display: inline-block;
    text-indent: 9999px;
    width: 24px;
    height: 24px;
}
.social-links ul li.facebook-icon {
	margin-right: 0.1em;
}

/* Header Search */
.header-search {
	display: inline-block;
}
.header-search .search-field {
	background: url('img/search.png') no-repeat;
	background-size: contain;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 13px;
	height: 22px;
	padding: 2px 0 2px 30px;
	text-indent: 2px;
	width: 122px;
}
.header-search .search-submit {
	position: relative;
	z-index: 1;
}
.header-search .search-field {
	-webkit-transition-duration: 400ms;
	-webkit-transition-property: width, background;
	-webkit-transition-timing-function: ease;
	-moz-transition-duration: 400ms;
	-moz-transition-property: width;
	-moz-transition-timing-function: ease;
	-o-transition-duration: 400ms;
	-o-transition-property: width, background;
	-o-transition-timing-function: ease;
}
.header-search .search-field:focus {
	color: #fff;
	opacity: 1;
	outline: none;
}
.header-search .search-field label,
.header-search .search-submit {
	display: none;
}

/* Header Translate */
.translation-widget .widgettitle {
	clear: none;
	color: #fff;
	display: inline;
	margin-right: 0.5em;
}
.translation-widget .widget {
	font-size: 13px;
	font-size: 1.3rem;
	margin-bottom: 0;
}

/* Header Newsletter */
.social-links ul li.newsletter-signup {
	margin-right: 1.8em;
	margin-top: -0.2em;
}
.sky-form footer {
    background: none !important;
    border-top: none !important;
    display: inline-block !important;
    padding: 0 !important;
}
div.chimpy_lite_status_underlay {
    background: none !important;
    float: left !important;
}
.sky-form {
	box-shadow: none !important;
}
.sky-form section {
    margin-bottom: 0 !important;
}
.sky-form fieldset {
    background: none !important;
    border: none !important;
    display: inline-block !important;
    padding: 0 !important;
}
.sky-form .input input, .sky-form .select select {
	height: 29px !important;
	font: 13px/19px Helvetica,Arial,sans-serif !important;
}
.sky-form .icon-append {
	top: 0 !important;
	border-left-width: 0 !important;
}
.sky-form footer button.button {
    background: #999 !important;
    float: right !important;
    font: 13px/19px Helvetica,Arial,sans-serif !important;
    height: 29px !important;
    margin: 0 !important;
    padding: 0 8px !important;
}
div.chimpy_lite_signup_success {
	background: none !important;
}
div.chimpy_lite_signup_success div {
	padding: 0 !important;
}
.sky-form .input input, .sky-form .select select, .sky-form .radio i, .sky-form .icon-append,
.sky-form .input input:focus, .sky-form .select select:focus, .sky-form .radio input:focus + i {
    border-color: #999 !important;
}

/*--------------------------------------------------------------
6.0 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: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
--------------------------------------------------------------*/

/* General Widget Classes */
.widget {
	margin: 0 0 1.5em;
}
#sidebar-page .widget,
#sidebar-post .widget {
	font-size: 15px;
	font-size: 1.5rem;
}
#sidebar-page .widget ul,
#sidebar-post .widget ul {
	list-style: square;
	margin-left: 1.3em;
}
#sidebar-page .widget ul li,
#sidebar-post .widget ul li {
	color: #0f4848;
	line-height: 2;
}
.widget-title {
	color: #0f4848;
	font-family: 'Roboto Slab', serif;
	text-transform: uppercase;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5em;
}
.home .widget-title {
	color: #fff;
	font-family: 'Roboto Slab', serif;
	text-transform: uppercase;
	font-size: 40px;
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 0.2em;
	text-shadow: 0 3px 0 rgba(0, 0, 0, 1);
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/* Instagram Widget */
.instagram-pics {
	list-style: none;
	margin: 0;
}
.instagram-pics li {
	display: inline-block;
	float: left;
	padding: 0.4em;
}
.null-instagram-feed .clear,
.null-instagram-feed .clear a {
	clear: both;
	color: #3c5678;
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
}

/* Widget Area 1 */
.widget-area-1 {
	box-shadow: 0 4px 8px 3px rgba(0,0,0,0.5);
	margin-bottom: 0.4em;
}
.widget-area-1 .widget {
	float: left;
	margin: 0;
	width: 47%;
	padding: 0 1em;
}
.widget-area-1 .widget-title {
	color: #548f8f;
	text-shadow: none;
}

/* Widget Area 2 */
.widget-area-2 {
}
.widget-area-2 .widget {
	color: #5c5c5c;
}
.widget-area-2 .widget p {
	margin: 0;
}
.widget-area-2 .textwidget {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.7;
	margin-top: 0.8em;
}
.foundation-logo {
	float: left;
	max-width: 40%;
	opacity: 0.5;
}
.foundation-text {
	float: right;
	max-width: 60%;
}

/* Widget Area 3 */
.widget-area-3 {
	background: #34393e;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.site-content {
	margin: 0 auto;
	max-width: 1000px;
}
.site-content:before {
	content: "";
	display: block;
	padding-top: 7.5em;
}
.site-content.has-thumbnail:before {
	padding-top: 2em;
}
.home .site-content:before,
.home .site-content.has-thumbnail:before {
	display: none;
}
#primary {
	float: left;
	margin-right: 5%;
	max-width: 70%;
}
#sidebar-page,
#sidebar-post {
	float: left;
	max-width: 25%;
}
.home #primary,
.home #secondary,
.home .site-content,
.page-template-merch-page-php #primary,
.page-template-merch-page-php .site-content,
.page-template-gallery-page-php #primary,
.page-template-gallery-page-php .site-content,
.page-template-full-width-page-php #primary,
.page-template-full-width-page-php .site-content,
.single-format-gallery .site-content,
.single-format-gallery #primary {
	float: none;
	margin-right: 0;
	max-width: 100%;
}
.home #secondary {
	margin-top: 0;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.blog .hentry,
.archive .hentry,
.page-template-lifestyle-page-php .hentry {
	border-bottom: 1px solid rgba( 0, 0, 0, 0.1 );
	float: left;
	margin-right: 3%;
	padding-bottom: 2em;
	width: 46.66%;
}
.blog .hentry:last-of-type,
.archive .hentry:last-of-type,
.page-template-lifestyle-page-php .hentry:last-of-type {
	border-bottom: none;
}
.blog .hentry:nth-child(2n+1),
.archive .hentry:nth-child(2n),
.page-template-lifestyle-page-php .hentry:nth-child(2n),
.page-template-gallery-page-php .hentry:nth-child(3n),
.page-template-merch-page-php .hentry:nth-child(3n) {
	clear: both;
}
.page-template-gallery-page-php .hentry,
.page-template-merch-page-php .hentry {
	float: left;
	width: 33.333%;
}
.entry-title {
	color: #000;
	font-family: 'Roboto Slab', serif;
	font-size: 32px;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.2;
}
.page-title {
    color: #0f4848;
    font-family: 'Roboto Slab',serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5em;
    text-transform: uppercase;
}
.blog .entry-title,
.archive .entry-title {
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.3;	
}
.gallery-page .entry-title,
.merch-page .entry-title {
	font-family: 'Roboto Slab', serif;
	font-size: 20px;
	font-size: 2.0rem;
	margin-top: 0.8em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: none;
}
.page-content,
.entry-content,
.entry-summary
/*.has-thumbnail #sidebar-post,
.has-thumbnail #sidebar-page*/ {
	margin: 1.5em 0 0;
}
.gallery-page .entry-summary,
.merch-page .entry-summary {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.7;
	margin-right: 1.5em;
	margin-top: 0.8em;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
}
.entry-content h1 {
	font-size: 30px;
	font-size: 3rem;
	line-height: 3;
}
.entry-content h2 {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 2.5;
}
.entry-content h3 {
	font-size: 26px;
	font-size: 2.6rem;
	line-height: 2;
}
.entry-content h4 {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.5;
}
.entry-content h5 {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.5;
}
.entry-content h6 {
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.5;
}
.entry-meta {
	margin-top: 1em;	
}
.entry-meta,
.entry-meta a,
.entry-footer a,
.entry-footer {
	color: #7b7b7b;
	font-size: 13px;
	font-size: 1.2rem;
}
.entry-meta a,
.entry-footer a {
	border-bottom: 1px dotted #7b7b7b;
}
.single-post-thumb {
	margin: 0 0 1.5em;
}
.single-post-thumb img {
	background: #fff;
	box-shadow: 3px 1px 2px 0 rgba(0, 0, 0, 0.2);
	padding: 0.3em;
}

/* Merch Single Page */
.single-merch #primary {
	float: none;
	margin-right: 0;
	max-width: 100%;
}
.merch-thumb {
	float: left;
	width: 30%;
}
.merch-content {
	float: right;
	width: 65%;
}


/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comments-area {
	margin: 4em 0;
}
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}
#reply-title {
	color: #0f4848;
	font-family: 'Roboto Slab', serif;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5em;
	text-transform: uppercase;
}
#commentform label {
	display: block;
	font-family: 'Roboto Slab', serif;
	font-size: 15px;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.5em;
}
#respond .logged-in-as,
#respond .logged-in-as a,
#respond .comment-notes,
.form-allowed-tags,
#commentform .comment-subscription-form label {
	color: #7b7b7b;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
}
#respond .logged-in-as a {
	border-bottom: 1px dotted #7b7b7b;
}
.comment-subscription-form {
	margin-bottom: 0.2em;
}
#submit {
	font-size: 17px;
	font-size: 1.7rem;
}


/*--------------------------------------------------------------
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;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}
.embed-youtube {
	text-align: left !important;
}

/*--------------------------------------------------------------
12.1 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;
}

/*--------------------------------------------------------------
12.2 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 {}


/*--------------------------------------------------------------
13.0 - Footer
--------------------------------------------------------------*/
.site-footer {
	background: #000;
	padding: 1em;
}
.site-info,
.footer-navigation ul li:after {
	color: #8f9194;
	font-size: 13px;
	font-size: 1.3rem;
}
.site-info a {
	color: #d0d0d0;
}
.footer-navigation {
	display: inline-block;
}
.footer-navigation ul {
	list-style: none;
	margin: 0;
}
.footer-navigation ul li {
	float: left;
	line-height: 0.5;
	padding-left: 0.3em;
}
.footer-navigation ul li:after {
	content: " |";
}
#wpstats {
	display: none;
}


/*--------------------------------------------------------------
14.0 Featured Content
--------------------------------------------------------------*/

#featured-content.flexslider {
	border: none 0;
	margin-bottom: 0;
	max-height: 500px;
	overflow: hidden;
}
#featured-content.flexslider .slides img {
	height: auto;
	margin: 0 auto
}
#featured-content.flexslider .slides .featured-hentry-wrap {
	margin: 0 auto;
	width: 100%;
}
#featured-content.flexslider .slides .hentry .entry-header .entry-title {
	background: rgba( 0, 0, 0, 0.5 );
	font-family: 'Roboto Slab', serif;
	font-size: 42px;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.2;
	max-width: 45%;
	top: 23%;
	padding: 0.5em;
	position: absolute;
	right: 0;
	text-shadow: 0px 3px 0px rgba( 0, 0, 0, 1 );
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	z-index: 1;
}
#featured-content.flexslider .slides .hentry .entry-header .entry-title ,
#featured-content.flexslider .slides .hentry .entry-header .entry-title a {
	color: #fff;
}
#featured-content.flexslider .slides .hentry {
	background: transparent;
	border: 0 none;
	margin: 0;
	padding: 0;
}
#featured-content .flex-direction-nav li a {
	background-color: #fff;
	color: #1e4a66;
	font-size: 1.9em;
	line-height: 1em;
	opacity: 0;
	padding: .5% 1%;
	top: 48%;
	text-align: center;
	text-indent: 0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	width: auto;
	height: auto;
}
#featured-content:hover .flex-direction-nav li a {
	opacity: .5;
}
#featured-content.flexslider:hover .flex-direction-nav li a {
	background-color: #fff;
	opacity: .5;
}
#featured-content.flexslider .flex-direction-nav li a:hover {
	background-color: #fff;
	opacity: .95;
}
#featured-content .flex-direction-nav li .next {
	right: 0;
}
#featured-content .flex-direction-nav li .prev {
	left: 0;
}
#featured-content .flex-control-nav {
	bottom: 1%;
	right: 0;
	width: 100%;
}
#featured-content .flex-control-nav li {
	background-color: rgba(30,74,102,0);
	border-radius: 10px;
	padding: 3px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#featured-content:hover .flex-control-nav li {
	background-color: rgba(30,74,102,.5);
}
#featured-content .flex-control-nav li:hover {
	background-color: rgba(30,74,102,.95);
}
#featured-content .flex-control-nav li a {
	background-color: rgba(255,255,255,0);
	border-radius: 7px;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 14px;
	height: 14px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#featured-content:hover .flex-control-nav li a {
	background-color: rgba(255,255,255,0.5);
}
#featured-content .flex-control-nav li a:hover, #slider-wrapper .flex-control-nav li a.active {
	background-color: rgba(255,255,255,.95);
}

/*--------------------------------------------------------------
15.0 Media Queries
--------------------------------------------------------------*/

@media screen and (max-width: 1020px) {
	.site-hero .entry-title, 
	.blog .site-hero .entry-title,
	#featured-content.flexslider .slides .hentry .entry-header .entry-title {
		font-size: 50px;
		font-size: 5rem;
	}
	#featured-content.flexslider .slides .hentry .entry-header .entry-title {
		font-size: 36px;
		font-size: 3.6rem;
	}
	.site-header-wrap, 
	.site-info, 
	.featured-wrap, 
	.site-main-wrap, 
	.site-hero .entry-header,
	#sidebar-post,
	#sidebar-page,
	.blog .site-content,
	.archive .site-content {
	    padding: 0 0.7em;
	}
}

@media screen and (max-width: 815px) {
	.site-hero .entry-title, 
	.blog .site-hero .entry-title,
	#featured-content.flexslider .slides .hentry .entry-header .entry-title {
		font-size: 40px;
		font-size: 4rem;
		left: 0.2em;
	    max-width: 100%;
	    padding: 0.5em;
	    right: inherit;
	}
	#featured-content.flexslider .slides .hentry .entry-header .entry-title {
		font-size: 36px;
		font-size: 3.6rem;
	}
	.social-links {
	    margin-bottom: 0.5em;
	}
	.main-navigation a {
		font-size: 14px;
	    font-size: 1.4rem;
	}
}

@media screen and (max-width: 760px) {
	.social-links {
	    float: right;
	    margin-bottom: 0;
	}
	.newsletter-signup {
		margin-top: 0;
	}
	.main-navigation {
		float: none;
		width: 10%;
	}
	.main-navigation.toggled ul {
		display: block;
	}
	.menu-main-menu-container {
	    clear: both;
	    float: none;
	    margin: 1em 0 0 0.8em;
	}
	.main-navigation li {
		padding: 0.5em 0;
	}
	.main-navigation ul ul {
		background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
	    box-shadow: none;
	    float: none;
	    left: inherit;
	    margin-top: 0.5em;
	    position: static;
	    top: inherit;
	    z-index: inherit;
	}
	.main-navigation ul ul li,
	.main-navigation ul ul a {
		border: none;
		width: auto;
	}
	.site-header {
		min-height: inherit;
		overflow: hidden;
		position: static;
	}
	.site-hero, .site-hero-slider {
		padding-top: 0;
	}
	.translation-widget .widgettitle {
		display: none;
	}
	.header-search .search-field {
		width: 55px;
	}
	.featured-section {
		margin: 0;
		padding: 0.4em 0;
	}
	.featured-pages-wrap .hentry {
	    float: none;
	    margin: 0.7em 0;
	    max-width: 100%;
	    padding: 0;
	}
	.featured-pages {
		box-shadow: none;
	}
	.featured-page-thumb,
	.single-post-thumb img {
	    background: none;
	    box-shadow: none;
	    padding: 0;
	}
	.single-post-thumb {
		text-align: center;
	}
	.single-post-thumb img {
		width: 100%;
		height: auto;
	}
	.featured-page-wrap .entry-title,
	.home .widget-title {
		font-size: 36px;
	    font-size: 3.6rem;
	}
	.featured-page-wrap .entry-title {
	    padding: 0 0 0.4em;
	}
	.featured-page-wrap .entry-content p {
    	margin-bottom: 0;
	}
	.widget-area-1 .widget {
	    float: none;
	    margin: 0 0 0.7em;
	    padding: 0;
	    width: 100%;
	}
	.foundation-text {
	    float: none;
	    max-width: 100%;
	}
	.foundation-logo {
	    float: none;
	    max-width: 100%;
	    opacity: 0.5;
	    text-align: center;
	}
	#submit, 
	.cano-button, 
	.cano-button:visited, 
	.cano-button:hover, 
	.cano-button:active {
		font-size: 18px;
		font-size: 1.8rem;
	}
	#tertiary .widget {
		margin-bottom: 0.7em;
	}
	#primary,
	#sidebar-post,
	#sidebar-page {
	    float: none;
	    margin-right: 0;
	    max-width: 100%;
	}
	.page-template-gallery-page-php .hentry, 
	.page-template-merch-page-php .hentry {
		float: none;
		width: 100%;
	}
	.comments-area {
	    margin: 2em 0;
	}
	.site-content:before {
	    padding-top: 0.7em;
	}
	.site-content.has-thumbnail:before {
    	padding-top: 0;
	}
	.blog .site-content.has-thumbnail:before {
		padding-top: 0.7em;
	}
	.blog .hentry,
	.archive .hentry,
	.page-template-lifestyle-page-php .hentry {
	    float: none;
	    margin-right: 0;
	    width: 100%;
	}
	.entry-content .ytc-columns2 li {
    	width: 100% !important;
	}
	.entry-content ul.ytchagallery li {
		float: none !important;
	}
	.single-merch #primary,
	.merch-thumb,
	.merch-content {
		float: none;
		width: 100%;
	}
	.merch-thumbnail img {
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 515px) {
	.site-hero .entry-title, 
	.blog .site-hero .entry-title {
		font-size: 30px;
		font-size: 3rem;
	}
	#featured-content.flexslider .slides .hentry .entry-header .entry-title {
		font-size: 1.8px;
		font-size: 1.8rem;		
	}
	.navigation-social-wrap {
		margin-top: 0;
	}
}


/******************/
