/**
 * Theme Name: Photography
 * Theme URI: http://thethemefoundry.com/wordpress/photography/
 * Author: The Theme Foundry
 * Author URI: http://thethemefoundry.com/
 * Description: A WordPress theme built for photographers. Includes easy to use galleries, integrated Flickr support, and two gorgeous color schemes.
 * Version: 2.1.11
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: art, photoblogging, photography, dark, light, black, white, one-column, two-columns, right-sidebar, custom-menu, featured-images, infinite-scroll, post-formats, theme-options, translation-ready, artistic, clean, design, elegant, fixed-width, formal, grey, handcrafted, minimal, portfolio, professional, travel
 */
/* _notes.scss
 * Theme notes
 * ------------------------------------------------------------------

This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$base: 12;
$line: 21;

---------------------------------------------------------
	Examples
---------------------------------------------------------

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.35714rem 0; (5 / $base)

* Set a font-size and then set a line-height based on the font-size
	font-size: 17px
	font-size: 1.21429rem; (17 / $base)
	line-height: 1.53em; ($line / 21)

---------------------------------------------------------
	Vertical spacing
---------------------------------------------------------

Vertical spacing between most elements should use 12px or 24px
to maintain vertical rhythm:

.my-new-div {
	margin: 12px 0;
	margin: 0.85714rem 0; ( 12 / $base )
}

---------------------------------------------------------
	Further reading
---------------------------------------------------------

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/

------------------------------------------------------------------ */
/* _reset.scss
 * Zero it out
 * ------------------------------------------------------------------ */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: none;
}

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

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

sub,
sup {
  font-size: 81.25%;
  line-height: 0;
  position: relative;
  letter-spacing: .05em;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
  *overflow: visible;
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

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

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

.clear {
  zoom: 1;
}
.clear:before, .clear:after {
  display: table;
  content: "";
}
.clear:after {
  clear: both;
}

/* _scaffolding.scss
 * Basic structure
 * ------------------------------------------------------------------ */
html {
  font-size: 87.5%;
}

/*---------------------------------------------------------
	Body
-------------------------------------------------------- */
body {
  background: url(images/bg-dark.png) #2d2d2d;
  text-rendering: optimizeLegibility;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  line-height: 1.55;
  color: #bfbfbf;
}

/*---------------------------------------------------------
	Structure
-------------------------------------------------------- */
#container {
  max-width: 960px;
  margin: 0 auto;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  padding: 12px 20px;
  padding:  0.85714rem 1.42857rem;
}
@media screen and (min-width: 900px) {
  #container {
    padding: 36px 20px;
    padding:  2.57143rem 1.42857rem;
  }
}

.content {
  zoom: 1;
}
@media screen and (min-width: 900px) {
  .content {
    width: 68.54167%;
    float: left;
  }
}
.content:before, .content:after {
  display: table;
  content: "";
}
.content:after {
  clear: both;
}

.entry {
  border: 1px solid rgba(0, 0, 0, 0.14);
  outline: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(0, 0, 0, 0.12);
  padding: 24px 27px 36px;
  padding:  1.71429rem 1.92857rem 2.57143rem;
  zoom: 1;
}
.entry:before, .entry:after {
  display: table;
  content: "";
}
.entry:after {
  clear: both;
}
.entry .frame {
  margin-bottom: 18px;
  margin-bottom: 1.28571rem;
}

div[role="main"] {
  zoom: 1;
  margin-top: 36px;
  margin-top: 2.57143rem;
}
div[role="main"]:before, div[role="main"]:after {
  display: table;
  content: "";
}
div[role="main"]:after {
  clear: both;
}

/*---------------------------------------------------------
	Links
-------------------------------------------------------- */
a {
  color: #f0f0f0;
  text-decoration: none;
}

/*---------------------------------------------------------
	Baseline
-------------------------------------------------------- */
ul, ol, dl, p, details, address, .vcard, figure, pre, fieldset, table, dt, dd, hr {
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}

p, ul, ol, dl, blockquote {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
}

pre,
code,
input,
textarea {
  font: inherit;
}

