/*
Theme Name: simpler
Theme URI: http://simpler.fontethemes.com/
Author: Fonte Themes
Author URI: http://simpler.fontethemes.com/documentation
Description: Simpler is a clean, minimalist, responsive, blog-focused theme designed for clarity. Simpler is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simpler
Tags: gray, white, dark, light, two-columns, fluid-layout, responsive-layout, right-sidebar, custom-menu, microformats, sticky-post, threaded-comments, translation-ready

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.

simpler 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
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13.0 Basic layout

--------------------------------------------------------------*/
/* Custom, iPhone Retina. 320px in a desktop */
/* Extra Small Devices, Phones. 480px in a desktop */
/* Small Devices, Tablets. 768px in a desktop */
/* Medium Devices, Desktops. 992px in a desktop */
/* Large Devices, Wide Screens. 1200px in a desktop */
/*--------------------------------------------------------------
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/ */
  box-sizing: border-box;
  /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

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: #333333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: bold;
  -ms-word-break: break-word;
  word-break: break-word;
}

h1 {
  font-size: 40px;
  font-size: 4rem;
}

h2 {
  font-size: 35px;
  font-size: 3.5rem;
}

h3 {
  font-size: 30px;
  font-size: 3rem;
}

h4 {
  font-size: 28px;
  font-size: 2.8rem;
}

h5 {
  font-size: 26px;
  font-size: 2.6rem;
}

h6 {
  font-size: 24px;
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.5em;
}

b, strong {
  font-weight: bold;
}

dfn, cite, em, i {
  font-style: italic;
}

cite {
  padding: 0 0 0 3.5rem;
}

blockquote {
  margin: 0 1.5em;
  color: #333333;
  letter-spacing: .01rem;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 28px;
  padding: 0 0 0 1rem;
  border-left: 3px #333333 solid;
  -webkit-font-smoothing: antialiased;
}

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-size: 15px;
  font-size: 1.5rem;
  font-family: 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. */
}

/* Featured Images */
.featured-image {
  background-color: #fff;
}

.featured-image img {
  display: block;
  margin: 0 auto;
  padding: 1rem 0 2.5rem 0;
}

figure {
  margin: 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

th {
  font-weight: bold;
}

.entry-header h1, .entry-header h1 a, .entry-header h1 a:visited {
  color: #333333;
  font-size: 4.0rem;
  line-height: 4.0rem;
  font-weight: 600;
  text-decoration: none;
  padding: 2.5rem 0 1.6rem 0;
}

.entry-header h1 a:hover {
  color: #0f6780;
}

#main .entry-footer {
  margin: 0 0 0 0;
}

.fa-calendar, .fa-folder, .fa-tags, .fa-comment, .fa-pencil-square-o {
  color: #333333;
  padding: 0 1rem 0 0;
}

.cat-links a, .tags-links a {
  font-size: 1.5rem;
  background-color: #333333;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: 0.2rem 0;
  text-decoration: none;
  display: inline-block;
}

.cat-links a:hover, .tags-links a:hover {
  background-color: #2790ae;
  color: #fff;
}

