/*
Theme Name: Tonal
Theme URI: https://wordpress.com/themes/tonal/
Description: Tonal takes its cue from your content, with a minimal style that changes based on your background color. This theme has large featured images, full-width videos, and post formats that look great on any device.
Version: 1.1.2
Author: Automattic
Author URI: https://wordpress.com/themes/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tonal
Tags: blog, one-column, custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, post-formats, rtl-language-support, sticky-post, translation-ready
*/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Accessibility
 * 3.0 - Formatting
 * 4.0 - Structure
 * 5.0 - Content
 * 		5.1 - Buttons
 * 		5.2 - Inputs
 * 		5.3 - Lists
 * 		5.4 - Media
 * 6.0 - Comments
 * 7.0 - Navigation
 * 8.0 - Tables
 * 9.0 - Typography
 * 10.0 - Widgets
 * 11.0 - Infinite scroll
 * 12.0 - Eventbrite
 * 13.0 - Media queries
 * 14.0 - WPCOM Specific Styles
 **
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 Reset
 *
 * 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/
 *
 * -----------------------------------------------------------------------------
 */
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: 50%;
  /* 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_texttonalize_intonalafari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

body {
  background: white;
}

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 Accessibility
 * -----------------------------------------------------------------------------
 */
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}

/**
 * 3.0 Formatting
 * -----------------------------------------------------------------------------
 */
.alignleft {
  display: inline;
  float: left;
  margin-right: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 10px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

img.alignright {
  margin-left: 10px;
}

img.alignleft {
  margin-right: 10px;
}

.center-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.fullwidth-block {
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0 20px 0;
}

.archive-header.fullwidth-block {
  padding: 20px 0 10px 0;
}

.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;
}

/**
 * 4.0 Structure
 * -----------------------------------------------------------------------------
 */
body {
  margin: 0;
}

#page:before,
#page:after {
  content: "";
  height: 20px;
  left: 0;
  position: fixed;
  right: 0;
}

body.admin-bar #page:before {
  top: 32px;
}

#page:after {
  bottom: 0px;
}

#page {
  margin-bottom: -10px;
  position: relative;
}

#main,
#masthead {
  margin: 0 auto;
  max-width: 80%;
}

#colophon {
  clear: both;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 auto;
  max-width: 80%;
  padding: 20px 0;
  position: relative;
}

#masthead {
  padding: 30px 0;
  position: relative;
  text-align: center;
}

.site-branding.site-headerfix {
  position: absolute;
  margin: 5% 10%;
  padding: 20px 0;
  text-align: center;
  z-index: 9999;
}

#site-header {
  margin: 0 auto;
  max-width: 1020px;
  position: relative;
}

.site-branding {
  padding: 0 5px;
}

/**
 * 5.0 Content
 * -----------------------------------------------------------------------------
 */
.bypostauthor {
  font-weight: 700;
}

.hentry {
  margin: 0;
  padding: 10px 0;
  position: relative;
  text-align: center;
}

.byline,
.updated {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-links {
  clear: both;
  margin: 0 0 10px;
}

.entry-thumbnail {
  padding: 0 0 10px 0;
}

.entry-format {
  top: 92px;
}

.entry-meta {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px 0;
  opacity: 0.8;
}

.entry-meta .cat-links,
.entry-meta .edit-link,
.cat-list {
  display: inline-block;
}

.entry-meta .cat-links,
.entry-meta .edit-links {
  width: 100%;
}

.entry-meta:hover {
  opacity: 1;
}

.comment-icon.icon-block {
  top: 42px;
}

.hentry.sticky .entry-format:before {
  content: '\f308';
}

.hentry.format-aside .entry-format:before {
  content: '\f101';
}

.hentry.format-link .entry-format:before {
  con