/*---------------------------------------------------------
	Headings
-------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  word-wrap: break-word;
  clear: both;
  color: #f0f0f0;
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  margin: 12px 0;
  margin:  0.85714rem 0;
}

h1 {
  word-spacing: -.05em;
  line-height: 1.45;
  font-size: 22px;
  font-size: 1.57143rem;
}
@media screen and (min-width: 600px) {
  h1 {
    font-size: 27px;
    font-size: 1.92857rem;
  }
}

h2 {
  font-weight: bold;
  line-height: 1.3;
  word-spacing: -.05em;
  font-size: 22px;
  font-size: 1.57143rem;
}
@media screen and (min-width: 600px) {
  h2 {
    font-size: 27px;
    font-size: 1.92857rem;
  }
}

h3 {
  font-weight: bold;
  font-size: 14px;
  font-size: 1rem;
}

h4 {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.14286rem;
}

h5 {
  font-size: 16px;
  font-size: 1.14286rem;
}

h6 {
  font-style: italic;
  font-size: 16px;
  font-size: 1.14286rem;
}

/*---------------------------------------------------------
	Elements
-------------------------------------------------------- */
blockquote {
  clear: both;
  border-left: 4px solid #bfbfbf;
  color: #f0f0f0;
  padding-left: 27px;
  zoom: 1;
  font-size: 18px;
  font-size: 1.28571rem;
  margin: 24px 0;
  margin:  1.71429rem 0;
}
blockquote:before, blockquote:after {
  display: table;
  content: "";
}
blockquote:after {
  clear: both;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote cite {
  color: #bfbfbf;
  font-size: 15px;
  font-size: 1.07143rem;
}

q:before {
  content: "\201C";
}
q:after {
  content: "\201D";
}

tt,
kbd,
pre,
code,
samp {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace;
  font-weight: normal;
  word-spacing: -.2em;
  color: #f0f0f0;
  text-shadow: none;
  font-size: 14px;
  font-size: 1rem;
  padding: 2px 4px;
  padding:  0.14286rem 0.28571rem;
}

mark {
  background: #ffc;
  background: rgba(255, 255, 204, 0.1);
  color: #f0f0f0;
  text-shadow: none;
  font-style: italic;
  padding: 2px 3px;
  padding:  0.14286rem 0.21429rem;
}

code {
  background: rgba(0, 0, 0, 0.12);
}

abbr,
acronym,
dfn {
  cursor: help;
  text-transform: lowercase;
  font-variant: small-caps;
  line-height: 1;
  font-size: 1.4em;
}

pre {
  display: block;
  word-wrap: break-word;
  overflow: auto;
  white-space: pre-wrap;
  border: 1px solid rgba(0, 0, 0, 0.14);
  outline: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(0, 0, 0, 0.12);
  padding: 24px;
  padding: 1.71429rem;
}

details summary {
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
details :focus {
  outline: none;
}

ins {
  color: #d43c33;
  text-decoration: none;
}

small {
  font-size: .75em;
}

big {
  font-size: 1.25em;
}

hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  clear: both;
  margin: 24px 0;
  margin:  1.71429rem 0;
}

.intro {
  line-height: 1.4;
  font-size: 16px;
  font-size: 1.14286rem;
}
@media screen and (min-width: 600px) {
  .intro {
    font-size: 17px;
    font-size: 1.21429rem;
  }
}

/*---------------------------------------------------------
	Lists
-------------------------------------------------------- */
.content ul {
  list-style: square inside;
  line-height: 1.7;
}
.content ol {
  list-style: decimal inside;
  line-height: 1.7;
}
.content ol ol {
  list-style: lower-roman;
}
.content li > ul,
.content li > ol {
  margin-left: 1.5em;
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Definition lists
-------------------------------------------------------- */
dl dt {
  font-weight: 600;
  margin-top: 24px;
  font-size: 15px;
  font-size: 1.07143rem;
}

/*---------------------------------------------------------
	Galleries
-------------------------------------------------------- */
div.gallery .gallery-icon {
  padding: 0 12px;
  margin-top: 12px;
}
div.gallery .gallery-icon img {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  margin: 0 auto;
}
div.gallery .gallery-caption {
  margin-bottom: 0;
  color: #858585;
  font-size: 13px;
  font-size: 0.92857rem;
}
div.gallery dl,
div.gallery dt {
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Tables
-------------------------------------------------------- */
table {
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  word-break: hyphenate;
}
table th,
table td,
table caption {
  padding: 3% 2%;
}
table caption {
  color: #bfbfbf;
  font-weight: bold;
}
table tbody tr:nth-child(even) td,
table tbody tr.even td {
  background: rgba(0, 0, 0, 0.12);
}
table td[valign="top"] {
  vertical-align: top;
}
table td[valign="bottom"] {
  vertical-align: bottom;
}

/*---------------------------------------------------------
	Alerts
-------------------------------------------------------- */
.alert {
  background: #e2e4e7;
  background: rgba(226, 228, 231, 0.9);
  clear: both;
  color: #272626;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.16);
  border-bottom: 2px solid #272626;
  padding: 24px 20px;
  padding:  1.71429rem 1.42857rem;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
.alert p {
  margin-bottom: 0;
}
.alert a {
  color: #272626;
  border-bottom: 1px solid #858585;
}

.error {
  background: #e05043;
  background: rgba(224, 80, 67, 0.9);
}

.success {
  background: #70be5f;
  background: rgba(112, 190, 95, 0.9);
}

.note {
  background: #f5f5dc;
  background: rgba(245, 245, 220, 0.9);
}

/*---------------------------------------------------------
	header
-------------------------------------------------------- */
header[role="banner"] {
  zoom: 1;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
header[role="banner"]:before, header[role="banner"]:after {
  display: table;
  content: "";
}
header[role="banner"]:after {
  clear: both;
}
header[role="banner"] .branding {
  margin: 0 auto 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  header[role="banner"] .branding {
    float: left;
    width: 40%;
    text-align: left;
    margin-bottom: 0;
    margin-left: 5px;
    margin-left: 0.35714rem;
  }
}
header[role="banner"] .branding img {
  outline: none;
  margin-top: 12px;
  margin-top: 0.85714rem;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
header[role="banner"] h1 {
  margin-bottom: 0;
  font-weight: normal;
}
header[role="banner"] .tagline {
  color: #858585;
  margin: 0;
  line-height: 1.4;
  font-size: 13px;
  font-size: 0.92857rem;
}

/*---------------------------------------------------------
	Menu
-------------------------------------------------------- */
#menu-toggle {
  cursor: pointer;
  background: #272626;
  line-height: 22px;
  border-bottom: 1px solid #242323;
  padding: 12px;
  padding: 0.85714rem;
}
@media screen and (min-width: 900px) {
  #menu-toggle {
    display: none;
  }
}
#menu-toggle:hover {
  color: #f0f0f0;
}
#menu-toggle:before {
  content: "\2630";
  padding-right: 5px;
  padding-right: 0.35714rem;
}
#menu-toggle.active {
  color: #f0f0f0;
}
#menu-toggle.active:before {
  color: #2392b4;
}

nav[role="navigation"] {
  display: none;
  float: left;
  border: none;
  background: #2a2a2a;
  width: 100%;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] {
    margin-right: 5px;
    margin-right: 0.35714rem;
    padding: 0 8px;
    padding:  0 0.57143rem;
    float: right;
    background: none;
    width: auto;
    max-width: 50%;
    display: block;
    border-top: 1px dashed #222;
    border-bottom: 1px dashed #222;
  }
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] li {
    line-height: 45px;
  }
}
nav[role="navigation"] li a {
  padding: 12px 36px;
  padding:  0.85714rem 2.57143rem;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] li a {
    padding: 0;
  }
}
nav[role="navigation"].opened {
  display: block;
}
nav[role="navigation"] ul {
  margin-bottom: 0;
}
nav[role="navigation"] .nav a {
  color: #bfbfbf;
  display: block;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav a {
    font-weight: 600;
    color: #f0f0f0;
  }
}
nav[role="navigation"] .nav a:hover {
  color: #f0f0f0;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav a:hover {
    color: #bfbfbf;
  }
}
nav[role="navigation"] .nav li {
  padding-right: 0;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav li {
    float: left;
    position: relative;
    padding-right: 30px;
    padding-right: 2.14286rem;
  }
  nav[role="navigation"] .nav li:last-child {
    padding-right: 0;
  }
}
nav[role="navigation"] .nav li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav li a {
    border-bottom: none;
  }
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav li.parent-menu-item a:after {
    content: url(images/sub-menu-arrow.svg);
    position: relative;
    top: -1px;
    padding-left: 6px;
    padding-left: 0.42857rem;
  }
  nav[role="navigation"] .nav li.parent-menu-item .sub-menu a:after,
  nav[role="navigation"] .nav li.parent-menu-item .children a:after {
    content: none;
  }
  nav[role="navigation"] .nav li:hover ul {
    display: block;
  }
  nav[role="navigation"] .nav li ul {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 4;
    text-align: center;
  }
}
nav[role="navigation"] .nav ul.sub-menu li,
nav[role="navigation"] .nav ul.children li {
  -webkit-hyphens: none;
  text-align: left;
  border-bottom: none;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav ul.sub-menu li,
  nav[role="navigation"] .nav ul.children li {
    background: #272626;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    width: 108px;
    line-height: 1.55;
    padding: 0;
    font-size: 13px;
    font-size: 0.92857rem;
  }
}
nav[role="navigation"] .nav ul.sub-menu li a,
nav[role="navigation"] .nav ul.children li a {
  -webkit-font-smoothing: subpixel-antialiased;
  font-weight: normal;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav ul.sub-menu li a,
  nav[role="navigation"] .nav ul.children li a {
    color: inherit;
    padding: 12px 20px;
    padding:  0.85714rem 1.42857rem;
  }
}
nav[role="navigation"] .nav ul.sub-menu li a:before,
nav[role="navigation"] .nav ul.children li a:before {
  content: "\231E";
  padding-right: 4px;
  padding-right: 0.28571rem;
  position: relative;
  bottom: 1px;
}
@media screen and (min-width: 900px) {
  nav[role="navigation"] .nav ul.sub-menu li a:before,
  nav[role="navigation"] .nav ul.children li a:before {
    content: "";
    padding-right: 0;
  }
}
nav[role="navigation"] .nav ul.sub-menu li a:hover,
nav[role="navigation"] .nav ul.children li a:hover {
  color: #f0f0f0;
}