/*--------------------------------------------------------------
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, 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: 18px;
  font-size: 1.8rem;
  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);
  font-size: 18px;
  font-size: 1.8rem;
}

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);
  font-size: 18px;
  font-size: 1.8rem;
}

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 */
  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: 3px;
}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #2790ae;
}
a:visited {
  color: #2790ae;
}
a:hover, a:focus, a:active {
  color: #0f6780;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: none;
  display: inline-block;
  float: right;
  width: 100%;
  text-align: right;
  margin: 4rem 0 2rem 0;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
  background: #FFF;
  border: 1px #eee solid;
}
.main-navigation ul ul ul {
  margin: -0.1rem 0 0 0;
  left: -999em;
  top: 0;
}
.main-navigation ul ul li {
  text-align: left;
  border-bottom: 1px #eee solid;
}
.main-navigation ul ul li:hover > ul {
  left: 100%;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul {
  left: auto;
}
.main-navigation li {
  display: inline-block;
  text-align: right;
  position: relative;
}
.main-navigation li:hover > a {
  background-color: #eee;
}
.main-navigation a {
  display: block;
  text-decoration: none;
  color: #333333;
  padding: 0.5rem 1rem;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
  background-color: #eee;
}

.menu-toggle,
.main-navigation.toggled .nav-menu {
  display: block;
  float: right;
}

.menu-toggle {
  display: block;
  height: 7rem;
  padding: 0 1em;
  margin: 0 1em;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  color: black;
  background-color: white;
  border: 0px;
  box-shadow: none;
  float: right;
  font-family: FontAwesome;
}

button.menu-toggle, button.menu-toggle:active, button.menu-toggle:focus, button.menu-toggle:hover {
  border: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none !important;
  font-size: 14px;
  font-size: 1.4rem;
}

.main-navigation ul {
  display: none;
}

@media only screen and (min-width: 31rem) {
  .menu-toggle {
    display: none;
  }

  .main-navigation {
    text-align: center;
  }

  .main-navigation ul {
    display: inline-block;
  }
}
@media only screen and (min-width: 62rem) {
  .main-navigation {
    width: 55%;
  }

  .main-navigation {
    text-align: right;
  }
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 2.5rem 0;
  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%;
}

.paging-navigation {
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 2em;
  list-style-type: none;
  background: #fff;
}

.paging-navigation ul {
  margin: 0;
}

.paging-navigation li {
  display: inline;
}

.page-numbers {
  text-align: center;
}

a.page-numbers, span.page-numbers {
  padding: .3rem .7rem;
  background-color: #fff;
  color: #333333;
  border: 1px solid #333333;
  text-decoration: none;
}

a:hover.page-numbers {
  background-color: #2790ae;
  color: #fff;
}

.paging-navigation .current {
  background-color: #333333;
  color: #fff;
}

.page-numbers .dots {
  border: 0px;
}

@media screen and (max-width: 30rem) {
  .main-navigation.toggled .nav-menu {
    display: block;
  }

  .main-navigation ul {
    display: none;
    padding-left: 0;
    position: relative;
    top: inherit;
    left: 0;
    float: none;
  }

  .main-navigation li {
    float: left;
    width: 100%;
    text-align: left;
    border-top: 1px dotted #313131;
  }

  .nav-menu {
    border-bottom: 1px dotted #313131;
  }

  .main-navigation li a {
    padding: 1.3rem 2rem;
  }

  .main-navigation li li a {
    padding-left: 4rem;
  }

  .main-navigation li li li a {
    padding-left: 6em;
  }

  .main-navigation ul ul,
  .main-navigation ul ul ul {
    position: relative;
    top: inherit;
    left: 0;
    display: block;
    float: none;
    box-shadow: none;
  }

  .main-navigation ul ul li:hover > ul {
    left: 0;
  }

  .main-navigation ul ul a {
    width: 100%;
  }

  .main-navigation .current_page_ancestor {
    background: inherit;
  }

  .main-navigation ul ul .current_page_parent {
    color: inherit;
    background: inherit;
  }

  .main-navigation .current_page_item > a,
  .main-navigation .current_page_item > a:hover,
  .main-navigation .current_page_item li:hover,
  .main-navigation .current_page_parent .current_page_item > a {
    /*		color: #fff;
                    color: hsl(0, 0%, 100%);
                    background: #4d4d4d;
                    background: hsl(0, 0%, 30%);    */
  }
}
/* Social Menu */
.menu-social {
  display: block;
  overflow: hidden;
}

.menu-social ul {
  text-align: center;
  list-style: none;
  padding: 2rem 0 2rem 0;
  margin: 0;
}

@media only screen and (min-width: 62rem) {
  .menu-social ul {
    float: right;
    text-align: right;
    margin-right: 2rem;
    max-width: 36rem;
  }
}
.menu-social ul li {
  position: relative;
  display: inline-block;
}

.menu-social li a:before {
  display: inline-block;
  padding: 0 5px;
  vertical-align: top;
  font-family: 'Fontawesome';
  font-size: 30px;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  content: '\f0c0';
}

.menu-social li a[href*="wordpress.org"]::before,
.menu-social li a[href*="wordpress.com"]::before {
  content: '\f19a';
}

.menu-social li a[href*="wordpress.org"]:hover:before,
.menu-social li a[href*="wordpress.com"]:hover:before {
  color: #21759b;
}

.menu-social li a[href*="facebook.com"]::before {
  content: '\f09a';
}

.menu-social li a[href*="facebook.com"]:hover:before {
  content: '\f09a';
  color: #3b5998;
}

.menu-social li a[href*="twitter.com"]::before {
  content: '\f099';
}

.menu-social li a[href*="twitter.com"]:hover:before {
  content: '\f099';
  color: #33ccff;
}

.menu-social li a[href*="dribbble.com"]::before {
  content: '\f17d';
}

.menu-social li a[href*="dribbble.com"]:hover:before {
  color: #ea4c89;
}

.menu-social li a[href*="plus.google.com"]::before {
  content: '\f0d5';
}

.menu-social li a[href*="plus.google.com"]:hover:before {
  color: #dd4b39;
}

.menu-social li a[href*="pinterest.com"]::before {
  content: '\f0d2';
}

.menu-social li a[href*="pinterest.com"]:hover:before {
  color: #c8232c;
}

.menu-social li a[href*="github.com"]::before {
  content: '\f09b';
}

.menu-social li a[href*="github.com"]:hover:before {
  color: #171515;
}

.menu-social li a[href*="tumblr.com"]::before {
  content: '\f173';
}

.menu-social li a[href*="tumblr.com"]:hover:before {
  color: #34526f;
}

.menu-social li a[href*="youtube.com"]::before {
  content: '\f167';
}

.menu-social li a[href*="youtube.com"]:hover:before {
  color: #c4302b;
}

.menu-social li a[href*="flickr.com"]::before {
  content: '\f16e';
}

.menu-social li a[href*="flickr.com"]:hover:before {
  color: #ff0084;
}

.menu-social li a[href*="vimeo.com"]::before {
  content: '\f194';
}

.menu-social li a[href*="vimeo.com"]:hover:before {
  color: #1AB7EA;
}

.menu-social li a[href*="instagram.com"]::before {
  content: '\f16d';
}

.menu-social li a[href*="instagram.com"]:hover:before {
  color: #3f729b;
}

.menu-social li a[href*="linkedin.com"]::before {
  content: '\f0e1';
}

.menu-social li a[href*="linkedin.com"]:hover:before {
  color: #0e76a8;
}

/*--------------------------------------------------------------
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-size: 1.4rem;
  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 {
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets */
}
.widget select {
  max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
  padding: 0.7rem;
  margin: 0 0 0 0.7rem;
}