/*---------------------------------------------------------
	Sharing
-------------------------------------------------------- */
div.sharedaddy,
div.sd-block {
  border: 0 !important;
  text-align: left;
}
div.sharedaddy iframe,
div.sd-block iframe {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.page-template-gallery-php #jp-post-flair .sharedaddy,
.page-template-homepage-php #jp-post-flair .sharedaddy {
  margin-top: 36px;
  margin-top: 2.57143rem;
}

/*---------------------------------------------------------
	Footer
-------------------------------------------------------- */
footer[role="contentinfo"] {
  clear: both;
  color: #858585;
  zoom: 1;
  font-size: 13px;
  font-size: 0.92857rem;
  margin-top: 36px;
  margin-top: 2.57143rem;
}
footer[role="contentinfo"]:before, footer[role="contentinfo"]:after {
  display: table;
  content: "";
}
footer[role="contentinfo"]:after {
  clear: both;
}
footer[role="contentinfo"] a {
  color: #999999;
}
footer[role="contentinfo"] a:hover {
  color: #cacaca;
}

/*---------------------------------------------------------
	Byline & copyright
-------------------------------------------------------- */
.colophon {
  text-align: center;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
@media screen and (min-width: 900px) {
  .colophon {
    float: left;
    max-width: 45%;
    text-align: left;
    margin-bottom: 0;
    padding-left: 5px;
    padding-left: 0.35714rem;
  }
}
.colophon .credit-line {
  margin-bottom: 6px;
  margin-bottom: 0.42857rem;
}
.colophon .byline {
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Social icons
-------------------------------------------------------- */
.social {
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .social {
    float: right;
    max-width: 45%;
    padding-right: 5px;
    padding-right: 0.35714rem;
  }
}
.social ul {
  margin-left: 0;
  margin-bottom: 0;
}
.social ul li {
  list-style-type: none;
  display: inline;
  margin-left: .6em;
}
.social ul li:first-child {
  margin-left: 0;
}
.social ul li.twitter a {
  background-position: 0;
  width: 15px;
}
.social ul li.facebook a {
  background-position: -15px;
  width: 8px;
}
.social ul li.google a {
  background-position: -24px;
  width: 11px;
}
.social ul li.flickr a {
  background-position: -36px;
  width: 16px;
}
.social ul li.fivepx a {
  background-position: -53px;
  width: 16px;
}
.social ul li.rss a {
  background-position: -72px;
  width: 12px;
}
.social ul li a {
  background: url(images/icons.svg) no-repeat;
  display: inline-block;
  height: 14px;
  border-bottom: none;
  opacity: .75;
}
.social ul li a:hover {
  opacity: 1;
}

/* _patterns.scss
 * Repeatable patterns
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Image
-------------------------------------------------------- */
img {
  height: auto;
  max-width: 100%;
  line-height: 0;
  -webkit-box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1);
}
img.wp-smiley {
  margin: 0 !important;
}
img.size-full, img.size-large {
  max-width: 100%;
  width: auto;
  height: auto;
}
img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"] {
  height: auto;
}

/*---------------------------------------------------------
	Frame
-------------------------------------------------------- */
figure.image-frame {
  display: inline-block;
  margin-bottom: 0;
  line-height: 0;
  max-width: 100%;
  zoom: 1;
}
figure.image-frame:before, figure.image-frame:after {
  display: table;
  content: "";
}
figure.image-frame:after {
  clear: both;
}
figure.image-frame img {
  pointer-events: auto;
}
figure.image-frame span.theme-shadow {
  pointer-events: none;
  display: inline-block;
  position: relative;
  max-width: 100%;
}
figure.image-frame span.theme-shadow:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.14);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.14);
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.14);
}

.frame,
.image-frame {
  margin-bottom: 0;
  line-height: 0;
}

/*---------------------------------------------------------
	Captions
-------------------------------------------------------- */
div.wp-caption {
  max-width: 100%;
}

.wp-caption-text,
dd.wp-caption-dd {
  font-style: italic;
  color: #5f5f5f;
  font-size: 13px;
  font-size: 0.92857rem;
  margin-top: 6px;
  margin-top: 0.42857rem;
}

/*---------------------------------------------------------
	Media
-------------------------------------------------------- */
#container embed,
#container object,
#container video,
#container iframe {
  max-width: 100%;
  -webkit-box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1);
}

#container .jetpack-likes-widget {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*---------------------------------------------------------
	Twitter
-------------------------------------------------------- */
.twitter-tweet-rendered {
  max-width: 100%;
  display: inline;
}

/*---------------------------------------------------------
	General
-------------------------------------------------------- */
.clear {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hide {
  display: none;
  visibility: hidden;
}

.hidden {
  visibility: hidden;
}

.noborder {
  border: none;
}

div .alignleft {
  margin-right: 12px;
  margin-right: 0.85714rem;
  text-align: left;
}
div .alignright {
  margin-left: 12px;
  margin-left: 0.85714rem;
  text-align: right;
}
div .aligncenter {
  text-align: center;
}

/* _posts.scss
 * Post styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Post structure
-------------------------------------------------------- */
.post {
  margin-bottom: 36px;
  margin-bottom: 2.57143rem;
}
@media screen and (min-width: 900px) {
  .post {
    margin-bottom: 48px;
    margin-bottom: 3.42857rem;
  }
}

.post-byline {
  font-style: italic;
  margin-bottom: 24px;
  margin-bottom: 1.71429rem;
}

.page-links {
  clear: both;
}

.title {
  margin-top: 0;
}

.post-detail {
  color: #5f5f5f;
  font-size: 13px;
  font-size: 0.92857rem;
  margin-top: 12px;
  margin-top: 0.85714rem;
}
.post-detail section a {
  color: #5f5f5f;
}
.post-detail time {
  float: right;
}
.post-detail time:hover:before {
  opacity: 1;
}
.post-detail time:before {
  content: url(images/cal.svg);
  position: relative;
  top: 2px;
  opacity: .75;
  padding-right: 6px;
  padding-right: 0.42857rem;
}
.post-detail .comment-count {
  float: left;
}
.post-detail .comment-count:hover:before {
  opacity: 1;
}
.post-detail .comment-count:before {
  content: url(images/speech.svg);
  position: relative;
  top: 3px;
  opacity: .75;
  padding-right: 6px;
  padding-right: 0.42857rem;
}
.post-detail a {
  color: #858585;
}
.post-detail a:hover {
  color: #f0f0f0;
}

a time {
  color: #858585;
}
a time:hover {
  color: #f0f0f0;
}

/*---------------------------------------------------------
	Single view
-------------------------------------------------------- */
body.single .title {
  margin-bottom: 0;
}
body.single .format-aside time {
  float: none;
  clear: none;
}
body.single.single-format-gallery .post {
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Sticky posts
-------------------------------------------------------- */
.sticky-text {
  background: #2392b4;
  position: relative;
  bottom: 3px;
  text-transform: lowercase;
  color: #f0f0f0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 13px;
  font-size: 0.92857rem;
  padding: 6px 10px;
  padding:  0.42857rem 0.71429rem;
}

/*---------------------------------------------------------
	Blog navigation
-------------------------------------------------------- */
.post-navigation {
  margin-top: 12px;
  margin-top: 0.85714rem;
  font-size: 13px;
  font-size: 0.92857rem;
}
.post-navigation p {
  display: inline;
}
.post-navigation a[rel="next"] {
  float: left;
  max-width: 45%;
}
.post-navigation a[rel="prev"] {
  float: right;
  max-width: 45%;
}

.blog-footer {
  margin: 24px 0 12px;
  margin:  1.71429rem 0 0.85714rem;
}

.blog-footer,
.post-navigation {
  zoom: 1;
}
.blog-footer:before, .blog-footer:after,
.post-navigation:before,
.post-navigation:after {
  display: table;
  content: "";
}
.blog-footer:after,
.post-navigation:after {
  clear: both;
}
.blog-footer a,
.post-navigation a {
  color: #858585;
}
.blog-footer a:hover,
.post-navigation a:hover {
  color: #f0f0f0;
}
.blog-footer a[rel="next"],
.post-navigation a[rel="next"] {
  margin-right: 20px;
  margin-right: 1.42857rem;
}
.blog-footer a[rel="next"]:before,
.post-navigation a[rel="next"]:before {
  content: "\2190  ";
}
.blog-footer a[rel="prev"],
.post-navigation a[rel="prev"] {
  float: right;
}
.blog-footer a[rel="prev"]:after,
.post-navigation a[rel="prev"]:after {
  content: "  \2192";
}

.infinite-scroll .blog-footer {
  display: none;
}

/*---------------------------------------------------------
	Standard format
-------------------------------------------------------- */
.format-standard .post-detail,
.format-aside .post-detail {
  margin-top: 24px;
  margin-top: 1.71429rem;
}

/*---------------------------------------------------------
	Aside format
-------------------------------------------------------- */
.format-aside time {
  clear: both;
  float: right;
}
.format-aside .entry {
  padding: 24px 27px;
  padding:  1.71429rem 1.92857rem;
}
.format-aside .post-detail time {
  clear: none;
}

/*---------------------------------------------------------
	Individual gallery
-------------------------------------------------------- */
.attached-to-gallery .post {
  margin-bottom: 0;
}
.attached-to-gallery .entry {
  border-top: none;
  color: #858585;
  padding-bottom: 24px;
  padding-bottom: 1.71429rem;
}
.attached-to-gallery .single-gallery-content {
  margin-top: 12px;
  margin-top: 0.85714rem;
}

.galleria-container {
  background: rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
  padding: 0;
}
.galleria-container img {
  left: 0;
  right: 0;
  border: none;
  position: relative;
}

.galleria-thumbnails .galleria-image {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.12);
}
.galleria-thumbnails .galleria-image:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}

.galleria-stage {
  left: 0;
  right: 0;
  top: 0;
  bottom: 90px;
}

.galleria-thumbnails-container {
  height: 65px;
  left: 27px;
  right: 27px;
}

.galleria-counter {
  background: rgba(0, 0, 0, 0.85);
  opacity: 1 !important;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: #f0f0f0;
  text-shadow: none;
  bottom: 15px;
  left: 27px;
  padding: 6px;
  padding: 0.42857rem;
  font-size: 13px;
  font-size: 0.92857rem;
}

.galleria-info {
  left: 27px;
}

.galleria-info-link {
  opacity: 1;
  filter: alpha(opacity=100);
  background-position: 0;
  background: rgba(0, 0, 0, 0.85) url(images/info.svg) no-repeat;
  background-size: 20px 20px;
}

.galleria-info-text {
  background: rgba(0, 0, 0, 0.85);
  word-wrap: break-word;
  word-break: hyphenate;
  padding: 12px 28px 12px 14px;
  padding:  0.85714rem 2rem 0.85714rem 1rem;
}

.galleria-info-description {
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-style: normal;
  color: #f0f0f0;
  text-shadow: none;
  font-size: 13px;
  font-size: 0.92857rem;
}

.galleria-info-close {
  top: 10px;
  right: 10px;
  background-position: 0;
  background: url(images/close.svg) no-repeat;
  background-size: 9px 9px;
}

.galleria-thumb-nav-right,
.galleria-thumb-nav-left {
  background-position: 0;
  background-size: 5px 10px;
  top: 1px;
}

.galleria-thumb-nav-right {
  background: rgba(0, 0, 0, 0.85) url(images/arrow-small-right.svg) no-repeat 10px 16px;
}

.galleria-thumb-nav-left {
  background: rgba(0, 0, 0, 0.85) url(images/arrow-small-left.svg) no-repeat 10px 16px;
}

.galleria-image-nav-right,
.galleria-image-nav-left {
  background-position: 0;
  background-size: 16px 29px;
}

.galleria-image-nav-right {
  background: url(images/arrow-large-right.svg) no-repeat 90% 50%;
}

.galleria-image-nav-left {
  background: url(images/arrow-large-left.svg) no-repeat 10% 50%;
}

.galleria-thumbnails-container .galleria-image {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.14);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.14);
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.14);
}

.galleria-errors {
  display: none;
}

.blog .galleria,
.archive .galleria,
.blog .video-embed,
.archive .video {
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}

/* _pages.scss
 * Pages and page templates
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Full-width
-------------------------------------------------------- */
.page-template-full-width-php .content,
.page-template-homepage-php .content {
  width: 100%;
}