.widget {
  margin: 0 0 2.5em !important;
  font-size: 1.8rem;
}

.widget-title {
  color: #333333;
  font-size: 2rem;
  border-bottom: 1px #333333 dotted;
  margin-bottom: 1.0rem;
  margin-right: 1.6rem;
  padding-left: 0.5rem;
  text-transform: uppercase;
}

.widget ul li {
  list-style-type: none;
}

/* --------------------------------------------------------------
	Sidebar. Widget 
-------------------------------------------------------------- */
.textwidget img {
  float: right;
  padding: 1.6rem 1.6rem 0 0;
}

/* --------------------------------------------------------------
	Sidebar. Search form 
-------------------------------------------------------------- */
.search-form {
  text-align: right;
  margin: 1.5rem 2rem 0 0;
}

#searchform input[type="text"] {
  padding: 0.1rem 0.5rem !important;
  margin: 0;
  height: 2rem;
}

/* --------------------------------------------------------------
	Sidebar. Twitter widget. http://wordpress.org/plugins/really-simple-twitter-feed-widget/
-------------------------------------------------------------- */
.widget_reallysimpletwitterwidget ul {
  margin: 0 0 0 1.250rem;
  padding: 0;
}

.widget_reallysimpletwitterwidget ul li {
  list-style-type: none;
  margin: 0.188rem 1.250rem 0.625rem 0.625rem;
  padding: 0 0 0.5rem 0;
  border-bottom: 1px #000 dotted;
  font-size: 1.6rem;
}

/* --------------------------------------------------------------
	Sidebar. Subscription form
-------------------------------------------------------------- */
.subscription-mail {
  text-align: center;
}

.subscription-text {
  font-family: 'Source Sans Pro', sans-serif;
  padding: 0.1rem 0.5rem !important;
  margin: 0;
  height: 2rem;
}