/*---------------------------------------------------------
	Homepage
-------------------------------------------------------- */
.page-template-homepage-php .content {
  color: #858585;
  text-align: center;
  font-size: 13px;
  font-size: 0.92857rem;
}
.page-template-homepage-php .content .responsive-slides-container {
  zoom: 1;
}
.page-template-homepage-php .content .responsive-slides-container:before, .page-template-homepage-php .content .responsive-slides-container:after {
  display: table;
  content: "";
}
.page-template-homepage-php .content .responsive-slides-container:after {
  clear: both;
}
.page-template-homepage-php .content .responsive-slides-container a.prev,
.page-template-homepage-php .content .responsive-slides-container a.next {
  color: #858585;
  margin-top: 12px;
  margin-top: 0.85714rem;
}
.page-template-homepage-php .content .responsive-slides-container a.prev {
  float: left;
}
.page-template-homepage-php .content .responsive-slides-container a.prev:before {
  content: "\2190  ";
}
.page-template-homepage-php .content .responsive-slides-container a.next {
  float: right;
}
.page-template-homepage-php .content .responsive-slides-container a.next:after {
  content: "  \2192";
}
.page-template-homepage-php .content .responsive-slides-container .transparent-btns_tabs {
  display: none;
}
.page-template-homepage-php .content ul.responsive-slides {
  position: relative;
  list-style: none;
  margin: 0;
  zoom: 1;
}
.page-template-homepage-php .content ul.responsive-slides:before, .page-template-homepage-php .content ul.responsive-slides:after {
  display: table;
  content: "";
}
.page-template-homepage-php .content ul.responsive-slides:after {
  clear: both;
}
.page-template-homepage-php .content ul.responsive-slides li {
  -webkit-backface-visibility: hidden;
  line-height: 0;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

/*---------------------------------------------------------
	Gallery
-------------------------------------------------------- */
.gallery-div {
  text-align: center;
  float: left;
}
.gallery-div .frame {
  margin-bottom: 0;
}
.gallery-div h3 {
  text-align: center;
  margin-bottom: 0;
}
.gallery-div .thumb-caption {
  display: none;
}

.placeholder-text {
  color: #858585;
  line-height: 1.55;
  background: rgba(0, 0, 0, 0.12);
  display: table;
  border: 1px solid #272626;
  padding: 20px;
  padding: 1.42857rem;
}
.placeholder-text span {
  display: table-cell;
  vertical-align: middle;
}

.page-template-gallery-php .entry {
  border-top: none;
  color: #858585;
  padding-bottom: 24px;
  padding-bottom: 1.71429rem;
}

/*---------------------------------------------------------
	Captions
-------------------------------------------------------- */
@media screen and (min-width: 900px) {
  .fancy .gallery-div:hover .thumb-caption {
    display: block;
    z-index: 2;
    position: relative;
  }
}
.fancy .gallery-div:hover .thumb-caption h3 {
  position: absolute;
  width: 100%;
  margin-top: 45%;
  text-transform: capitalize;
  line-height: 2;
  font-size: 14px;
  font-size: 1rem;
}
@media screen and (min-width: 900px) {
  .fancy .gallery-div:hover .thumb-caption h3 {
    font-size: 16px;
    font-size: 1.14286rem;
  }
}
.fancy .gallery-div:hover .thumb-caption h3 span {
  background: rgba(0, 0, 0, 0.65);
  padding: 6px;
  padding: 0.42857rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.basic .gallery-div .thumb-caption {
  display: block;
}
.basic .gallery-div .thumb-caption h3 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.4;
  font-size: 13px;
  font-size: 0.92857rem;
}

/*---------------------------------------------------------
	Landscape
-------------------------------------------------------- */
.landscape-gallery {
  zoom: 1;
}
.landscape-gallery:before, .landscape-gallery:after {
  display: table;
  content: "";
}
.landscape-gallery:after {
  clear: both;
}
.landscape-gallery .gallery-div {
  width: 47.91667%;
  margin-right: 4.0625%;
  margin-top: 4.0625%;
}
@media screen and (min-width: 600px) {
  .landscape-gallery .gallery-div {
    width: 30.625%;
  }
}
@media screen and (min-width: 600px) {
  .landscape-gallery .gallery-div.image-1, .landscape-gallery .gallery-div.image-2, .landscape-gallery .gallery-div.image-3 {
    margin-top: 0;
  }
}
.landscape-gallery .gallery-div.image-1, .landscape-gallery .gallery-div.image-2 {
  margin-top: 0;
}
.landscape-gallery .last-when-two {
  margin-right: 0;
}
@media screen and (min-width: 600px) {
  .landscape-gallery .last-when-two {
    margin-right: 4.0625%;
  }
}
@media screen and (min-width: 600px) {
  .landscape-gallery .last-when-three {
    margin-right: 0;
  }
}
.landscape-gallery .placeholder-text {
  height: 156px;
}

/*---------------------------------------------------------
	Portrait
-------------------------------------------------------- */
.portrait-gallery {
  zoom: 1;
}
.portrait-gallery:before, .portrait-gallery:after {
  display: table;
  content: "";
}
.portrait-gallery:after {
  clear: both;
}
.portrait-gallery .gallery-div {
  width: 46.97917%;
  margin-right: 6.04167%;
  margin-top: 6.04167%;
}
@media screen and (min-width: 600px) {
  .portrait-gallery .gallery-div {
    width: 20.41667%;
  }
}
@media screen and (min-width: 600px) {
  .portrait-gallery .gallery-div.image-1, .portrait-gallery .gallery-div.image-2, .portrait-gallery .gallery-div.image-3, .portrait-gallery .gallery-div.image-4 {
    margin-top: 0;
  }
}
.portrait-gallery .gallery-div.image-1, .portrait-gallery .gallery-div.image-2 {
  margin-top: 0;
}
.portrait-gallery .last-when-two {
  margin-right: 0;
}
@media screen and (min-width: 600px) {
  .portrait-gallery .last-when-two {
    margin-right: 6.04167%;
  }
}
@media screen and (min-width: 600px) {
  .portrait-gallery .last-when-four {
    margin-right: 0;
  }
}
.portrait-gallery .placeholder-text {
  height: 254px;
}

/*---------------------------------------------------------
	Sitemap
-------------------------------------------------------- */
.page-template-sitemap-php .content li a {
  color: #bfbfbf;
}
.page-template-sitemap-php .content li:hover a {
  color: #f0f0f0;
}
.page-template-sitemap-php .content li:hover time {
  color: #bfbfbf;
}
.page-template-sitemap-php .content time {
  color: #858585;
}
.page-template-sitemap-php .content time:before {
  content: "\2013";
  padding-right: 3px;
  padding-right: 0.21429rem;
}

/*---------------------------------------------------------
	Attachment
-------------------------------------------------------- */
body.attachment .title {
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
  font-size: 22px;
  font-size: 1.57143rem;
}
body.attachment .frame {
  text-align: center;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
body.attachment .attachment-content {
  font-size: 13px;
  font-size: 0.92857rem;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
body.attachment .attachment-excerpt {
  text-align: center;
  font-style: italic;
  color: #858585;
}

/*---------------------------------------------------------
	Search
-------------------------------------------------------- */
body.search .content .type-post,
body.search .content .type-page {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  margin-bottom: 24px;
  margin-bottom: 1.71429rem;
  zoom: 1;
}
body.search .content .type-post:before, body.search .content .type-post:after,
body.search .content .type-page:before,
body.search .content .type-page:after {
  display: table;
  content: "";
}
body.search .content .type-post:after,
body.search .content .type-page:after {
  clear: both;
}
body.search .content .type-post:last-of-type,
body.search .content .type-page:last-of-type {
  border-bottom: none;
}
body.search .content .custom-more-link {
  float: right;
  clear: both;
}

/* _sidebar.scss
 * Sidebar and widget styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	No Sidebar
-------------------------------------------------------- */
.no-sidebar {
  width: 100%;
}

/*---------------------------------------------------------
	Sidebar
-------------------------------------------------------- */
aside[role="complementary"] {
  margin-top: 36px;
  margin-top: 2.57143rem;
  line-height: 1.5;
  color: #999999;
  font-size: 13px;
  font-size: 0.92857rem;
}
@media screen and (min-width: 900px) {
  aside[role="complementary"] {
    width: 26.5625%;
    float: right;
    padding-left: 2.8125%;
    margin-top: 0;
  }
}
aside[role="complementary"] a {
  color: #999999;
}
aside[role="complementary"] a:hover {
  color: #cacaca;
}

/*---------------------------------------------------------
	Widget title
-------------------------------------------------------- */
h3.widgettitle {
  line-height: 1;
  margin: 0 0 12px;
  margin:  0 0 0.85714rem;
  color: #cacaca;
}
h3.widgettitle a {
  color: #cacaca;
}

/*---------------------------------------------------------
	Widget areas
-------------------------------------------------------- */
aside[role="complementary"] {
  word-wrap: break-word;
}
aside[role="complementary"] ul {
  margin-left: 0;
  list-style: inside square;
}
aside[role="complementary"] ul li {
  margin-bottom: 6px;
  margin-bottom: 0.42857rem;
}
aside[role="complementary"] .widget {
  margin-bottom: 24px;
  margin-bottom: 1.71429rem;
}
aside[role="complementary"] a.rsswidget img {
  display: none;
}
aside[role="complementary"] .widget_rss ul {
  margin-left: 0;
}
aside[role="complementary"] .widget_rss .rss-date:before {
  content: "\2013  ";
}
aside[role="complementary"] .widget_rss cite {
  display: inline-block;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
aside[role="complementary"] .widget_rss cite:before {
  content: "\2013  ";
}
aside[role="complementary"] .widget_tag_cloud,
aside[role="complementary"] .wp_widget_tag_cloud {
  display: inline-block;
}
aside[role="complementary"] .widget_tag_cloud a,
aside[role="complementary"] .wp_widget_tag_cloud a {
  color: #f0f0f0;
  display: inline-block;
  margin: 0 .4em .6em 0;
  border-bottom: 0;
}
aside[role="complementary"] .widget_tag_cloud a:hover,
aside[role="complementary"] .wp_widget_tag_cloud a:hover {
  color: #bfbfbf;
}
aside[role="complementary"] .widget_tag_cloud a:active,
aside[role="complementary"] .wp_widget_tag_cloud a:active {
  color: #f0f0f0;
}
aside[role="complementary"] .widget_calendar tr {
  letter-spacing: .1em;
}
aside[role="complementary"] .widget_nav_menu ul.sub-menu li {
  margin-left: 1.5em;
}

/*---------------------------------------------------------
	Custom widget
-------------------------------------------------------- */
.widget_photography2_recently_discussed_widget .recent-post {
  zoom: 1;
  margin-top: 16px;
  margin-top: 1.14286rem;
  margin-bottom: 24px;
  margin-bottom: 1.71429rem;
}
.widget_photography2_recently_discussed_widget .recent-post:before, .widget_photography2_recently_discussed_widget .recent-post:after {
  display: table;
  content: "";
}
.widget_photography2_recently_discussed_widget .recent-post:after {
  clear: both;
}
.widget_photography2_recently_discussed_widget .recent-post:hover .recent-post-title {
  color: #f0f0f0;
}
.widget_photography2_recently_discussed_widget .recent-post img {
  width: 96px;
}
.widget_photography2_recently_discussed_widget .recent-post .frame {
  float: left;
  margin-right: 20px;
  margin-right: 1.42857rem;
}
.widget_photography2_recently_discussed_widget section .recent-post-title {
  color: #bfbfbf;
  line-height: 1.4;
  display: block;
  font-size: 14px;
  font-size: 1rem;
  margin-bottom: 6px;
  margin-bottom: 0.42857rem;
}
.widget_photography2_recently_discussed_widget section time {
  font-size: 13px;
  font-size: 0.92857rem;
}
.widget_photography2_recently_discussed_widget section time:hover {
  color: #858585;
}

/* _comments.scss
 * Comment styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	General
-------------------------------------------------------- */
#comments {
  margin-top: 36px;
  margin-top: 2.57143rem;
}
#comments ol, #comments ul {
  margin: 0;
}
#comments li.comment {
  list-style: none;
  color: #858585;
  border: 1px solid rgba(0, 0, 0, 0.14);
  outline: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(0, 0, 0, 0.12);
  zoom: 1;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
@media screen and (min-width: 900px) {
  #comments li.comment {
    margin-bottom: 36px;
    margin-bottom: 2.57143rem;
  }
}
#comments li.comment:before, #comments li.comment:after {
  display: table;
  content: "";
}
#comments li.comment:after {
  clear: both;
}
#comments li.comment:hover time,
#comments li.comment:hover .comment-reply-link {
  color: #858585;
}
#comments li article {
  zoom: 1;
  padding: 24px 27px 30px;
  padding:  1.71429rem 1.92857rem 2.14286rem;
}
#comments li article:before, #comments li article:after {
  display: table;
  content: "";
}
#comments li article:after {
  clear: both;
}

/*---------------------------------------------------------
	Header
-------------------------------------------------------- */
#comments .comment-author {
  clear: both;
  color: #bfbfbf;
  line-height: 48px;
  font-size: 16px;
  font-size: 1.14286rem;
}
#comments .comment-author time {
  color: #575757;
  line-height: 48px;
  float: right;
  font-size: 13px;
  font-size: 0.92857rem;
}

/*---------------------------------------------------------
	Body
-------------------------------------------------------- */
#comments .post-content {
  clear: both;
  float: left;
}
@media screen and (min-width: 600px) {
  #comments .post-content {
    margin-left: 67px;
    margin-left: 4.78571rem;
  }
}
#comments .post-content ul,
#comments .post-content ol,
#comments .post-content dd {
  margin-left: 1.5em !important;
  margin-bottom: 12px !important;
}
#comments .post-content ol {
  list-style: decimal;
}
#comments .post-content ul {
  list-style: square;
}
#comments .post-content li > ul,
#comments .post-content li > ol {
  margin-bottom: 0 !important;
}
#comments .post-content blockquote {
  font-weight: normal;
}

/*---------------------------------------------------------
	Children
-------------------------------------------------------- */
#comments ul.children {
  zoom: 1;
}
@media screen and (min-width: 900px) {
  #comments ul.children {
    padding-left: 94px;
    padding-left: 6.71429rem;
  }
}
#comments ul.children:before, #comments ul.children:after {
  display: table;
  content: "";
}
#comments ul.children:after {
  clear: both;
}