.subscription-button {
  font-family: 'Source Sans Pro', sans-serif;
  padding: 0.1rem 0.5rem !important;
  height: 2rem;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

#main .hentry {
  margin: 0;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.2rem 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Smaller fonts for smaller screens */
@media screen and (max-width: 30rem) {
  .entry-title {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.3em;
  }

  .entry-content h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }

  .entry-content h2 {
    font-size: 26px;
    font-size: 2.6rem;
  }

  .entry-content h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .entry-content h4 {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .entry-content h5 {
    font-size: 20px;
    font-size: 2rem;
  }

  .entry-content h6 {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .entry-content p,
  .entry-content ul,
  .entry-content ol {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .entry-content blockquote p {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5em;
  }
}
/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-link a, .edit-link a {
  font-size: 18px;
  font-size: 1.8rem;
  text-decoration: none;
}

.comments-title {
  font-size: 3.2rem;
  font-weight: normal;
  margin: 0 0 2rem 0;
}

.comments-area > ol {
  padding: 0;
  margin: 2rem 0;
  list-style-type: none;
}

ol.children {
  list-style-type: none;
}

.comment-list ol {
  margin-left: 50px;
}

.comment-meta {
  margin-bottom: 1rem;
}

.comment-author .avatar {
  width: 55px;
  display: block;
  float: left;
  margin-right: 20px;
}

.comment-author .fn {
  font-weight: 900;
  font-size: 20px;
  font-size: 2rem;
}

.comment-metadata {
  font-size: 14px;
  font-size: 1.4rem;
}

.comment-content {
  font-size: 90%;
}

.comment-content, .reply {
  margin-left: 7rem;
}

.comment-body {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid #cccccc 1px;
}

.comment-content a {
  word-wrap: break-word;
}

.comment-content ol {
  margin-left: 1.5rem;
}

.reply a {
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #666;
  line-height: 2.5rem;
  border-bottom: 1px #666 dotted;
}

.bypostauthor > .comment-body {
  position: relative;
  padding: 1em;
  margin-bottom: 2em;
  background: #ededed;
  border: none;
}

/* Comments responsive */
@media screen and (max-width: 30rem) {
  .comment-list ol {
    margin-left: 0;
  }

  .comment-content ol {
    margin-left: 1.5em;
  }

  .comment-content, .reply {
    margin-left: 0;
  }
}
.comment-reply-title {
  margin-bottom: .5em;
  font-size: 3.2rem;
  font-weight: normal;
}

.comment-form {
  padding-bottom: 4rem;
  font-family: "Source Sans Pro", sans-serif, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

.comment-form textarea {
  font-family: "Source Sans Pro", sans-serif, serif;
  font-size: 18px;
  font-size: 1.8rem;
}

.comment-form label {
  display: block;
}

.required {
  color: red;
}

.comment-awaiting-moderation {
  padding: .5rem 1rem;
  margin: 1rem 0;
  font-family: "Source Sans Pro", sans-serif, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  color: white;
  background: #84bd68;
  background: #83bc67;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.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%;
}

/*--------------------------------------------------------------
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 .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
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 {
  display: block;
}

/*--------------------------------------------------------------
13.0 Basic layout
--------------------------------------------------------------*/
.site-header {
  width: 100%;
  margin: 0 auto;
}

.site-branding {
  text-align: center;
}

.site-branding, .site-title, .site-description {
  width: 100%;
  clear: both;
}

h1.site-title, h1.site-title a {
  font-size: 60px;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

h2.site-description {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 62rem) {
  .site-header {
    width: 90%;
    max-width: 120rem;
    margin: 0 auto;
  }

  .site-branding {
    float: left;
    max-width: 40%;
    margin: 1rem 0 0 0;
    text-align: left;
  }
}
.content-area {
  float: none;
  clear: both;
  margin: 0;
}

.site-main {
  margin: 0;
}

.site-content .widget-area {
  float: none;
  clear: both;
}

.site-content {
  width: 95%;
  margin: 0 auto;
}

@media only screen and (min-width: 62rem) {
  .site-content {
    width: 90%;
    max-width: 120rem;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 62rem) {
  .content-area {
    float: left;
    clear: none;
    margin: 0 -32% 0 0;
    width: 90%;
  }

  .site-main {
    margin: 0 32% 0 0;
  }

  .site-content .widget-area {
    float: right;
    clear: none;
    overflow: hidden;
    width: 32%;
  }
}
/*
    Footer 
*/
.site-footer {
  clear: both;
  width: 100%;
  background-color: #333333;
  color: #fff;
}

.site-info {
  font-size: 16px;
  font-size: 1.6rem;
  width: 95%;
  margin: 0 auto;
  padding: 2rem 0 2rem 0;
  text-align: center;
}

.site-info a {
  color: white;
}

@media only screen and (min-width: 62rem) {
  .site-info {
    width: 90%;
    max-width: 120rem;
    margin: 0 auto;
  }
}