/*---------------------------------------------------------
	Author
-------------------------------------------------------- */
#comments li.bypostauthor article {
  background: rgba(0, 0, 0, 0.12);
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Details
-------------------------------------------------------- */
small a#cancel-comment-reply-link {
  position: relative;
  left: .75em;
  font-weight: normal;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 14px;
  font-size: 1rem;
  padding: 8px 12px;
  padding:  0.57143rem 0.85714rem;
}

.comment .frame {
  float: left;
  margin-right: 20px;
  margin-right: 1.42857rem;
}

#comments .avatar-96 {
  height: 48px;
  width: 48px;
}

.comment-reply-link {
  color: #5f5f5f;
  clear: both;
  float: left;
  font-size: 13px;
  font-size: 0.92857rem;
}
@media screen and (min-width: 600px) {
  .comment-reply-link {
    margin-left: 67px;
    margin-left: 4.78571rem;
  }
}

@media screen and (min-width: 900px) {
  .form-submit {
    float: right;
    zoom: 1;
  }
  .form-submit:before, .form-submit:after {
    display: table;
    content: "";
  }
  .form-submit:after {
    clear: both;
  }
}

/*---------------------------------------------------------
	Pingbacks and Trackbacks
-------------------------------------------------------- */
#comments li.pingback, #comments li.trackback {
  list-style: none;
  margin-bottom: 36px;
  margin-bottom: 2.57143rem;
}
#comments li.pingback article, #comments li.trackback article {
  padding: 0;
}

/*---------------------------------------------------------
	Form
-------------------------------------------------------- */
#reply-title,
#comment-headline {
  margin: 36px 0 24px;
  margin:  2.57143rem 0 1.71429rem;
}

.comment-field {
  display: inline-block;
  color: #bfbfbf;
  margin: 0 0 12px;
  margin:  0 0 0.85714rem;
}

input.text-input,
#comment {
  width: 100%;
}

.guidelines,
.comments-rss a {
  color: #5f5f5f;
  display: block;
  font-size: 13px;
  font-size: 0.92857rem;
}

.comments-rss a {
  margin-bottom: 24px;
  margin-bottom: 1.71429rem;
}

/* _forms.scss
 * Form styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Form fields
-------------------------------------------------------- */
textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  max-width: 100%;
  color: #999999;
  padding: 10px 12px;
  padding:  0.71429rem 0.85714rem;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  outline: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(0, 0, 0, 0.12);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

/*---------------------------------------------------------
	Focus state
-------------------------------------------------------- */
textarea:focus,
select:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus {
  outline-color: transparent;
  outline-style: none;
  color: #f0f0f0;
}

/*---------------------------------------------------------
	Form elements
-------------------------------------------------------- */
input[type="checkbox"],
input[type="radio"] {
  margin-right: .6em;
}

textarea {
  resize: vertical;
}

select {
  outline: none;
  height: 24px;
}

/*---------------------------------------------------------
	Buttons & links
-------------------------------------------------------- */
button,
input[type="reset"],
input[type="submit"],
input[type="button"],
.widget_tag_cloud a,
.wp_widget_tag_cloud a,
a#cancel-comment-reply-link,
.comment-edit-link,
.custom-more-link,
#infinite-handle span {
  color: #bfbfbf;
  text-align: center;
  border: none;
  background: #272626;
  border-bottom: 1px solid #242323;
  text-shadow: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 13px;
  font-size: 0.92857rem;
  padding: 8px 12px;
  padding:  0.57143rem 0.85714rem;
  margin-bottom: 12px;
  margin-bottom: 0.85714rem;
}
button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.widget_tag_cloud a:hover,
.wp_widget_tag_cloud a:hover,
a#cancel-comment-reply-link:hover,
.comment-edit-link:hover,
.custom-more-link:hover,
#infinite-handle span:hover {
  color: #f0f0f0;
}

/*---------------------------------------------------------
	Contact form 7
-------------------------------------------------------- */
div.wpcf7 input[type="text"],
div.wpcf7 textarea {
  width: 100%;
  margin-top: 12px;
  margin-top: 0.85714rem;
}
div.wpcf7 input[type="submit"] {
  margin-top: 12px;
  margin-top: 0.85714rem;
}

/* _color.scss
 * Color scheme styling
 * ------------------------------------------------------------------ */
body.light {
  background: url(images/bg-light.png) #f2f2f2;
  color: #555555;
}
body.light nav[role="navigation"] {
  background: #fcfcfc;
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"] {
    background: none;
    border-top: 1px dashed #868686;
    border-bottom: 1px dashed #868686;
  }
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"].nav a {
    color: #f0f0f0;
  }
}
body.light .alert {
  color: #101010;
  border-bottom: none;
}
body.light .alert a {
  color: #101010;
  border-bottom: 1px solid #fcfcfc;
}
body.light .fancy .gallery-div h3 {
  color: #fcfcfc;
  text-shadow: none;
}
body.light .social ul li a {
  opacity: .45;
}
body.light .social ul li a:hover {
  opacity: .65;
}
body.light .post-detail time:before,
body.light .post-detail .comment-count:before {
  opacity: .45;
}
body.light.highlander-dark #respond label.subscribe-label {
  color: #555555 !important;
}
body.light aside[role="complementary"],
body.light textarea,
body.light select,
body.light input[type="date"],
body.light input[type="datetime"],
body.light input[type="datetime-local"],
body.light input[type="email"],
body.light input[type="month"],
body.light input[type="number"],
body.light input[type="password"],
body.light input[type="search"],
body.light input[type="tel"],
body.light input[type="text"],
body.light input[type="time"],
body.light input[type="url"],
body.light input[type="week"] {
  color: #7b7b7b;
}
body.light #menu-toggle.active:before {
  color: #555555;
}
body.light .galleria-container {
  background: rgba(0, 0, 0, 0.18);
}
body.light .galleria-info-link {
  background: rgba(0, 0, 0, 0.45) url(images/info.svg) no-repeat;
}
body.light .galleria-counter {
  background: rgba(0, 0, 0, 0.45);
}
body.light .galleria-info-text {
  background: rgba(0, 0, 0, 0.6);
}
body.light .galleria-thumb-nav-right {
  background: rgba(0, 0, 0, 0.45) url(images/arrow-small-right.svg) no-repeat 10px 16px;
}
body.light .galleria-thumb-nav-left {
  background: rgba(0, 0, 0, 0.45) url(images/arrow-small-left.svg) no-repeat 10px 16px;
}
body.light .galleria-info-description,
body.light .galleria-counter {
  color: #fcfcfc;
}
body.light #menu-toggle,
body.light button,
body.light input[type="reset"],
body.light input[type="submit"],
body.light input[type="button"],
body.light .widget_tag_cloud a,
body.light .wp_widget_tag_cloud a,
body.light a#cancel-comment-reply-link,
body.light .comment-edit-link,
body.light .custom-more-link,
body.light #infinite-handle span {
  background: #fcfcfc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.light nav[role="navigation"] .nav ul.sub-menu li,
body.light nav[role="navigation"] .nav ul.children li {
  background: #fcfcfc;
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"] .nav ul.sub-menu li,
  body.light nav[role="navigation"] .nav ul.children li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}
body.light .placeholder-text {
  border: 1px solid #fcfcfc;
}
body.light .sticky-text {
  background: #fcfcfc;
}
body.light div.gallery .gallery-caption,
body.light header[role="banner"] .tagline,
body.light footer[role="contentinfo"],
body.light .post-detail a,
body.light a time,
body.light .blog-footer a,
body.light .post-navigation a,
body.light .attached-to-gallery .entry, body.light.page-template-homepage-php .content,
body.light .placeholder-text, body.light.page-template-sitemap-php .content time,
body.light .attachment .attachment-excerpt,
body.light .widget_photography2_recently_discussed_widget section time:hover,
body.light #comments li.comment,
body.light #comments li.comment:hover time,
body.light #comments li.comment:hover .comment-reply-link {
  color: #646464;
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"] .nav a:hover {
    color: #555555;
  }
}
body.light table caption,
body.light nav[role="navigation"] .nav a, body.light.page-template-sitemap-php .content li a, body.light.page-template-sitemap-php .content li:hover time,
body.light aside[role="complementary"] .widget_tag_cloud a:hover,
body.light aside[role="complementary"] .wp_widget_tag_cloud a:hover,
body.light .widget_photography2_recently_discussed_widget section .recent-post-title,
body.light #comments .comment-author,
body.light .comment-field,
body.light button,
body.light input[type="reset"],
body.light input[type="submit"],
body.light input[type="button"],
body.light .widget_tag_cloud a,
body.light .wp_widget_tag_cloud a,
body.light a#cancel-comment-reply-link,
body.light .comment-edit-link,
body.light .custom-more-link,
body.light #infinite-handle span {
  color: #555555;
}
body.light blockquote {
  border-left: 4px solid #555555;
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"] .nav a {
    color: #373737;
  }
}
body.light a,
body.light h1, body.light h2, body.light h3, body.light h4, body.light h5, body.light h6,
body.light blockquote,
body.light tt,
body.light kbd,
body.light pre,
body.light code,
body.light samp,
body.light mark,
body.light #menu-toggle:hover,
body.light #menu-toggle.active,
body.light nav[role="navigation"] .nav a:hover,
body.light nav[role="navigation"] .nav ul.sub-menu li a:hover,
body.light nav[role="navigation"] .nav ul.children li a:hover,
body.light .post-detail a:hover,
body.light a time:hover,
body.light .sticky-text,
body.light .blog-footer a:hover,
body.light .post-navigation a:hover, body.light.page-template-sitemap-php .content li:hover a,
body.light aside[role="complementary"] .widget_tag_cloud a,
body.light aside[role="complementary"] .wp_widget_tag_cloud a,
body.light aside[role="complementary"] .widget_tag_cloud a:active,
body.light aside[role="complementary"] .wp_widget_tag_cloud a:active,
body.light .widget_photography2_recently_discussed_widget .recent-post:hover .recent-post-title,
body.light textarea:focus,
body.light select:focus,
body.light input[type="date"]:focus,
body.light input[type="datetime"]:focus,
body.light input[type="datetime-local"]:focus,
body.light input[type="email"]:focus,
body.light input[type="month"]:focus,
body.light input[type="number"]:focus,
body.light input[type="password"]:focus,
body.light input[type="search"]:focus,
body.light input[type="tel"]:focus,
body.light input[type="text"]:focus,
body.light input[type="time"]:focus,
body.light input[type="url"]:focus,
body.light input[type="week"]:focus,
body.light button:hover,
body.light input[type="reset"]:hover,
body.light input[type="submit"]:hover,
body.light input[type="button"]:hover,
body.light .widget_tag_cloud a:hover,
body.light .wp_widget_tag_cloud a:hover,
body.light a#cancel-comment-reply-link:hover,
body.light .comment-edit-link:hover,
body.light .custom-more-link:hover {
  color: #373737;
}
body.light .entry,
body.light code,
body.light pre,
body.light table tbody tr:nth-child(even) td,
body.light table tbody tr.even td,
body.light .galleria-thumbnails .galleria-image,
body.light .placeholder-text,
body.light #comments li.comment,
body.light #comments li.bypostauthor article,
body.light textarea,
body.light select,
body.light input[type="date"],
body.light input[type="datetime"],
body.light input[type="datetime-local"],
body.light input[type="email"],
body.light input[type="month"],
body.light input[type="number"],
body.light input[type="password"],
body.light input[type="search"],
body.light input[type="tel"],
body.light input[type="text"],
body.light input[type="time"],
body.light input[type="url"],
body.light input[type="week"] {
  background: rgba(0, 0, 0, 0.06);
}
body.light .galleria-container {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"] .nav ul.sub-menu li,
  body.light nav[role="navigation"] .nav ul.children li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}
body.light .entry,
body.light pre,
body.light #comments li.comment,
body.light textarea,
body.light select,
body.light input[type="date"],
body.light input[type="datetime"],
body.light input[type="datetime-local"],
body.light input[type="email"],
body.light input[type="month"],
body.light input[type="number"],
body.light input[type="password"],
body.light input[type="search"],
body.light input[type="tel"],
body.light input[type="text"],
body.light input[type="time"],
body.light input[type="url"],
body.light input[type="week"] {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
body.light hr {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
body.light nav[role="navigation"] .nav li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 900px) {
  body.light nav[role="navigation"] .nav li a {
    border-bottom: none;
  }
}
body.light body.search .content .type-post,
body.light body.search .content .type-page {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.light img,
body.light #container embed,
body.light #container object,
body.light #container video,
body.light #container iframe {
  -webkit-box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.04);
}
body.light textarea,
body.light select,
body.light input[type="date"],
body.light input[type="datetime"],
body.light input[type="datetime-local"],
body.light input[type="email"],
body.light input[type="month"],
body.light input[type="number"],
body.light input[type="password"],
body.light input[type="search"],
body.light input[type="tel"],
body.light input[type="text"],
body.light input[type="time"],
body.light input[type="url"],
body.light input[type="week"],
body.light #container {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* _print.scss
 * Print styles
 * ------------------------------------------------------------------ */
@media print {
  * {
    background-color: none;
    color: #272626;
    border: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  html,
  body {
    font-size: 12px !important;
  }

  #respond,
  #menu-toggle,
  .cat-links,
  .tag-links,
  .page-links,
  .comment-count,
  nav a[rel="next"],
  nav a[rel="prev"],
  nav[role="navigation"] {
    display: none !important;
  }

  hr {
    margin: 0;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  object:after {
    content: "View online to see this video.";
    display: block;
    margin-bottom: 12px;
    margin-bottom: 0.85714rem;
  }
}
