diff --git a/_config.yml b/_config.yml
index d47df9b8..f00c894a 100644
--- a/_config.yml
+++ b/_config.yml
@@ -16,7 +16,7 @@ baseurl                  : "/minimal-mistakes" # the subpath of your site, e.g.
 email                    : "your-email@domain.com"
 logo                     : "site-logo.png"
 teaser                   : "500x300.png"
-breadcrumbs              : true
+breadcrumbs              : # true, false (default)
 breadcrumb_home_label    : "Home"
 breadcrumb_separator     : "/"
 twitter:
@@ -35,8 +35,7 @@ comments:
   facebook:
     # https://developers.facebook.com/docs/plugins/comments
     appid                :
-    num_posts            : # 5
-    width                : # 580
+    num_posts            : # 5 (default)
     colorscheme          : # "light" (default), "dark"
 google_site_verification :
 bing_site_verification   :
@@ -249,6 +248,7 @@ author:
   steam            :
   tumblr           :
   twitter          : *twitter
+  vine             :
   weibo            :
   xing             :
   youtube          :
\ No newline at end of file
diff --git a/_data/ui-text.yml b/_data/ui-text.yml
index fa97c940..d6a0bcac 100644
--- a/_data/ui-text.yml
+++ b/_data/ui-text.yml
@@ -3,6 +3,7 @@
 # English (default)
 # -----------------
 en: &DEFAULT_EN
+  page                : "Page"
   pagination_previous : "Previous"
   pagination_next     : "Next"
   toc_label           : "Overview"
@@ -14,10 +15,11 @@ en: &DEFAULT_EN
   meta_label          :
   tags_label          : "Tags:"
   categories_label    : "Categories:"
-  date_label          : "Last Updated:"
+  date_label          :
   comments_label      : "Leave a Comment"
+  more_label          : "Learn More"
   related_label       : "You May Also Enjoy"
-  follow_label        : "Follow "
+  follow_label        : "Follow:"
   feed_label          : "Feed"
   powered_by          : "Powered by"
 en_US:
diff --git a/_includes/archive-single.html b/_includes/archive-single.html
index 4164e3f6..4285b29f 100644
--- a/_includes/archive-single.html
+++ b/_includes/archive-single.html
@@ -19,10 +19,11 @@
             {% else %}
               "{{ teaser | prepend: "/images/" | prepend: base_path }}"
             {% endif %}
-            alt="{{ page.title }}">
+            alt="">
         </div>
-        {% endif %}
-      <h2 class="archive__item-title" itemprop="headline">{% if post.id %}{{ post.title | markdownify | remove: "<p>" | remove: "</p>" }}{% else %}{{ post.title }}{% endif %}</h2>
+      {% endif %}
+      <h2 class="archive__item-title" itemprop="headline">{% if post.id %}{{ post.title | markdownify | remove: "<p>" | remove: "</p>" }}{% else %}{{ post.title }}{% endif %}{% if post.link %}<i class="fa fa-star" aria-hidden="true"></i>{% endif %}</h2>
+      {% if site.read_time and post.read_time %}<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>{% endif %}
       {% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
     </article>
   </a>
diff --git a/_includes/author-profile.html b/_includes/author-profile.html
index 071656c1..ddd1c2b7 100644
--- a/_includes/author-profile.html
+++ b/_includes/author-profile.html
@@ -18,8 +18,8 @@
   </div>
 
   <div class="author__urls-wrapper">
-    <button class="btn btn--inverse">Follow</button>
-    <ul class="author__urls">
+    <button class="btn btn--inverse btn--small">Follow</button>
+    <ul class="author__urls social-icons">
       {% if author.uri %}
         <li><a href="{{ author.uri }}" target="_blank"><i class="fa fa-fw fa-globe"></i>Website</a></li>
       {% endif %}
@@ -54,7 +54,7 @@
         <li><a href="http://stackoverflow.com/users/{{ author.stackoverflow }}" target="_blank"><i class="fa fa-fw fa-stack-overflow"></i> Stackoverflow</a></li>
       {% endif %}
       {% if author.lastfm %}
-        <li><a href="http://lastfm.com/user/{{ author.lastfm }}" target="_blank"><i class="fa fa-fw fa-music"></i> Last.fm</a></li>
+        <li><a href="http://lastfm.com/user/{{ author.lastfm }}" target="_blank"><i class="fa fa-fw fa-lastfm-square"></i> Last.fm</a></li>
       {% endif %}
       {% if author.dribbble %}
         <li><a href="http://dribbble.com/{{ author.dribbble }}" target="_blank"><i class="fa fa-fw fa-dribbble"></i> Dribbble</a></li>
@@ -83,6 +83,9 @@
       {% if author.codepen %}
         <li><a href="http://codepen.io/{{ author.codepen }}" target="_blank"><i class="fa fa-fw fa-codepen"></i> CodePen</a></li>
       {% endif %}
+      {% if author.vine %}
+        <li><a href="https://vine.co/u/{{ author.vine }}" target="_blank"><i class="fa fa-fw fa-vine"></i> Vine</a></li>
+      {% endif %}
     </ul>
   </div>
 </div>
diff --git a/_includes/comments-providers/scripts.html b/_includes/comments-providers/scripts.html
new file mode 100644
index 00000000..df699fc5
--- /dev/null
+++ b/_includes/comments-providers/scripts.html
@@ -0,0 +1,14 @@
+{% if site.comments.provider and page.comments %}
+
+{% case site.comments.provider %}
+{% when "disqus" %}
+  {% include /comments-providers/disqus.html %}
+{% when "facebook" %}
+  {% include /comments-providers/facebook.html %}
+{% when "google-plus" %}
+  {% include /comments-providers/google-plus.html %}
+{% when "custom" %}
+  {% include /comments-providers/custom.html %}
+{% endcase %}
+
+{% endif %}
\ No newline at end of file
diff --git a/_includes/comments.html b/_includes/comments.html
index df699fc5..0e33033e 100644
--- a/_includes/comments.html
+++ b/_includes/comments.html
@@ -1,14 +1,13 @@
-{% if site.comments.provider and page.comments %}
-
-{% case site.comments.provider %}
-{% when "disqus" %}
-  {% include /comments-providers/disqus.html %}
-{% when "facebook" %}
-  {% include /comments-providers/facebook.html %}
-{% when "google-plus" %}
-  {% include /comments-providers/google-plus.html %}
-{% when "custom" %}
-  {% include /comments-providers/custom.html %}
-{% endcase %}
-
-{% endif %}
\ No newline at end of file
+<div class="page__comments">
+  <h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label }}</h4>
+  {% case site.comments.provider %}
+  {% when "disqus" %}
+    <section id="disqus_thread"></section>
+  {% when "facebook" %}
+    <section class="fb-comments" data-href="{{ base_path }}{{ page.url }}" data-mobile="true" data-num-posts="{{ site.comments.facebook.num_posts | default: 5 }}" data-width="100%" data-colorscheme="{{ site.comments.facebook.colorscheme | default: 'light' }}"></section>
+  {% when "google-plus" %}
+    <section class="g-comments" data-href="{{ base_path }}{{ page.url }}" data-first_party_property="BLOGGER" data-view_type="FILTERED_POSTMOD">Loading Google+ Comments ...</section>
+  {% when "custom" %}
+    <section id="comments"></section>
+  {% endcase %}
+</div>
\ No newline at end of file
diff --git a/_includes/feature-row b/_includes/feature-row
new file mode 100644
index 00000000..965a0a44
--- /dev/null
+++ b/_includes/feature-row
@@ -0,0 +1,45 @@
+{% include base_path %}
+
+{% if include.id %}
+  {% assign feature_row = page.[include.id] %}
+{% else %}
+  {% assign feature_row = page.feature_row %}
+{% endif %}
+
+<div class="feature__wrapper">
+
+  {% for f in feature_row %}
+    <div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
+      <div class="archive__item">
+        {% if f.image_path %}
+          <div class="archive__item-teaser">
+            <img src=
+              {% if f.image_path contains "http" %}
+                "{{ f.image_path }}"
+              {% else %}
+                "{{ f.image_path | prepend: "/images/" | prepend: base_path }}"
+              {% endif %}
+            alt="{% if f.alt %}{{ f.alt }}{% endif %}">
+          </div>
+        {% endif %}
+
+        <div class="archive__item-body">
+          {% if f.title %}
+            <h2 class="archive__item-title">{{ f.title }}</h2>
+          {% endif %}
+
+          {% if f.excerpt %}
+            <div class="archive__item-excerpt">
+              {{ f.excerpt | markdownify }}
+            </div>
+          {% endif %}
+
+          {% if f.url %}
+            <p><a href="{{ f.url }}" class="btn {{ f.btn_class }}">{{ f.btn_label | default: site.data.ui-text[site.locale].more_label }}</a></p>
+          {% endif %}
+        </div>
+      </div>
+    </div>
+  {% endfor %}
+
+</div>
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
index 62634b3a..450f6410 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -15,7 +15,7 @@
 {% endif %}
 
 <div class="page__footer-follow">
-  <ul>
+  <ul class="social-icons">
     {% if site.data.ui-text[site.locale].follow_label %}
       <li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li>
     {% endif %}
diff --git a/_includes/gallery b/_includes/gallery
index 9530f3b3..9e6f31ea 100644
--- a/_includes/gallery
+++ b/_includes/gallery
@@ -6,17 +6,17 @@
   {% assign gallery = page.gallery %}
 {% endif %}
 
-{% capture gallery-size %}{{ gallery | size }}{% endcapture %}
+{% capture gallery_size %}{{ gallery | size }}{% endcapture %}
 
-{% if gallery-size == '2' %}
-  {% assign gallery-layout = 'half' %}
-{% elsif gallery-size >= '3' %}
-  {% assign gallery-layout = 'third' %}
+{% if gallery_size == '2' %}
+  {% assign gallery_layout = 'half' %}
+{% elsif gallery_size >= '3' %}
+  {% assign gallery_layout = 'third' %}
 {% else %}
-  {% assign gallery-layout = '' %}
+  {% assign gallery_layout = '' %}
 {% endif %}
 
-<figure class="{{ gallery-layout }} {{ include.class }}">
+<figure class="{{ gallery_layout }} {{ include.class }}">
   {% for img in gallery %}
     {% if img.url %}
       <a href=
diff --git a/_includes/page__hero.html b/_includes/page__hero.html
new file mode 100644
index 00000000..1888b9da
--- /dev/null
+++ b/_includes/page__hero.html
@@ -0,0 +1,41 @@
+{% if page.header.image contains "http" %}
+  {% capture img_path %}{{ page.header.image }}{% endcapture %}
+{% else %}
+  {% capture img_path %}{{ page.header.image | prepend: "/images/" | prepend: base_path }}{% endcapture %}
+{% endif %}
+
+{% if page.header.overlay_image contains "http" %}
+  {% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %}
+{% elsif page.header.overlay_image %}
+  {% capture overlay_img_path %}{{ page.header.overlay_image | prepend: "/images/" | prepend: base_path }}{% endcapture %}
+{% endif %}
+
+<div class="page__hero{% if page.header.overlay_color or page.header.overlay_image %}--overlay{% endif %}"
+  style="{% if page.header.overlay_color %}background-color: {{ page.header.overlay_color | default: 'transparent' }};{% endif %} {% if overlay_img_path %}background-image: url('{{ overlay_img_path }}');{% endif %}"
+>
+  {% if page.header.overlay_color or page.header.overlay_image %}
+    <div class="wrapper">
+      <h1 class="page__title" itemprop="headline">
+        {% if paginator %}
+          {{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[site.locale].page }} {{ paginator.page }}{% endunless %}
+        {% else %}
+          {{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}
+        {% endif %}
+      </h1>
+      {% if page.excerpt %}
+        <p class="page__lead">{{ page.excerpt | markdownify | remove: "<p>" | remove: "</p>" }}</p>
+      {% endif %}
+      {% if site.read_time and page.read_time %}
+        <p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
+      {% endif %}
+      {% if page.header.cta_url %}
+        <p><a href="{{ page.header.cta_url }}" class="btn btn--light-outline btn--x-large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label }}</a></p>
+      {% endif %}
+    </div>
+  {% else %}
+    <img src="{{ img_path }}" alt="{{ page.title }}" class="page__hero-image">
+  {% endif %}
+  {% if page.header.caption %}
+    <span class="page__hero-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
+  {% endif %}
+</div>
\ No newline at end of file
diff --git a/_includes/read-time.html b/_includes/read-time.html
index 407c3a2b..86e7db84 100644
--- a/_includes/read-time.html
+++ b/_includes/read-time.html
@@ -1,4 +1,8 @@
-{% assign words = page.content | strip_html | number_of_words %}
+{% if post.read_time %}
+  {% assign words = post.content | strip_html | number_of_words %}
+{% elsif page.read_time %}
+  {% assign words = page.content | strip_html | number_of_words %}
+{% endif %}
 
 {% if words < 180 %}
   {{ site.data.ui-text[site.locale].less_than }} 1 {{ site.data.ui-text[site.locale].minute_read }}
diff --git a/_includes/scripts.html b/_includes/scripts.html
index d16c5c9f..138d271e 100644
--- a/_includes/scripts.html
+++ b/_includes/scripts.html
@@ -1,4 +1,4 @@
 <script src="{{ base_path }}/assets/js/main.min.js"></script>
 
 {% include analytics.html %}
-{% include comments.html %}
+{% include /comments-providers/scripts.html %}
diff --git a/_includes/seo.html b/_includes/seo.html
index 85d84b6a..2f1d71dc 100644
--- a/_includes/seo.html
+++ b/_includes/seo.html
@@ -16,7 +16,7 @@
   {% assign canonical_url = page.url | replace: "index.html", "" | prepend: site.url %}
 {% endif %}
 
-<title>{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ site.title_separator }} page {{ paginator.page }}{% endunless %}{% endif %}</title>
+<title>{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ site.title_separator }} {{ site.data.ui-text[site.locale].page }} {{ paginator.page }}{% endunless %}{% endif %}</title>
 
 {% assign seo_description = page.description | default: page.excerpt | default: site.description %}
 {% if seo_description %}
diff --git a/_includes/sidebar.html b/_includes/sidebar.html
new file mode 100644
index 00000000..c447a69d
--- /dev/null
+++ b/_includes/sidebar.html
@@ -0,0 +1,20 @@
+{% if page.author_profile or page.sidebar %}
+  <div class="sidebar sticky">
+  {% if page.author_profile %}{% include author-profile.html %}{% endif %}
+  {% if page.sidebar %}
+    {% for s in page.sidebar %}
+      {% if s.image %}
+        <img src=
+        {% if s.image contains "http" %}
+          "{{ s.image }}"
+        {% else %}
+          "{{ s.image | prepend: "/images/" | prepend: base_path }}"
+        {% endif %}
+        alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
+      {% endif %}
+      {% if s.title %}<h3>{{ s.title }}</h3>{% endif %}
+      {% if s.text %}{{ s.text | markdownify }}{% endif %}
+    {% endfor %}
+  {% endif %}
+  </div>
+{% endif %}
\ No newline at end of file
diff --git a/_layouts/archive.html b/_layouts/archive.html
index 959cb6a4..0c86d19e 100644
--- a/_layouts/archive.html
+++ b/_layouts/archive.html
@@ -2,7 +2,21 @@
 layout: default
 ---
 
-<div class="archive">
-  <h1 class="page__title">{{ page.title }}</h1>
-  {{ content }}
-</div><!-- /.archive -->
\ No newline at end of file
+{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
+  {% include page__hero.html %}
+{% endif %}
+
+{% if page.url != "/" and site.breadcrumbs and site.categories.type == "jekyll-archives" %}
+  {% include breadcrumbs.html %}
+{% endif %}
+
+<div id="main" role="main">
+  {% include sidebar.html %}
+
+  <div class="archive">
+    {% unless page.header.overlay_color or page.header.overlay_image %}
+      <h1 class="page__title">{{ page.title }}</h1>
+    {% endunless %}
+    {{ content }}
+  </div>
+</div>
\ No newline at end of file
diff --git a/_layouts/default.html b/_layouts/default.html
index 32a96f8c..1fe162d9 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -16,46 +16,7 @@ layout: compress
   {% include browser-upgrade.html %}
   {% include masthead.html %}
 
-  {% if page.header.image %}
-    <div class="page__hero">
-      <img src=
-        {% if page.header.image contains "http" %}
-          "{{ page.header.image }}"
-        {% else %}
-          "{{ page.header.image | prepend: "/images/" | prepend: base_path }}"
-        {% endif %}
-        alt="{{ page.title }}" class="page__hero-image">
-      {% if page.header.caption %}
-        <span class="page__hero-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
-      {% endif %}
-    </div>
-  {% endif %}
-
-  {% if site.breadcrumbs and site.categories.type == 'jekyll-archives' %}
-    {% include breadcrumbs.html %}
-  {% endif %}
-
-  <div id="main" role="main">
-    {% if page.author_profile or page.sidebar %}<div class="sidebar sticky">
-      {% if page.author_profile %}{% include author-profile.html %}{% endif %}
-      {% if page.sidebar %}
-        {% for s in page.sidebar %}
-          {% if s.image %}
-            <img src=
-            {% if s.image contains "http" %}
-              "{{ s.image }}"
-            {% else %}
-              "{{ s.image | prepend: "/images/" | prepend: base_path }}"
-            {% endif %}
-            alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
-          {% endif %}
-          {% if s.title %}<h3>{{ s.title }}</h3>{% endif %}
-          {% if s.text %}{{ s.text | markdownify }}{% endif %}
-        {% endfor %}
-      {% endif %}
-    </div>{% endif %}
-    {{ content }}
-  </div>
+  {{ content }}
 
   <div class="page__footer">
     <footer>
diff --git a/_layouts/single.html b/_layouts/single.html
index 77ef7d5b..481f8a75 100644
--- a/_layouts/single.html
+++ b/_layouts/single.html
@@ -4,62 +4,67 @@ layout: default
 
 {% include base_path %}
 
-<article class="page" itemscope itemtype="http://schema.org/CreativeWork">
-  {% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
-  {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
-  {% if page.modified %}<meta itemprop="dateModified" content="{{ page.modified | date: "%B %d, %Y" }}">{% endif %}
+{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
+  {% include page__hero.html %}
+{% endif %}
 
-  <div class="page__inner-wrap">
-    <header>
-      <h1 class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>
-      {% if site.read_time and page.read_time %}<p class="page__meta">{{ page.date | date: "%b %d, %Y" }} <span class="sep">·</span> {% include read-time.html %}</p>{% endif %}
-    </header>
+{% if page.url != "/" and site.breadcrumbs and site.categories.type == "jekyll-archives" %}
+  {% include breadcrumbs.html %}
+{% endif %}
 
-    <section class="page__content" itemprop="text">
-      {{ content }}
-      {% if page.link %}<div><a href="{{ page.link }}" class="btn">{{ site.data.ui-text[site.locale].ext_link_label }}</a></div>{% endif %}
-    </section>
+<div id="main" role="main">
+  {% include sidebar.html %}
 
-    <footer class="page__meta">
-      {% if site.data.ui-text[site.locale].meta_label %}
-        <h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
-      {% endif %}
-      {% include page__taxonomy.html %}
-      {% if page.modified %}
-        <p class="page__date"><strong>{{ site.data.ui-text[site.locale].date_label }}</strong> <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time></p>
-      {% elsif page.date %}
-        <p class="page__date"><strong>{{ site.data.ui-text[site.locale].date_label }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time></p>
-      {% endif %}
-    </footer>
+  <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
+    {% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
+    {% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
+    {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
+    {% if page.modified %}<meta itemprop="dateModified" content="{{ page.modified | date: "%B %d, %Y" }}">{% endif %}
 
-    {% if site.share and page.share %}{% include social-share.html %}{% endif %}
-  </div>
+    <div class="page__inner-wrap">
+      {% unless page.header.overlay_color or page.header.overlay_image %}
+        <header>
+          <h1 class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>
+          {% if site.read_time and page.read_time %}<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>{% endif %}
+        </header>
+      {% endunless %}
 
-  {% if site.comments.provider and page.comments %}
-    <h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label }}</h4>
-    {% case site.comments.provider %}
-    {% when "disqus" %}
-      <section id="disqus_thread"></section>
-    {% when "facebook" %}
-      <section class="fb-comments" data-href="{{ base_path }}{{ page.url }}" data-num-posts="{{ site.comments.facebook.num_posts | default: 5 }}" data-width="{{ site.comments.facebook.width | default: 580 }}" data-colorscheme="{{ site.comments.facebook.colorscheme | default: 'light' }}"></section>
-    {% when "google-plus" %}
-      <section class="g-comments" data-href="{{ base_path }}{{ page.url }}" data-first_party_property="BLOGGER" data-view_type="FILTERED_POSTMOD">Loading Google+ Comments ...</section>
-    {% when "custom" %}
-      <section id="comments"></section>
-    {% endcase %}
-  {% endif %}
-</article>
+      <section class="page__content" itemprop="text">
+        {{ content }}
+        {% if page.link %}<div><a href="{{ page.link }}" class="btn">{{ site.data.ui-text[site.locale].ext_link_label }}</a></div>{% endif %}
+      </section>
 
-{% comment %}<!-- only show related on a post page when not disabled -->{% endcomment %}
-{% if page.id and page.related and site.related_posts.size > 0 %}
-  <div class="page__related">
-    {% if site.data.ui-text[site.locale].related_label %}
-      <h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label }}</h4>
-    {% endif %}
-    <div class="grid__wrapper">
-      {% for post in site.related_posts limit:4 %}
-        {% include archive-single.html type="grid" %}
-      {% endfor %}
+      <footer class="page__meta">
+        {% if site.data.ui-text[site.locale].meta_label %}
+          <h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
+        {% endif %}
+        {% include page__taxonomy.html %}
+        {% if page.modified %}
+          <p class="page__date"><strong>{{ site.data.ui-text[site.locale].date_label }}</strong> <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time></p>
+        {% elsif page.date %}
+          <p class="page__date"><strong>{{ site.data.ui-text[site.locale].date_label }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time></p>
+        {% endif %}
+      </footer>
+
+      {% if site.share and page.share %}{% include social-share.html %}{% endif %}
     </div>
-  </div>
-{% endif %}
\ No newline at end of file
+
+    {% if site.comments.provider and page.comments %}
+      {% include comments.html %}
+    {% endif %}
+  </article>
+
+  {% comment %}<!-- only show related on a post page when not disabled -->{% endcomment %}
+  {% if page.id and page.related and site.related_posts.size > 0 %}
+    <div class="page__related">
+      {% if site.data.ui-text[site.locale].related_label %}
+        <h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label }}</h4>
+      {% endif %}
+      <div class="grid__wrapper">
+        {% for post in site.related_posts limit:4 %}
+          {% include archive-single.html type="grid" %}
+        {% endfor %}
+      </div>
+    </div>
+  {% endif %}
+</div>
\ No newline at end of file
diff --git a/_layouts/splash.html b/_layouts/splash.html
new file mode 100644
index 00000000..035fa2f2
--- /dev/null
+++ b/_layouts/splash.html
@@ -0,0 +1,22 @@
+---
+layout: default
+---
+
+{% include base_path %}
+
+{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
+  {% include page__hero.html %}
+{% endif %}
+
+<div id="main" role="main">
+  <article class="splash" itemscope itemtype="http://schema.org/CreativeWork">
+    {% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
+    {% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
+    {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
+    {% if page.modified %}<meta itemprop="dateModified" content="{{ page.modified | date: "%B %d, %Y" }}">{% endif %}
+
+    <section class="page__content" itemprop="text">
+      {{ content }}
+    </section>
+  </article>
+</div>
\ No newline at end of file
diff --git a/_pages/splash-page.md b/_pages/splash-page.md
new file mode 100644
index 00000000..8bfbd155
--- /dev/null
+++ b/_pages/splash-page.md
@@ -0,0 +1,64 @@
+---
+title: "Splash Page"
+layout: splash
+permalink: /splash-page/
+date: 2016-03-23T11:48:41-04:00
+header:
+  overlay_color: "#000"
+  overlay_image: unsplash-image-1.jpg
+  cta_label: "Download"
+  cta_url: "https://github.com/mmistakes/minimal-mistakes/"
+  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
+excerpt: "Bacon ipsum dolor sit amet salami ham hock ham, hamburger corned beef short ribs kielbasa biltong t-bone drumstick tri-tip tail sirloin pork chop."
+intro: 
+  - excerpt: 'Nullam suscipit et nam, tellus velit pellentesque at malesuada, enim eaque. Quis nulla, netus tempor in diam gravida tincidunt, *proin faucibus* voluptate felis id sollicitudin. Centered with `type="center"`'
+feature_row:
+  - image_path: unsplash-gallery-image-1-th.jpg
+    alt: "placeholder image 1"
+    title: "Placeholder 1"
+    excerpt: "This is some sample content that goes here with **Markdown** formatting."
+  - image_path: unsplash-gallery-image-2-th.jpg
+    alt: "placeholder image 2"
+    title: "Placeholder 2"
+    excerpt: "This is some sample content that goes here with **Markdown** formatting."
+    url: "#test-link"
+    btn_label: "Read More"
+    btn_class: "btn--inverse btn--large"
+  - image_path: unsplash-gallery-image-3-th.jpg
+    title: "Placeholder 3"
+    excerpt: "This is some sample content that goes here with **Markdown** formatting."
+feature_row2:
+  - image_path: unsplash-gallery-image-2-th.jpg
+    alt: "placeholder image 2"
+    title: "Placeholder Image Left Aligned"
+    excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`'
+    url: "#test-link"
+    btn_label: "Read More"
+    btn_class: "btn--inverse btn--large"
+feature_row3:
+  - image_path: unsplash-gallery-image-2-th.jpg
+    alt: "placeholder image 2"
+    title: "Placeholder Image Right Aligned"
+    excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`'
+    url: "#test-link"
+    btn_label: "Read More"
+    btn_class: "btn--inverse btn--large"
+feature_row4:
+  - image_path: unsplash-gallery-image-2-th.jpg
+    alt: "placeholder image 2"
+    title: "Placeholder Image Center Aligned"
+    excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`'
+    url: "#test-link"
+    btn_label: "Read More"
+    btn_class: "btn--inverse btn--large"
+---
+
+{% include feature-row id="intro" type="center" %}
+
+{% include feature-row %}
+
+{% include feature-row id="feature_row2" type="left" %}
+
+{% include feature-row id="feature_row3" type="right" %}
+
+{% include feature-row id="feature_row4" type="center" %}
\ No newline at end of file
diff --git a/_posts/2010-08-05-post-image-linked.md b/_posts/2010-08-05-post-image-linked.md
index ac9abd40..af3f3fe9 100644
--- a/_posts/2010-08-05-post-image-linked.md
+++ b/_posts/2010-08-05-post-image-linked.md
@@ -7,4 +7,4 @@ tags:
   - Post Formats
 ---
 
-[![foo]({{http://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg?w=604}})](http://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg)
\ No newline at end of file
+[![foo](https://farm5.staticflickr.com/4073/4939853213_33ffc0290b_b.jpg)](https://flic.kr/p/8ww3fZ)
\ No newline at end of file
diff --git a/_posts/2010-08-06-post-image-linked-caption.md b/_posts/2010-08-06-post-image-linked-caption.md
index dfb6addf..ada6f6a7 100644
--- a/_posts/2010-08-06-post-image-linked-caption.md
+++ b/_posts/2010-08-06-post-image-linked-caption.md
@@ -8,10 +8,14 @@ tags:
 ---
 
 {% capture fig_img %}
-[![Foo](http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg)](http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg)
+[![Foo](https://farm5.staticflickr.com/4134/4940462712_7c28420b27_b.jpg)](https://flic.kr/p/8wzarA)
+{% endcapture %}
+
+{% capture fig_caption %}
+Stairs? Were we're going we don't need no stairs.
 {% endcapture %}
 
 <figure>
-  {{ fig_img | markdownify }}
-  <figcaption>Chunk of resinous blackboy husk, Clarkson, Western Australia. This burns like a spinifex log.</figcaption>
+  {{ fig_img | markdownify | remove: "<p>" | remove: "</p>" }}
+  <figcaption>{{ fig_caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
 </figure>
\ No newline at end of file
diff --git a/_posts/2010-08-07-post-image-caption.md b/_posts/2010-08-07-post-image-caption.md
index 51599dd4..f0b9f887 100644
--- a/_posts/2010-08-07-post-image-caption.md
+++ b/_posts/2010-08-07-post-image-caption.md
@@ -13,6 +13,6 @@ tags:
 {% endcapture %}
 
 <figure>
-  {{ fig_img | markdownify }}
+  {{ fig_img | markdownify | remove: "<p>" | remove: "</p>" }}
   <figcaption>Bell on wharf in San Francisco</figcaption>
 </figure>
\ No newline at end of file
diff --git a/_posts/2012-01-07-template-sticky.md b/_posts/2012-01-07-template-sticky.md
deleted file mode 100644
index 347d9899..00000000
--- a/_posts/2012-01-07-template-sticky.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-title: "Template: Sticky"
-categories:
-  - Uncategorized
-tags:
-  - sticky
-  - template
----
-
-This is a sticky post.
-
-There are a few things to verify:
-
-  * The sticky post should be distinctly recognizable in some way in comparison to normal posts.
-  * They should show at the very top of the blog index page, even though they could be several posts back chronologically.
-  * They should still show up again in their chronologically correct position in time, but without the sticky indicator.
\ No newline at end of file
diff --git a/_posts/2012-03-14-template-excerpt-generated.md b/_posts/2012-03-14-template-excerpt-generated.md
index 02542cf1..bf9f4d82 100644
--- a/_posts/2012-03-14-template-excerpt-generated.md
+++ b/_posts/2012-03-14-template-excerpt-generated.md
@@ -10,7 +10,7 @@ tags:
   - template
 ---
 
-This is the post content. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content.
+This is the post content. Archive-index pages should display an auto-generated excerpt of this content.
 
 <!--more-->
 
diff --git a/_posts/2012-03-15-template-featured-image-external.md b/_posts/2012-03-15-template-header-image-external.md
similarity index 67%
rename from _posts/2012-03-15-template-featured-image-external.md
rename to _posts/2012-03-15-template-header-image-external.md
index 82987273..ad2d7f67 100644
--- a/_posts/2012-03-15-template-featured-image-external.md
+++ b/_posts/2012-03-15-template-header-image-external.md
@@ -1,5 +1,5 @@
 ---
-title: "Template: Featured Image (External URL)"
+title: "Template: Header Image (External URL)"
 header:
   image: https://farm5.staticflickr.com/4140/4939863887_84705982fd_b.jpg
 categories:
@@ -12,6 +12,6 @@ tags:
   - template
 ---
 
-This post should display a **featured image**, if the theme supports it.
+This post should display a **header image**, if the theme supports it.
 
 Featured image is an external asset and should load.
\ No newline at end of file
diff --git a/_posts/2012-03-15-template-featured-image-horizontal.md b/_posts/2012-03-15-template-header-image-horizontal.md
similarity index 62%
rename from _posts/2012-03-15-template-featured-image-horizontal.md
rename to _posts/2012-03-15-template-header-image-horizontal.md
index 6e5313ff..dcd3c26f 100644
--- a/_posts/2012-03-15-template-featured-image-horizontal.md
+++ b/_posts/2012-03-15-template-header-image-horizontal.md
@@ -1,5 +1,5 @@
 ---
-title: "Template: Featured Image (Horizontal)"
+title: "Template: Header Image (Horizontal)"
 header:
   image: unsplash-image-1.jpg
   caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
@@ -13,8 +13,8 @@ tags:
   - template
 ---
 
-This post should display a **featured image**, if the theme supports it.
+This post should display a **header image**, if the theme supports it.
 
 Non-square images can provide some unique styling issues.
 
-This post tests a horizontal featured image.
\ No newline at end of file
+This post tests a horizontal header image.
\ No newline at end of file
diff --git a/_posts/2012-03-15-template-featured-image-text-readability.md b/_posts/2012-03-15-template-header-image-text-readability.md
similarity index 99%
rename from _posts/2012-03-15-template-featured-image-text-readability.md
rename to _posts/2012-03-15-template-header-image-text-readability.md
index c6ef168f..ee7977a8 100644
--- a/_posts/2012-03-15-template-featured-image-text-readability.md
+++ b/_posts/2012-03-15-template-header-image-text-readability.md
@@ -1,5 +1,5 @@
 ---
-title: "Template: Featured Image and Text Readability"
+title: "Template: Header Image and Text Readability"
 header:
   image: unsplash-image-4.jpg
   caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
diff --git a/_posts/2012-03-15-template-featured-image-vertical.md b/_posts/2012-03-15-template-header-image-vertical.md
similarity index 63%
rename from _posts/2012-03-15-template-featured-image-vertical.md
rename to _posts/2012-03-15-template-header-image-vertical.md
index 6df4faea..7c99e09d 100644
--- a/_posts/2012-03-15-template-featured-image-vertical.md
+++ b/_posts/2012-03-15-template-header-image-vertical.md
@@ -1,5 +1,5 @@
 ---
-title: "Template: Featured Image (Vertical)"
+title: "Template: Header Image (Vertical)"
 header:
   image: unsplash-image-6.jpg
   caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
@@ -14,8 +14,8 @@ tags:
   - template
 ---
 
-This post should display a **featured image**, if the theme supports it.
+This post should display a **header image**, if the theme supports it.
 
 Non-square images can provide some unique styling issues.
 
-This post tests a vertical featured image.
\ No newline at end of file
+This post tests a vertical header image.
\ No newline at end of file
diff --git a/_posts/2012-03-15-template-header-overlay-color.md b/_posts/2012-03-15-template-header-overlay-color.md
new file mode 100644
index 00000000..6bc88088
--- /dev/null
+++ b/_posts/2012-03-15-template-header-overlay-color.md
@@ -0,0 +1,18 @@
+---
+title: "Template: Header Overlay with Background Fill"
+header:
+  overlay_color: "#333"
+categories:
+  - Template
+  - Uncategorized
+tags:
+  - edge case
+  - image
+  - template
+---
+
+This post should display a **header with a solid background color**, if the theme supports it.
+
+Non-square images can provide some unique styling issues.
+
+This post tests overlay headers.
\ No newline at end of file
diff --git a/_posts/2012-03-15-template-header-overlay-image.md b/_posts/2012-03-15-template-header-overlay-image.md
new file mode 100644
index 00000000..25d16bb4
--- /dev/null
+++ b/_posts/2012-03-15-template-header-overlay-image.md
@@ -0,0 +1,20 @@
+---
+title: "Template: Header Image Overlay"
+header:
+  overlay_image: unsplash-image-1.jpg
+  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
+  cta_url: "https://unsplash.com"
+categories:
+  - Template
+  - Uncategorized
+tags:
+  - edge case
+  - image
+  - template
+---
+
+This post should display a **header with an overlay image**, if the theme supports it.
+
+Non-square images can provide some unique styling issues.
+
+This post tests overlay header images.
\ No newline at end of file
diff --git a/_posts/2013-01-11-markup-html-tags-and-formatting.md b/_posts/2013-01-11-markup-html-tags-and-formatting.md
index 68181af4..cf172b2f 100644
--- a/_posts/2013-01-11-markup-html-tags-and-formatting.md
+++ b/_posts/2013-01-11-markup-html-tags-and-formatting.md
@@ -121,6 +121,20 @@ Make any link standout more when applying the `.btn` class.
 [Info Button Text](#link){: .btn .btn--info}
 ```
 
+[X-Large Button](#){: .btn .btn--x-large}
+[Large Button](#){: .btn .btn--large}
+[Default Button](#){: .btn}
+[Small Button](#){: .btn .btn--small}
+[X-Small Button](#){: .btn .btn--x-small}
+
+```markdown
+[X-Large Button](#){: .btn .btn--x-large}
+[Large Button](#){: .btn .btn--large}
+[Default Button](#){: .btn}
+[Small Button](#){: .btn .btn--small}
+[X-Small Button](#){: .btn .btn--x-small}
+```
+
 ## Notices
 
 **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph.
diff --git a/_posts/2016-02-24-welcome-to-jekyll.md b/_posts/2016-02-24-welcome-to-jekyll.md
index a0ac77d4..52159364 100644
--- a/_posts/2016-02-24-welcome-to-jekyll.md
+++ b/_posts/2016-02-24-welcome-to-jekyll.md
@@ -1,7 +1,7 @@
 ---
 title:  "Welcome to Jekyll!"
 header:
-  teaser: "http://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg?w=604"
+  teaser: "https://farm5.staticflickr.com/4076/4940499208_b79b77fb0a_z.jpg"
 categories: 
   - Jekyll
 tags:
diff --git a/assets/_scss/_archive.scss b/assets/_scss/_archive.scss
index e9cd3556..6cd64548 100644
--- a/assets/_scss/_archive.scss
+++ b/assets/_scss/_archive.scss
@@ -23,7 +23,7 @@
 }
 
 .archive__subtitle {
-  margin: 0;
+  margin: 2em 0 0;
   padding-bottom: 0.5em;
   font-size: 14px;
   color: mix(#fff, $gray, 25%);
@@ -44,6 +44,14 @@
   }
 }
 
+.archive__item-teaser {
+  border-radius: $border-radius;
+  overflow: hidden;
+  img {
+    width: 100%;
+  }
+}
+
 a:hover {
   .archive__item-teaser {
     box-shadow: 0 0 10px rgba(#000, 0.25);
@@ -71,6 +79,10 @@ a:hover {
   @include breakpoint($x-large) {
     padding-right: $right-sidebar-width-wide;
   }
+
+  .page__meta {
+    margin: 0 0 4px;
+  }
 }
 
 
@@ -81,22 +93,18 @@ a:hover {
 .grid__item {
   margin-bottom: 2em;
 
-  .archive__item-excerpt {
-    display: none;
+  .page__meta {
+    margin: 0 0 4px;
   }
 
-  .archive__item-teaser {
-    border-radius: $border-radius;
-    img {
-      width: 100%;
-    }
+  .archive__item-excerpt {
+    display: none;
   }
 
   @include breakpoint($small) {
     @include gallery(5 of 10);
     .archive__item-teaser {
       max-height: 200px;
-      overflow: hidden;
     }
   }
 
@@ -114,3 +122,137 @@ a:hover {
     }
   }
 }
+
+
+/*
+   Features
+   ========================================================================== */
+
+.feature__wrapper {
+  @include clearfix();
+  margin-bottom: 2em;
+  border-bottom: 1px solid $border-color;
+}
+
+.feature__item {
+  margin-bottom: 2em;
+
+  @include breakpoint($small) {
+    text-align: center;
+    @include gallery(4 of 12);
+
+    .feature__item-teaser {
+      max-height: 200px;
+      overflow: hidden;
+    }
+  }
+
+  .archive__item-title {
+    margin-bottom: 0.5em;
+    font-size: 30px;
+  }
+
+  .archive__item-excerpt {
+    margin-bottom: 1em;
+    font-size: 18px;
+
+    p {
+      font-size: 18px;
+    }
+  }
+
+  &--left {
+    @include full();
+    margin-bottom: 2em;
+
+    @include breakpoint($small) {
+      .archive__item-teaser {
+        @include span(5 of 12);
+      }
+
+      .archive__item-body {
+        @include span(7 of 12 last);
+        @include prefix(0.5 of 12);
+        @include suffix(1 of 12);
+      }
+    }
+
+    .archive__item-title {
+      margin-bottom: 0.5em;
+      font-size: 30px;
+    }
+
+    .archive__item-excerpt {
+      margin-bottom: 1em;
+      font-size: 18px;
+
+      p {
+        font-size: 18px;
+      }
+    }
+  }
+
+  &--right {
+    @include full();
+    margin-bottom: 2em;
+    @include breakpoint($small) {
+      text-align: right;
+
+      .archive__item-teaser {
+        @include span(5 of 12 rtl);
+      }
+
+      .archive__item-body {
+        @include span(7 of 12 last rtl);
+        @include prefix(0.5 of 12);
+        @include suffix(1 of 12);
+      }
+    }
+
+    .archive__item-title {
+      margin-bottom: 0.5em;
+      font-size: 30px;
+    }
+
+    .archive__item-excerpt {
+      margin-bottom: 1em;
+      font-size: 18px;
+
+      p {
+        font-size: 18px;
+      }
+    }
+  }
+
+  &--center {
+    @include full();
+    margin-bottom: 2em;
+    @include breakpoint($small) {
+      text-align: center;
+
+      .archive__item-teaser {
+        margin: 0 auto;
+        width: span(5 of 12);
+      }
+
+      .archive__item-body {
+        margin: 0 auto;
+        width: span(7 of 12);
+      }
+    }
+
+    .archive__item-title {
+      margin-bottom: 0.5em;
+      font-size: 30px;
+    }
+
+    .archive__item-excerpt {
+      margin-bottom: 1em;
+      font-size: 18px;
+
+      p {
+        font-size: 18px;
+      }
+    }
+  }
+}
diff --git a/assets/_scss/_base.scss b/assets/_scss/_base.scss
index a1097d83..5ac08aaf 100644
--- a/assets/_scss/_base.scss
+++ b/assets/_scss/_base.scss
@@ -62,20 +62,6 @@ del a {
   color: inherit;
 }
 
-/* paragraph indents */
-
-p {
-  margin: 0 0 $indent-var;
-
-  // sibling indentation
-  @if $paragraph-indent == true {
-    & + p {
-      text-indent: $indent-var;
-      margin-top: -($indent-var);
-    }
-  }
-}
-
 /* reduce orphans and widows when printing */
 
 p, pre, blockquote, ul, ol, dl, figure, table, fieldset {
@@ -164,8 +150,8 @@ li code,
 figcaption code {
   padding-top: 0.1rem;
   padding-bottom: 0.1rem;
-  background: mix(#fff, $light-gray, 40%);
-  border: 1px solid $light-gray;
+  background: $code-background-color;
+  border: 1px solid $lighter-gray;
   border-radius: $border-radius;
 
   &:before, &:after {
diff --git a/assets/_scss/_buttons.scss b/assets/_scss/_buttons.scss
index e84150b4..9f95ff95 100644
--- a/assets/_scss/_buttons.scss
+++ b/assets/_scss/_buttons.scss
@@ -10,15 +10,15 @@
   /* default button */
   display: inline-block;
   margin-bottom: 0.25em;
-  padding: 10px 20px;
+  padding: 0.5em 1em;
   color: #fff !important;
   font-family: $sans-serif;
-  font-size: 0.8rem;
+  font-size: 14px;
   font-weight: bold;
   line-height: 1.5;
   text-align: center;
   text-decoration: none;
-  background-color: #000;
+  background-color: $primary-color;
   border: 0 !important;
   border-radius: $border-radius;
   cursor: pointer;
@@ -49,12 +49,13 @@
   /* for dark backgrounds */
 
   &--inverse {
-    color: currentColor !important;
-    border: 1px solid currentColor !important; // override
+    color: $gray !important;
+    border: 1px solid $light-gray !important; // override
     background-color: #fff;
 
     &:hover {
-      background-color: mix(#000, #fff, 20%);
+      color: #fff !important;
+      border-color: $gray;
     }
   }
 
@@ -132,4 +133,28 @@
       }
     }
   }
+
+  /* extra large button */
+
+  &--x-large {
+    font-size: 24px;
+  }
+
+  /* large button */
+
+  &--large {
+    font-size: 18px;
+  }
+
+  /* small button */
+
+  &--small {
+    font-size: 12px;
+  }
+
+  /* extra small button */
+  &--x-small {
+    font-size: 10px;
+    font-weight: normal;
+  }
 }
\ No newline at end of file
diff --git a/assets/_scss/_footer.scss b/assets/_scss/_footer.scss
index 587f74b8..b01d7c19 100644
--- a/assets/_scss/_footer.scss
+++ b/assets/_scss/_footer.scss
@@ -55,8 +55,10 @@
 
   li {
     display: inline-block;
+    padding-top: 5px;
+    padding-bottom: 5px;
     font-family: $sans-serif-narrow;
-    font-size: 16px;
+    font-size: 14px;
     text-transform: uppercase;
   }
 
@@ -66,6 +68,7 @@
   }
 
   a {
+    padding-right: 10px;
     font-weight: bold;
   }
 }
\ No newline at end of file
diff --git a/assets/_scss/_masthead.scss b/assets/_scss/_masthead.scss
index fd9534a0..f0309e09 100644
--- a/assets/_scss/_masthead.scss
+++ b/assets/_scss/_masthead.scss
@@ -50,7 +50,6 @@
     @include prefix(2.5 of 12);
   }
 
-  margin-bottom: 1em;
   ul {
     margin: 0;
     padding: 0;
@@ -64,10 +63,4 @@
   list-style-type: none;
   font-size: 16px;
   white-space: nowrap;
-
-  a {
-    &:hover {
-      color: $gray;
-    }
-  }
 }
\ No newline at end of file
diff --git a/assets/_scss/_navigation.scss b/assets/_scss/_navigation.scss
index 081db23b..2618d43e 100644
--- a/assets/_scss/_navigation.scss
+++ b/assets/_scss/_navigation.scss
@@ -9,19 +9,32 @@
 .breadcrumbs {
   @include container;
   @include clearfix;
-  margin-bottom: 1em;
+  margin-top: 0;
+  margin-bottom: 0;
   padding-left: 2em;
   padding-right: 2em;
   font-family: $sans-serif;
 
+  @include breakpoint($large) {
+    padding-left: 1em;
+    padding-right: 1em;
+  }
+
+  @include breakpoint($x-large) {
+    max-width: $x-large;
+  }
+
   ol {
     padding: 0;
     list-style: none;
     font-size: 14px;
 
-    @include breakpoint($medium) {
-      @include span(10 of 12);
-      @include pre(2);
+    @include breakpoint($large) {
+      @include span(10 of 12 last);
+    }
+
+    @include breakpoint($x-large) {
+      @include prefix(0.5 of 12);
     }
   }
 
@@ -75,8 +88,14 @@
 
   a {
     display: block;
-    padding: 10px 20px;
+    margin: 0 20px;
+    padding: 10px 0;
+    color: $gray;
     text-decoration: none;
+
+    &:hover {
+      color: #000;
+    }
   }
 
   button {
@@ -99,14 +118,38 @@
 
       &:first-child {
         font-weight: bold;
+
         a {
-          padding-left: 0;
+          margin-left: 0;
         }
       }
 
       &:last-child {
         a {
-          padding-right: 0;
+          margin-right: 0;
+        }
+      }
+    }
+
+    a {
+      position: relative;
+
+      &:before {
+        content: "";
+        position: absolute;
+        bottom: 0;
+        height: 4px;
+        background: $light-gray;
+        width: 0;
+        transition: 0.3s;
+      }
+
+      &:hover {
+        color: #000;
+        border-bottom-color: $border-color;
+
+        &:before {
+          width: 100%;
         }
       }
     }
@@ -124,7 +167,14 @@
     box-shadow: 0 0 10px rgba(#000, 0.25);
 
     a {
+      margin: 0;
+      padding: 10px 20px;
       font-size: 0.8em;
+
+      &:hover {
+        color: #000;
+        background: $border-color;
+      }
     }
 
     &:before {
@@ -156,6 +206,7 @@
     li {
       display: block;
       border-bottom: 1px solid $border-color;
+
       &:last-child {
         border-bottom: none;
       }
diff --git a/assets/_scss/_notices.scss b/assets/_scss/_notices.scss
index 6ac2460a..c9d8eae8 100644
--- a/assets/_scss/_notices.scss
+++ b/assets/_scss/_notices.scss
@@ -11,8 +11,9 @@
  */
 
 @mixin notice($notice-color) {
-  margin: 2em 0;
+  margin: 2em 0 !important;  // override
   padding: 1em;
+  text-indent: initial; // override
   background-color: mix(#fff, $notice-color, 90%);
   border-radius: $border-radius;
 
@@ -52,7 +53,7 @@
   }
 
   code {
-    background-color: mix(#fff, $notice-color, 70%)
+    background-color: mix(#fff, $notice-color, 95%)
   }
 }
 
diff --git a/assets/_scss/_page.scss b/assets/_scss/_page.scss
index fc5e54e6..5a2c1762 100644
--- a/assets/_scss/_page.scss
+++ b/assets/_scss/_page.scss
@@ -35,26 +35,90 @@
     @include prefix(0.5 of 12);
     padding-right: $right-sidebar-width-wide;
   }
+
+  .page__inner-wrap {
+    .page__content,
+    .page__meta,
+    .page__share {
+      @include clearfix();
+      @include full();
+    }
+  }
 }
 
 .page__title {
   margin-top: 0;
   font-family: $serif;
+  line-height: 1;
   & + .page__meta {
     margin-top: -1.5em;
   }
 }
 
+.page__lead {
+  font-family: $sans-serif;
+  font-size: 20px;
+}
+
 .page__content {
   p, li {
     font-size: 16px;
   }
+
+  /* paragraph indents */
+  p {
+    margin: 0 0 $indent-var;
+
+    // sibling indentation
+    @if $paragraph-indent == true {
+      & + p {
+        text-indent: $indent-var;
+        margin-top: -($indent-var);
+      }
+    }
+  }
 }
 
 .page__hero {
   position: relative;
   margin-bottom: 2em;
   @include clearfix;
+
+  &--overlay {
+    position: relative;
+    margin-bottom: 2em;
+    padding: 3em 0;
+    @include clearfix;
+    text-align: center;
+    background-size: cover;
+    background-repeat: no-repeat;
+    background-position: center;
+
+    .wrapper {
+      padding-left: 2em;
+      padding-right: 2em;
+    }
+
+    .page__title,
+    .page__meta,
+    .page__lead,
+    .btn {
+      color: #fff;
+      text-shadow: 1px 1px 4px rgba(#000, 0.5);
+    }
+
+    .page__title {
+      font-size: 48px;
+
+      @include breakpoint($small) {
+        font-size: 60px;
+      }
+    }
+
+    .page__lead {
+      font-weight: bold;
+    }
+  }
 }
 
 .page__hero-image {
@@ -135,6 +199,10 @@
   .sep {
     display: none;
   }
+
+  strong {
+    margin-right: 10px;
+  }
 }
 
 .page__taxonomy-item {
@@ -157,6 +225,11 @@
    Comments
    ========================================================================== */
 
+.page__comments {
+  @include clearfix();
+  @include full();
+}
+
 .page__comments-title {
   font-size: 14px;
   margin-top: 2rem;
diff --git a/assets/_scss/_sidebar.scss b/assets/_scss/_sidebar.scss
index 36d2730b..c23cecc2 100644
--- a/assets/_scss/_sidebar.scss
+++ b/assets/_scss/_sidebar.scss
@@ -95,9 +95,8 @@
 .author__content {
   display: table-cell;
   vertical-align: top;
-  vertical-align: top;
   padding-left: 15px;
-  padding-right: 15px;
+  padding-right: 25px;
   line-height: 1;
 
   @include breakpoint($large) {
@@ -123,9 +122,10 @@
 }
 
 .author__bio {
-  margin-bottom: 10px;
+  margin: 0;
 
   @include breakpoint($large) {
+    margin-top: 10px;
     margin-bottom: 20px;
   }
 }
@@ -133,20 +133,22 @@
 .author__urls-wrapper {
   position: relative;
   display: table-cell;
-  vertical-align: middle;
+  vertical-align: top;
   font-family: $sans-serif;
   z-index: 9999;
   position: relative;
   cursor: pointer;
 
+  li:last-child {
+    a {
+      margin-bottom: 0;
+    }
+  }
+
   @include breakpoint($large) {
     display: block;
   }
   .btn {
-    margin: 0;
-    padding: 5px 10px;
-    color: mix(#fff, $gray, 25%);
-
     @include breakpoint($large) {
       display: none;
     }
@@ -214,6 +216,8 @@
     display: block;
     margin-bottom: 5px;
     padding-right: 5px;
+    padding-top: 2px;
+    padding-bottom: 2px;
     font-size: 14px;
     text-decoration: none;
     white-space: nowrap;
diff --git a/assets/_scss/_syntax.scss b/assets/_scss/_syntax.scss
index 628b482d..c4812464 100644
--- a/assets/_scss/_syntax.scss
+++ b/assets/_scss/_syntax.scss
@@ -7,6 +7,7 @@ div.highlighter-rouge, figure.highlight {
   padding: 1em;
   border: 1px solid $border-color;
   border-radius: $border-radius;
+  background-color: $code-background-color;
 
   .highlight {
     margin: 0;
@@ -18,101 +19,68 @@ div.highlighter-rouge, figure.highlight {
 
 .highlight table td { padding: 5px; }
 .highlight table pre { margin: 0; }
-.highlight, .highlight .w {
-  color: #303030;
-}
 
-.highlight .err {
-  color: #151515;
-  background-color: #ac4142;
-}
+/* GitHub style */
 
-.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
-  color: #505050;
-}
-
-.highlight .cp {
-  color: #f4bf75;
-}
-
-.highlight .nt {
-  color: #f4bf75;
-}
-
-.highlight .o, .highlight .ow {
-  color: #d0d0d0;
-}
-
-.highlight .p, .highlight .pi {
-  color: #d0d0d0;
-}
-
-.highlight .gi {
-  color: #90a959;
-}
-
-.highlight .gd {
-  color: #ac4142;
-}
-
-.highlight .gh {
-  color: #6a9fb5;
-  background-color: #151515;
-  font-weight: bold;
-}
-
-.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
-  color: #aa759f;
-}
-
-.highlight .kc {
-  color: #d28445;
-}
-
-.highlight .kt {
-  color: #d28445;
-}
-
-.highlight .kd {
-  color: #d28445;
-}
-
-.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
-  color: #90a959;
-}
-
-.highlight .sr {
-  color: #75b5aa;
-}
-
-.highlight .si {
-  color: #8f5536;
-}
-
-.highlight .se {
-  color: #8f5536;
-}
-
-.highlight .nn {
-  color: #f4bf75;
-}
-
-.highlight .nc {
-  color: #f4bf75;
-}
-
-.highlight .no {
-  color: #f4bf75;
-}
-
-.highlight .na {
-  color: #6a9fb5;
-}
-
-.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
-  color: #90a959;
-}
-
-.highlight .ss {
-  color: #90a959;
-}
\ No newline at end of file
+.highlight .c { color: #999988; font-style: italic; }
+.highlight .err { color: #a61717; background-color: #e3d2d2; }
+.highlight .k { font-weight: bold; }
+.highlight .o { font-weight: bold; }
+.highlight .cm { color: #999988; font-style: italic; }
+.highlight .cp { color: #999999; font-weight: bold; }
+.highlight .c1 { color: #999988; font-style: italic; }
+.highlight .cs { color: #999999; font-weight: bold; font-style: italic; }
+.highlight .gd { color: #000000; background-color: #ffdddd; }
+.highlight .gd .x { color: #000000; background-color: #ffaaaa; }
+.highlight .ge { font-style: italic; }
+.highlight .gr { color: #aa0000; }
+.highlight .gh { color: #999999; }
+.highlight .gi { color: #000000; background-color: #ddffdd; }
+.highlight .gi .x { color: #000000; background-color: #aaffaa; }
+.highlight .go { color: #888888; }
+.highlight .gp { color: #555555; }
+.highlight .gs { font-weight: bold; }
+.highlight .gu { color: #800080; font-weight: bold; }
+.highlight .gt { color: #aa0000; }
+.highlight .kc { font-weight: bold; }
+.highlight .kd { font-weight: bold; }
+.highlight .kn { font-weight: bold; }
+.highlight .kp { font-weight: bold; }
+.highlight .kr { font-weight: bold; }
+.highlight .kt { color: #445588; font-weight: bold; }
+.highlight .m { color: #009999; }
+.highlight .s { color: #dd1144; }
+.highlight .n { color: #333333; }
+.highlight .na { color: teal; }
+.highlight .nb { color: #0086b3; }
+.highlight .nc { color: #445588; font-weight: bold; }
+.highlight .no { color: teal; }
+.highlight .ni { color: purple; }
+.highlight .ne { color: #990000; font-weight: bold; }
+.highlight .nf { color: #990000; font-weight: bold; }
+.highlight .nn { color: #555555; }
+.highlight .nt { color: navy; }
+.highlight .nv { color: teal; }
+.highlight .ow { font-weight: bold; }
+.highlight .w { color: #bbbbbb; }
+.highlight .mf { color: #009999; }
+.highlight .mh { color: #009999; }
+.highlight .mi { color: #009999; }
+.highlight .mo { color: #009999; }
+.highlight .sb { color: #dd1144; }
+.highlight .sc { color: #dd1144; }
+.highlight .sd { color: #dd1144; }
+.highlight .s2 { color: #dd1144; }
+.highlight .se { color: #dd1144; }
+.highlight .sh { color: #dd1144; }
+.highlight .si { color: #dd1144; }
+.highlight .sx { color: #dd1144; }
+.highlight .sr { color: #009926; }
+.highlight .s1 { color: #dd1144; }
+.highlight .ss { color: #990073; }
+.highlight .bp { color: #999999; }
+.highlight .vc { color: teal; }
+.highlight .vg { color: teal; }
+.highlight .vi { color: teal; }
+.highlight .il { color: #009999; }
+.highlight .gc { color: #999; background-color: #EAF2F5; }
\ No newline at end of file
diff --git a/assets/_scss/_toc.scss b/assets/_scss/_toc.scss
index ca2a210a..2d1f26bd 100644
--- a/assets/_scss/_toc.scss
+++ b/assets/_scss/_toc.scss
@@ -36,7 +36,7 @@
 
     &:hover {
       color: #000;
-      background: $border-color;
+      background: $lighter-gray;
     }
   }
 
diff --git a/assets/_scss/_utilities.scss b/assets/_scss/_utilities.scss
index 6e062b1a..048e3c97 100644
--- a/assets/_scss/_utilities.scss
+++ b/assets/_scss/_utilities.scss
@@ -99,6 +99,10 @@ body:hover .visually-hidden button {
 
 .cf { clear: both; }
 
+.wrapper {
+  @include container();
+}
+
 
 /*
    Images
@@ -153,6 +157,112 @@ body:hover .visually-hidden button {
   vertical-align: middle;
 }
 
+// social icons
+
+.social-icons {
+  .fa-behance,
+  .fa-behance-square {
+    color: $behance-color;
+  }
+
+  .fa-dribbble {
+    color: $dribbble-color;
+  }
+
+  .fa-facebook,
+  .fa-facebook-square {
+    color: $facebook-color;
+  }
+
+  .fa-twitter,
+  .fa-twitter-square {
+    color: $twitter-color;
+  }
+
+  .fa-flickr {
+    color: $flickr-color;
+  }
+
+  .fa-foursquare {
+    color: $foursquare-color;
+  }
+
+  .fa-github,
+  .fa-github-alt,
+  .fa-github-square {
+    color: $github-color;
+  }
+
+  .fa-google-plus,
+  .fa-google-plus-square {
+    color: $google-plus-color;
+  }
+
+  .fa-instagram {
+    color: $instagram-color;
+  }
+
+  .fa-lastfm,
+  .fa-lastfm-square {
+    color: $lastfm-color;
+  }
+
+  .fa-linkedin,
+  .fa-linkedin-square {
+    color: $linkedin-color;
+  }
+
+  .fa-pinterest,
+  .fa-pinterest-p,
+  .fa-pinterest-square {
+    color: $pinterest-color;
+  }
+
+  .fa-rss,
+  .fa-rss-square {
+    color: $rss-color;
+  }
+
+  .fa-soundcloud {
+    color: $soundcloud-color;
+  }
+
+  .fa-stack-exchange,
+  .fa-stack-overflow {
+    color: $stackoverflow-color;
+  }
+
+  .fa-tumblr,
+  .fa-tumblr-square {
+    color: $tumblr-color;
+  }
+
+  .fa-twitter,
+  .fa-twitter-square {
+    color: $twitter-color;
+  }
+
+  .fa-vimeo,
+  .fa-vimeo-square {
+    color: $vimeo-color;
+  }
+
+  .fa-vine {
+    color: $vine-color;
+  }
+
+  .fa-youtube,
+  .fa-youtube-square,
+  .fa-youtube-play {
+    color: $youtube-color;
+  }
+
+  .fa-xing,
+  .fa-xing-square {
+    color: $xing-color;
+  }
+}
+
 
 /*
    Navicons
@@ -252,4 +362,12 @@ $navicon-height : 4px;
     margin-bottom: 0;
     font-size: 14px;
   }
+}
+
+a.reversefootnote {
+  text-decoration: none;
+
+  &:hover {
+    text-decoration: underline;
+  }
 }
\ No newline at end of file
diff --git a/assets/_scss/_variables.scss b/assets/_scss/_variables.scss
index d02936d0..a7dff927 100644
--- a/assets/_scss/_variables.scss
+++ b/assets/_scss/_variables.scss
@@ -6,73 +6,85 @@
    Typography
    ========================================================================== */
 
-$doc-font-size      : 16;
-$doc-line-height    : 26;
-$paragraph-indent   : false !default;
-$indent-var         : 0rem + ($doc-line-height / $doc-font-size);
+$doc-font-size              : 16;
+$doc-line-height            : 26;
+
+/* paragraph indention */
+$paragraph-indent           : false; // true, false (default)
+$indent-var                 : 0rem + ($doc-line-height / $doc-font-size);
 
 /* system typefaces */
-$serif              : Georgia, Times, serif;
-$sans-serif         : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
-$monospace          : Monaco, Consolas, "Lucida Console", monospace;
+$serif                      : Georgia, Times, serif;
+$sans-serif                 : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
+$monospace                  : Monaco, Consolas, "Lucida Console", monospace;
 
 /* sans serif typefaces */
-$sans-serif-narrow  : $sans-serif;
-$helvetica          : Helvetica, "Helvetica Neue", Arial, sans-serif;
+$sans-serif-narrow          : $sans-serif;
+$helvetica                  : Helvetica, "Helvetica Neue", Arial, sans-serif;
 
 /* serif typefaces */
-$georgia            : Georgia, serif;
-$times              : Times, serif;
-$bodoni             : "Bodoni MT", serif;
-$calisto            : "Calisto MT", serif;
-$garamond           : Garamond, serif;
+$georgia                    : Georgia, serif;
+$times                      : Times, serif;
+$bodoni                     : "Bodoni MT", serif;
+$calisto                    : "Calisto MT", serif;
+$garamond                   : Garamond, serif;
 
 
 /*
    Colors
    ========================================================================== */
 
-$gray               : #4c4c4c;
-$dark-gray          : #191413;
-$light-gray         : #e2e2e2;
-$lighter-gray       : #f9f9f9;
+$gray                       : #4c4c4c;
+$dark-gray                  : #191413;
+$light-gray                 : mix(#fff, $gray, 70%);
+$lighter-gray               : mix(#fff, $gray, 90%);
 
-$body-color         : #fff;
-$background-color   : #fff;
-$text-color         : #333332;
-$border-color       : $light-gray;
-$base-color         : #343434;
-$comp-color         : spin($base-color, 180);
-$accent-color       : #000;
+$body-color                 : #fff;
+$background-color           : #fff;
+$code-background-color      : #f8f8f8;
+$text-color                 : #333332;
+$border-color               : $lighter-gray;
+$base-color                 : #343434;
+$comp-color                 : spin($base-color, 180);
+$accent-color               : #000;
 
 /* buttons */
-$primary-color      : #000;
-$success-color      : #5cb85c;
-$warning-color      : #dd8338;
-$danger-color       : #C64537;
-$info-color         : #308cbc;
+$primary-color              : #000;
+$success-color              : #5cb85c;
+$warning-color              : #dd8338;
+$danger-color               : #C64537;
+$info-color                 : #308cbc;
 
 /* brands */
-$facebook-color     : #3b5998;
-$flickr-color       : #ff0084;
-$foursquare-color   : #0cbadf;
-$google-plus-color  : #dd4b39;
-$instagram-color    : #4e433c;
-$linkedin-color     : #4875b4;
-$pinterest-color    : #cb2027;
-$rss-color          : #fa9b39;
-$tumblr-color       : #2c4762;
-$twitter-color      : #55acee;
-$vimeo-color        : #1ab7ea;
-$youtube-color      : #ff3333;
+$behance-color              : #1769FF;
+$dribbble-color             : #ea4c89;
+$facebook-color             : #3b5998;
+$flickr-color               : #ff0084;
+$foursquare-color           : #0072b1;
+$github-color               : #171516;
+$google-plus-color          : #dd4b39;
+$instagram-color            : #517fa4;
+$lastfm-color               : #d51007;
+$linkedin-color             : #007bb6;
+$pinterest-color            : #cb2027;
+$rss-color                  : #fa9b39;
+$soundcloud-color           : #ff3300;
+$stackoverflow-color        : #fe7a15;
+$tumblr-color               : #32506d;
+$twitter-color              : #55acee;
+$vimeo-color                : #1ab7ea;
+$vine-color                 : #00bf8f;
+$youtube-color              : #bb0000;
+$xing-color                 : #006567;
+
 
 /* links */
-$link-color         : #343434;
-$link-color-hover   : darken($link-color, 10);
-$link-color-visited : lighten($link-color-hover, 20);
-$link-color-focus   : darken($link-color-visited, 10);
+$link-color                 : #343434;
+$link-color-hover           : darken($link-color, 10);
+$link-color-visited         : lighten($link-color-hover, 20);
+$link-color-focus           : darken($link-color-visited, 10);
 
-$border-radius      : 4px;
+$border-radius              : 4px;
 
 
 /*
@@ -81,20 +93,20 @@ $border-radius      : 4px;
 
 @include breakpoint-set("to ems", true);
 
-$small                        : 600px;
-$medium                       : 768px;
-$medium-wide                  : 900px;
-$large                        : 1024px;
-$x-large                      : 1280px;
+$small                      : 600px;
+$medium                     : 768px;
+$medium-wide                : 900px;
+$large                      : 1024px;
+$x-large                    : 1280px;
 
 
 /*
    Grid
    ========================================================================== */
 
-$right-sidebar-width-narrow   : 200px;
-$right-sidebar-width          : 300px;
-$right-sidebar-width-wide     : 400px;
+$right-sidebar-width-narrow : 200px;
+$right-sidebar-width        : 300px;
+$right-sidebar-width-wide   : 400px;
 
 $susy: (
   columns: 12,
diff --git a/assets/css/main.css b/assets/css/main.css
index 2714f9a9..b5269a01 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -1,4 +1,4 @@
-a:focus{outline:thin dotted #dd8338;outline:5px auto #dd8338;outline-offset:-2px}*,*:before,*:after{box-sizing:border-box}html{box-sizing:border-box;background-color:#fff;font-size:15px;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}@media (min-width: 48em){html{font-size:16px}}@media (min-width: 64em){html{font-size:18px}}body{margin:0}::-moz-selection{color:#fff;background:#000}::selection{color:#fff;background:#000}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}a{color:inherit}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}body{margin:0;padding:0;color:#333332;font-family:Georgia,Times,serif;line-height:1.5;background-color:#fff}body.overflow--hidden{overflow:hidden}h1,h2,h3,h4,h5,h6{line-height:1.25;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}h1{font-size:32px}h2{font-size:28px}h3{font-size:24px}h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}small{font-size:0.8rem}u,ins{text-decoration:none;border-bottom:1px solid #333332}u a,ins a{color:inherit}del a{color:inherit}p{margin:0 0 1.625rem}p,pre,blockquote,ul,ol,dl,figure,table,fieldset{orphans:3;widows:3}abbr[title],abbr[data-original-title]{text-decoration:none;cursor:help;border-bottom:1px dotted #333332}blockquote{margin:2em 1em 2em 0;padding-left:1em;padding-right:1em;font-style:italic;border-left:0.25em solid #000}blockquote a{color:inherit}blockquote cite{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px;font-style:normal}blockquote cite:before{content:"\2014";padding-right:5px}a:hover,a:active{outline:0}a:hover img{box-shadow:0 0 10px rgba(0,0,0,0.25)}@media (min-width: 37.5em){ol,ul{padding-left:0}ol ol,ol ul,ul ol,ul ul{padding:0.5em 1em}}tt,code,kbd,samp,pre{font-family:Monaco,Consolas,"Lucida Console",monospace;font-size:14px}pre{overflow-x:auto}p code,li code,figcaption code{padding-top:0.1rem;padding-bottom:0.1rem;background:#eee;border:1px solid #e2e2e2;border-radius:4px}p code:before,p code:after,li code:before,li code:after,figcaption code:before,figcaption code:after{letter-spacing:-0.2em;content:"\00a0"}hr{display:block;margin:1em 0;border:0;border-top:1px solid #e2e2e2}figure{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:2em 0}figure img,figure iframe,figure .fluid-width-video-wrapper{margin-bottom:1em}figure img{width:100%;border-radius:4px;transition:box-shadow 0.3s}figure>a{display:block}@media (min-width: 37.5em){figure.half>a,figure.half>img{width:calc(50% - 0.5em)}}figure.half figcaption{width:100%}@media (min-width: 37.5em){figure.third>a,figure.third>img{width:calc(33.3333% - 0.5em)}}figure.third figcaption{width:100%}figcaption{margin-bottom:0.65rem;color:#666665;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:0.8rem}figcaption a{color:inherit;text-decoration:none;border-bottom:1px solid #e2e2e2;transition:border 0.4s ease-in-out}figcaption a:hover{color:#000;border-bottom-color:#000}figcaption code{font-size:0.64rem}svg:not(:root){overflow:hidden}nav ul{margin:0;padding:0}nav li{list-style:none}nav a{text-decoration:none}b,i,strong,em,blockquote,p,q,span,figure,img,h1,h2,header,input,a,tr,td,form button,input[type="submit"],.btn,#goog-wm-sb,.highlight,.archive__item-teaser{transition:all 0.2s ease-in-out}.hidden{display:none;visibility:hidden}.load{display:none}.transparent{opacity:0}.visually-hidden,.screen-reader-text,.screen-reader-text span,.screen-reader-shortcut{position:absolute !important;clip:rect(1px, 1px, 1px, 1px);height:1px !important;width:1px !important;border:0 !important;overflow:hidden}body:hover .visually-hidden a,body:hover .visually-hidden input,body:hover .visually-hidden button{display:none !important}.screen-reader-text:focus,.screen-reader-shortcut:focus{clip:auto !important;height:auto !important;width:auto !important;display:block;font-size:1em;font-weight:bold;padding:15px 23px 14px;background:#fff;z-index:100000;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,0.6)}.skip-link{position:fixed;z-index:20;margin:0;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;white-space:nowrap}.skip-link li{height:0;width:0;list-style:none}.center{text-align:center}.cf{clear:both}.align-left{display:block;margin-left:auto;margin-right:auto}@media (min-width: 37.5em){.align-left{float:left;margin-right:1em}}.align-right{display:block;margin-left:auto;margin-right:auto}@media (min-width: 37.5em){.align-right{float:right;margin-left:1em}}@media (min-width: 64em){.full{margin-right:-300px}}.icon{display:inline-block;fill:currentColor;width:1em;height:1.1em;line-height:1;position:relative;top:-0.1em;vertical-align:middle}.navicon{position:relative;width:32px;height:4px;background:#fff;margin:auto;transition:0.3s}.navicon:before,.navicon:after{content:"";position:absolute;left:0;width:32px;height:4px;background:#fff;transition:0.3s}.navicon:before{top:-8px}.navicon:after{bottom:-8px}.close .navicon{background:transparent}.close .navicon:before,.close .navicon:after{-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:0;width:32px}.close .navicon:before{-webkit-transform:rotate3d(0, 0, 1, 45deg);transform:rotate3d(0, 0, 1, 45deg)}.close .navicon:after{-webkit-transform:rotate3d(0, 0, 1, -45deg);transform:rotate3d(0, 0, 1, -45deg)}@media (min-width: 48em){.sticky{clear:both;position:-webkit-sticky;position:sticky;top:3em}.sticky::after{clear:both;content:"";display:table}.sticky>*{display:block}}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.footnotes ol,.footnotes li,.footnotes p{margin-bottom:0;font-size:14px}table{width:100%;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:0.8rem;border-collapse:collapse;border-bottom:2px solid #e2e2e2}table+table{margin-top:1em}thead{border-bottom:2px solid #e2e2e2}th{padding:0.5em;font-weight:bold;text-align:left}td{border-bottom:1px solid #e2e2e2;padding:0.5em}tr,td,th{vertical-align:middle}.btn,#goog-wm-sb{display:inline-block;margin-bottom:0.25em;padding:10px 20px;color:#fff !important;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:0.8rem;font-weight:bold;line-height:1.5;text-align:center;text-decoration:none;background-color:#000;border:0 !important;border-radius:4px;cursor:pointer}.btn:hover,#goog-wm-sb:hover{background-color:#333}.btn .icon,#goog-wm-sb .icon{margin-right:0.5em}.btn .icon+.hidden,#goog-wm-sb .icon+.hidden{margin-left:-0.5em}.btn--block{display:block;width:100%}.btn--block+.btn--block{margin-top:0.25em}.btn--inverse{color:currentColor !important;border:1px solid currentColor !important;background-color:#fff}.btn--inverse:hover{background-color:#ccc}.btn--light-outline{border:1px solid #fff !important;background-color:transparent}.btn--info{background-color:#308cbc}.btn--info:hover{background-color:#267096}.btn--warning{background-color:#dd8338}.btn--warning:hover{background-color:#b1692d}.btn--success{background-color:#5cb85c}.btn--success:hover{background-color:#4a934a}.btn--danger{background-color:#C64537}.btn--danger:hover{background-color:#9e372c}.btn--disabled{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);box-shadow:none;opacity:0.65}.btn--facebook{background-color:#3b5998}.btn--facebook:hover{background-color:#2f477a}.btn--twitter{background-color:#55acee}.btn--twitter:hover{background-color:#448abe}.btn--google-plus{background-color:#dd4b39}.btn--google-plus:hover{background-color:#b13c2e}.notice{margin:2em 0;padding:1em;background-color:#e6e6e6;border-radius:4px}.notice h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice h4{margin-bottom:0;font-size:1rem}.page__content .notice a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice a:hover{background-color:transparent !important}.notice p{margin-bottom:0}.notice p a{border-bottom:1px solid gray !important}.notice h4+p{margin-top:0;padding-top:0}.notice code{background-color:#b3b3b3}.notice--info{margin:2em 0;padding:1em;background-color:#eaf4f8;border-radius:4px}.notice--info h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--info h4{margin-bottom:0;font-size:1rem}.page__content .notice--info a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--info a:hover{background-color:transparent !important}.notice--info p{margin-bottom:0}.notice--info p a{border-bottom:1px solid #98c6de !important}.notice--info h4+p{margin-top:0;padding-top:0}.notice--info code{background-color:#c1ddeb}.notice--warning{margin:2em 0;padding:1em;background-color:#fcf3eb;border-radius:4px}.notice--warning h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--warning h4{margin-bottom:0;font-size:1rem}.page__content .notice--warning a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--warning a:hover{background-color:transparent !important}.notice--warning p{margin-bottom:0}.notice--warning p a{border-bottom:1px solid #eec19c !important}.notice--warning h4+p{margin-top:0;padding-top:0}.notice--warning code{background-color:#f5dac3}.notice--success{margin:2em 0;padding:1em;background-color:#eff8ef;border-radius:4px}.notice--success h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--success h4{margin-bottom:0;font-size:1rem}.page__content .notice--success a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--success a:hover{background-color:transparent !important}.notice--success p{margin-bottom:0}.notice--success p a{border-bottom:1px solid #aedcae !important}.notice--success h4+p{margin-top:0;padding-top:0}.notice--success code{background-color:#ceeace}.notice--danger{margin:2em 0;padding:1em;background-color:#f9eceb;border-radius:4px}.notice--danger h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--danger h4{margin-bottom:0;font-size:1rem}.page__content .notice--danger a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--danger a:hover{background-color:transparent !important}.notice--danger p{margin-bottom:0}.notice--danger p a{border-bottom:1px solid #e3a29b !important}.notice--danger h4+p{margin-top:0;padding-top:0}.notice--danger code{background-color:#eec7c3}.masthead{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;padding:2em 2em 1em;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-weight:700;text-transform:uppercase}.masthead:after{content:" ";display:block;clear:both}.masthead::after{clear:both;content:"";display:table}@media (min-width: 64em){.masthead{padding-left:1em;padding-right:1em}}@media (min-width: 80em){.masthead{max-width:1280px}}.masthead nav{z-index:10}.masthead a{text-decoration:none}.site-name{font-size:24px}@media (min-width: 64em){.site-name{padding-left:16.94915%}}@media (min-width: 80em){.site-name{padding-left:21.18644%}}.masthead__menu{margin-bottom:1em}@media (min-width: 64em){.masthead__menu{padding-left:16.94915%}}@media (min-width: 80em){.masthead__menu{padding-left:21.18644%}}.masthead__menu ul{margin:0;padding:0;clear:both;list-style-type:none}.masthead__menu-item{display:block;list-style-type:none;font-size:16px;white-space:nowrap}.masthead__menu-item a:hover{color:#4c4c4c}.breadcrumbs{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;margin-bottom:1em;padding-left:2em;padding-right:2em;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}.breadcrumbs:after{content:" ";display:block;clear:both}.breadcrumbs::after{clear:both;content:"";display:table}.breadcrumbs ol{padding:0;list-style:none;font-size:14px}@media (min-width: 48em){.breadcrumbs ol{width:83.05085%;float:left;margin-right:1.69492%;margin-left:16.94915%}}.breadcrumbs li{display:inline}.breadcrumbs .current{font-weight:bold}.pagination{padding-top:0.5em;border-top:1px solid #e2e2e2}.pagination ul{margin:0;padding:0;list-style-type:none}.pagination li{display:inline-block}.pagination li+li:before{content:"";padding-right:10px}.pagination .current{font-weight:bold}.greedy-nav{position:relative;min-width:250px;background:#fff}.greedy-nav a{display:block;padding:10px 20px;text-decoration:none}.greedy-nav button{position:absolute;height:100%;right:0;padding:0 10px;border:0;outline:none;background-color:#000;color:#fff;cursor:pointer}.greedy-nav .visible-links{display:inline-table}.greedy-nav .visible-links li{display:table-cell}.greedy-nav .visible-links li:first-child{font-weight:bold}.greedy-nav .visible-links li:first-child a{padding-left:0}.greedy-nav .visible-links li:last-child a{padding-right:0}.greedy-nav .hidden-links{position:absolute;top:100%;right:0;margin-top:15px;padding:5px;border:1px solid #e2e2e2;border-radius:4px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,0.25)}.greedy-nav .hidden-links a{font-size:0.8em}.greedy-nav .hidden-links:before{content:"";position:absolute;top:-11px;right:10px;width:0;border-style:solid;border-width:0 10px 10px;border-color:#e2e2e2 transparent;display:block;z-index:0}.greedy-nav .hidden-links:after{content:"";position:absolute;top:-10px;right:10px;width:0;border-style:solid;border-width:0 10px 10px;border-color:#fff transparent;display:block;z-index:1}.greedy-nav .hidden-links li{display:block;border-bottom:1px solid #e2e2e2}.greedy-nav .hidden-links li:last-child{border-bottom:none}.toc{padding:0 0 1em;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;color:#4c4c4c;text-transform:uppercase;letter-spacing:1px;background-color:#fff}.toc__title{margin:0;padding:10px 20px;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:16px;border-bottom:1px solid #e2e2e2}.toc__menu{margin:0;padding:0;width:100%;list-style:none}.toc__menu a{display:block;padding:10px 20px;color:#4c4c4c;font-size:11px;font-weight:bold;line-height:1.5;border-bottom:1px solid #e2e2e2}.toc__menu a:hover{color:#000;background:#e2e2e2}.toc__menu li ul>li a{font-weight:normal}.toc__menu li>ul li{display:none}@media (min-width: 48em){.toc__menu li>ul li{display:block}}.page__footer{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;margin-top:3em;padding:0 2em 3em}.page__footer:after{content:" ";display:block;clear:both}.page__footer::after{clear:both;content:"";display:table}@media (min-width: 64em){.page__footer{padding-left:1em;padding-right:1em}}@media (min-width: 80em){.page__footer{max-width:1280px}}.page__footer a{text-decoration:none}.page__footer a:hover{text-decoration:underline}.page__footer-copyright{font-size:14px}@media (min-width: 64em){.page__footer-copyright{padding-left:16.94915%}}@media (min-width: 80em){.page__footer-copyright{padding-left:21.18644%}}@media (min-width: 64em){.page__footer-follow{padding-left:16.94915%}}@media (min-width: 80em){.page__footer-follow{padding-left:21.18644%}}.page__footer-follow ul{margin:0;padding:0;list-style-type:none}.page__footer-follow li{display:inline-block;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:16px;text-transform:uppercase}.page__footer-follow li+li:before{content:"";padding-right:5px}.page__footer-follow a{font-weight:bold}div.highlighter-rouge,figure.highlight{margin-bottom:1em;padding:1em;border:1px solid #e2e2e2;border-radius:4px}div.highlighter-rouge .highlight,figure.highlight .highlight{margin:0;font-family:Monaco,Consolas,"Lucida Console",monospace;font-size:12px;line-height:1.5}.highlight table td{padding:5px}.highlight table pre{margin:0}.highlight,.highlight .w{color:#303030}.highlight .err{color:#151515;background-color:#ac4142}.highlight .c,.highlight .cd,.highlight .cm,.highlight .c1,.highlight .cs{color:#505050}.highlight .cp{color:#f4bf75}.highlight .nt{color:#f4bf75}.highlight .o,.highlight .ow{color:#d0d0d0}.highlight .p,.highlight .pi{color:#d0d0d0}.highlight .gi{color:#90a959}.highlight .gd{color:#ac4142}.highlight .gh{color:#6a9fb5;background-color:#151515;font-weight:bold}.highlight .k,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kv{color:#aa759f}.highlight .kc{color:#d28445}.highlight .kt{color:#d28445}.highlight .kd{color:#d28445}.highlight .s,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .sh,.highlight .sx,.highlight .s1{color:#90a959}.highlight .sr{color:#75b5aa}.highlight .si{color:#8f5536}.highlight .se{color:#8f5536}.highlight .nn{color:#f4bf75}.highlight .nc{color:#f4bf75}.highlight .no{color:#f4bf75}.highlight .na{color:#6a9fb5}.highlight .m,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .il,.highlight .mo,.highlight .mb,.highlight .mx{color:#90a959}.highlight .ss{color:#90a959}btnform{margin:0 0 5px 0}btnform fieldset{margin-bottom:5px;padding:0;border-width:0}btnform legend{display:block;width:100%;margin-bottom:10px;*margin-left:-7px;padding:0;color:#333332;border:0;border-bottom:1px solid #ccc;white-space:normal}btnform p{margin-bottom:5px / 2}btnform ul{list-style-type:none;margin:0 0 5px 0;padding:0}btnform br{display:none}label,input,button,select,textarea{vertical-align:baseline;*vertical-align:middle}input,button,select,textarea{font-family:Georgia,Times,serif;box-sizing:border-box}label{display:block;margin-bottom:10px / 8;font-weight:bold;color:#333332;cursor:pointer}label input,label textarea,label select{display:block}input,textarea,select{display:inline-block;width:100%;padding:4px;margin-bottom:5px / 4;background-color:#fff;border:1px solid #ccc;color:#333332}input:hover,textarea:hover,select:hover{border-color:gray}.input-mini{width:60px}.input-small{width:90px}input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;border-radius:0;border:0 \9}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="image"]{border:0;box-shadow:none}input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:transparent;background-color:initial;box-shadow:none}input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;cursor:pointer;*overflow:visible}select,input[type="file"]{*margin-top:4px}select{width:auto;background-color:#fff}select[multiple],select[size]{height:auto}textarea{resize:vertical;height:auto;overflow:auto;vertical-align:top}input[type="hidden"]{display:none}.radio,.checkbox{padding-left:18px;font-weight:normal}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{opacity:0.5;cursor:not-allowed}input:focus,textarea:focus{border-color:#000;outline:0;outline:thin dotted \9}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{box-shadow:none}.help-block,.help-inline{color:#308cbc}.help-block{display:block;margin-bottom:1em;line-height:1em}.help-inline{display:inline-block;vertical-align:middle;padding-left:5px}.form-inline input,.form-inline textarea,.form-inline select{display:inline-block;margin-bottom:0}.form-inline label{display:inline-block}.form-inline .radio,.form-inline .checkbox,.form-inline .radio{padding-left:0;margin-bottom:0;vertical-align:middle}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px}.form-search input,.form-search textarea,.form-search select{display:inline-block;margin-bottom:0}.form-search .search-query{padding-left:14px;padding-right:14px;margin-bottom:0;border-radius:14px}.form-search label{display:inline-block}.form-search .radio,.form-search .checkbox,.form-inline .radio{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px}#goog-fixurl ul{list-style:none;margin-left:0;padding-left:0}#goog-fixurl ul li{list-style-type:none}#goog-wm-qt{width:auto;margin-right:10px;margin-bottom:20px;padding:8px 20px;display:inline-block;font-size:14px;background-color:#fff;color:#000;border-width:2px !important;border-style:solid !important;border-color:gray;border-radius:4px}#main{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;position:relative;margin-top:2em;padding-left:2em;padding-right:2em;z-index:0}#main:after{content:" ";display:block;clear:both}#main::after{clear:both;content:"";display:table}@media (min-width: 64em){#main{padding-left:1em;padding-right:1em}}@media (min-width: 80em){#main{max-width:1280px}}@media (min-width: 48em){.page{padding-right:200px}}@media (min-width: 64em){.page{width:83.05085%;float:right;margin-right:0;padding-right:300px}}@media (min-width: 80em){.page{padding-left:4.23729%;padding-right:400px}}.page__title{margin-top:0;font-family:Georgia,Times,serif}.page__title+.page__meta{margin-top:-1.5em}.page__content p,.page__content li{font-size:16px}.page__hero{position:relative;margin-bottom:2em;clear:both}.page__hero::after{clear:both;content:"";display:table}.page__hero-image{width:100%;height:auto;-ms-interpolation-mode:bicubic}.page__hero-caption{position:absolute;bottom:0;right:0;margin:0 auto;padding:2px 5px;color:#fff;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:10px;background:#000;text-align:right;z-index:5;opacity:0.5;border-radius:4px 0 4px 0}@media (min-width: 64em){.page__hero-caption{padding:5px 10px}}.page__hero-caption a{color:#fff;text-decoration:none}.page__share{margin-top:2em;padding-top:1em;border-top:1px solid #e2e2e2}.page__share-title{font-size:14px;margin-bottom:10px;text-transform:uppercase}.page__meta{margin-top:2em;color:#797979;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px}.page__meta p{margin-bottom:0.5em}.page__meta-title{font-size:14px;margin-bottom:10px;text-transform:uppercase}.page__taxonomy .sep{display:none}.page__taxonomy-item{display:inline-block;margin-right:5px;margin-bottom:8px;padding:5px 10px;text-decoration:none;border:1px solid #e2e2e2;border-radius:4px}.page__taxonomy-item:hover{text-decoration:none;border-color:#4c4c4c}.page__comments-title{font-size:14px;margin-top:2rem;margin-bottom:10px;padding-top:2rem;border-top:1px solid #e2e2e2;text-transform:uppercase}.page__related{margin-top:2em;padding-top:1em;border-top:1px solid #e2e2e2;clear:both;float:left}.page__related::after{clear:both;content:"";display:table}@media (min-width: 64em){.page__related{margin-left:16.94915%}}@media (min-width: 80em){.page__related{margin-left:21.18644%}}.page__related a{text-decoration:none}.page__related-title{font-size:14px;margin-bottom:10px;text-transform:uppercase}.archive{margin-bottom:2em}@media (min-width: 48em){.archive{width:100%;float:left;margin-left:0;margin-right:0}}@media (min-width: 64em){.archive{width:83.05085%;float:right;margin-right:0}}@media (min-width: 80em){.archive{padding-left:4.23729%}}.archive a{text-decoration:none}.archive__subtitle{margin:0;padding-bottom:0.5em;font-size:14px;color:#797979;border-bottom:1px solid #e2e2e2}.archive__item-title{margin-bottom:4px;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:20px}.archive__item-excerpt{font-size:14px}.archive__item-excerpt+p{text-indent:0}a:hover .archive__item-teaser{box-shadow:0 0 10px rgba(0,0,0,0.25)}a:hover .archive__item-title{text-decoration:underline}@media (min-width: 48em){.list__item{padding-right:200px}}@media (min-width: 64em){.list__item{padding-right:300px}}@media (min-width: 80em){.list__item{padding-right:400px}}.grid__item{margin-bottom:2em}.grid__item .archive__item-excerpt{display:none}.grid__item .archive__item-teaser{border-radius:4px}.grid__item .archive__item-teaser img{width:100%}@media (min-width: 37.5em){.grid__item{width:48.97959%;float:left}.grid__item:nth-child(2n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.grid__item:nth-child(2n+2){margin-left:51.02041%;margin-right:-100%;clear:none}.grid__item .archive__item-teaser{max-height:200px;overflow:hidden}}@media (min-width: 48em){.grid__item{margin-left:0;margin-right:0;width:23.46939%;float:left}.grid__item:nth-child(4n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.grid__item:nth-child(4n+2){margin-left:25.5102%;margin-right:-100%;clear:none}.grid__item:nth-child(4n+3){margin-left:51.02041%;margin-right:-100%;clear:none}.grid__item:nth-child(4n+4){margin-left:76.53061%;margin-right:-100%;clear:none}.grid__item .archive__item-teaser{max-height:120px}.grid__item .archive__item-excerpt{display:block}}.sidebar{clear:both;margin-bottom:1em}.sidebar::after{clear:both;content:"";display:table}@media (min-width: 64em){.sidebar{width:15.25424%;float:left;margin-right:1.69492%;padding-right:2.11864%}}@media (min-width: 80em){.sidebar{padding-right:0}}.sidebar h2,.sidebar h3,.sidebar h4,.sidebar h5,.sidebar h6{margin-bottom:0;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}.sidebar h3{font-size:20px}.sidebar h4{font-size:18px}.sidebar p,.sidebar li{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px;line-height:1.2}.sidebar img{width:100%}@media (min-width: 48em){.sidebar__right{position:absolute;top:0;right:1em;width:200px;padding-left:2em}}@media (min-width: 48em) and (min-width: 64em){.sidebar__right{width:300px}}@media (min-width: 48em) and (min-width: 80em){.sidebar__right{width:400px;padding-left:6.77966%}}@media (min-width: 64em){.sidebar__right{right:calc(50% - (0.5 * 1024px) + 1em)}}@media (min-width: 80em){.sidebar__right{right:calc(50% - (0.5 * 1280px) + 1em)}}.author__avatar{display:table-cell;vertical-align:top;width:36px;height:36px}@media (min-width: 64em){.author__avatar{display:block;width:100%;height:100%}}.author__avatar img{max-width:110px;border-radius:50%}.author__content{display:table-cell;vertical-align:top;vertical-align:top;padding-left:15px;padding-right:15px;line-height:1}@media (min-width: 64em){.author__content{display:block;width:100%;padding-left:0;padding-right:0}}.author__name{margin:0;font-size:18px}@media (min-width: 64em){.author__name{margin-top:10px;margin-bottom:10px;font-size:20px}}.sidebar .author__name{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}.author__bio{margin-bottom:10px}@media (min-width: 64em){.author__bio{margin-bottom:20px}}.author__urls-wrapper{position:relative;display:table-cell;vertical-align:middle;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;z-index:9999;position:relative;cursor:pointer}@media (min-width: 64em){.author__urls-wrapper{display:block}}.author__urls-wrapper .btn,.author__urls-wrapper #goog-wm-sb{margin:0;padding:5px 10px;color:#797979}@media (min-width: 64em){.author__urls-wrapper .btn,.author__urls-wrapper #goog-wm-sb{display:none}}.author__urls{display:none;position:absolute;right:0;margin-top:15px;padding:10px;list-style-type:none;border:1px solid #e2e2e2;border-radius:4px;background:#fff;z-index:-1;box-shadow:0 0 10px rgba(0,0,0,0.25)}@media (min-width: 64em){.author__urls{display:block;position:relative;margin:0;padding:0;border:0;background:transparent;box-shadow:none}}.author__urls:before{display:block;content:"";position:absolute;top:-11px;left:calc(50% - 10px);width:0;border-style:solid;border-width:0 10px 10px;border-color:#e2e2e2 transparent;z-index:0}@media (min-width: 64em){.author__urls:before{display:none}}.author__urls:after{display:block;content:"";position:absolute;top:-10px;left:calc(50% - 10px);width:0;border-style:solid;border-width:0 10px 10px;border-color:#fff transparent;z-index:1}@media (min-width: 64em){.author__urls:after{display:none}}.author__urls a{display:block;margin-bottom:5px;padding-right:5px;font-size:14px;text-decoration:none;white-space:nowrap}.author__urls a:hover{text-decoration:underline}/*!
+a:focus{outline:thin dotted #dd8338;outline:5px auto #dd8338;outline-offset:-2px}*,*:before,*:after{box-sizing:border-box}html{box-sizing:border-box;background-color:#fff;font-size:15px;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}@media (min-width: 48em){html{font-size:16px}}@media (min-width: 64em){html{font-size:18px}}body{margin:0}::-moz-selection{color:#fff;background:#000}::selection{color:#fff;background:#000}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}a{color:inherit}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}body{margin:0;padding:0;color:#333332;font-family:Georgia,Times,serif;line-height:1.5;background-color:#fff}body.overflow--hidden{overflow:hidden}h1,h2,h3,h4,h5,h6{line-height:1.25;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}h1{font-size:32px}h2{font-size:28px}h3{font-size:24px}h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}small{font-size:0.8rem}u,ins{text-decoration:none;border-bottom:1px solid #333332}u a,ins a{color:inherit}del a{color:inherit}p,pre,blockquote,ul,ol,dl,figure,table,fieldset{orphans:3;widows:3}abbr[title],abbr[data-original-title]{text-decoration:none;cursor:help;border-bottom:1px dotted #333332}blockquote{margin:2em 1em 2em 0;padding-left:1em;padding-right:1em;font-style:italic;border-left:0.25em solid #000}blockquote a{color:inherit}blockquote cite{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px;font-style:normal}blockquote cite:before{content:"\2014";padding-right:5px}a:hover,a:active{outline:0}a:hover img{box-shadow:0 0 10px rgba(0,0,0,0.25)}@media (min-width: 37.5em){ol,ul{padding-left:0}ol ol,ol ul,ul ol,ul ul{padding:0.5em 1em}}tt,code,kbd,samp,pre{font-family:Monaco,Consolas,"Lucida Console",monospace;font-size:14px}pre{overflow-x:auto}p code,li code,figcaption code{padding-top:0.1rem;padding-bottom:0.1rem;background:#f8f8f8;border:1px solid #ededed;border-radius:4px}p code:before,p code:after,li code:before,li code:after,figcaption code:before,figcaption code:after{letter-spacing:-0.2em;content:"\00a0"}hr{display:block;margin:1em 0;border:0;border-top:1px solid #ededed}figure{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:2em 0}figure img,figure iframe,figure .fluid-width-video-wrapper{margin-bottom:1em}figure img{width:100%;border-radius:4px;transition:box-shadow 0.3s}figure>a{display:block}@media (min-width: 37.5em){figure.half>a,figure.half>img{width:calc(50% - 0.5em)}}figure.half figcaption{width:100%}@media (min-width: 37.5em){figure.third>a,figure.third>img{width:calc(33.3333% - 0.5em)}}figure.third figcaption{width:100%}figcaption{margin-bottom:0.65rem;color:#666665;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:0.8rem}figcaption a{color:inherit;text-decoration:none;border-bottom:1px solid #c9c9c9;transition:border 0.4s ease-in-out}figcaption a:hover{color:#000;border-bottom-color:#000}figcaption code{font-size:0.64rem}svg:not(:root){overflow:hidden}nav ul{margin:0;padding:0}nav li{list-style:none}nav a{text-decoration:none}b,i,strong,em,blockquote,p,q,span,figure,img,h1,h2,header,input,a,tr,td,form button,input[type="submit"],.btn,#goog-wm-sb,.highlight,.archive__item-teaser{transition:all 0.2s ease-in-out}.hidden{display:none;visibility:hidden}.load{display:none}.transparent{opacity:0}.visually-hidden,.screen-reader-text,.screen-reader-text span,.screen-reader-shortcut{position:absolute !important;clip:rect(1px, 1px, 1px, 1px);height:1px !important;width:1px !important;border:0 !important;overflow:hidden}body:hover .visually-hidden a,body:hover .visually-hidden input,body:hover .visually-hidden button{display:none !important}.screen-reader-text:focus,.screen-reader-shortcut:focus{clip:auto !important;height:auto !important;width:auto !important;display:block;font-size:1em;font-weight:bold;padding:15px 23px 14px;background:#fff;z-index:100000;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,0.6)}.skip-link{position:fixed;z-index:20;margin:0;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;white-space:nowrap}.skip-link li{height:0;width:0;list-style:none}.center{text-align:center}.cf{clear:both}.wrapper{max-width:1024px;margin-left:auto;margin-right:auto}.wrapper:after{content:" ";display:block;clear:both}.align-left{display:block;margin-left:auto;margin-right:auto}@media (min-width: 37.5em){.align-left{float:left;margin-right:1em}}.align-right{display:block;margin-left:auto;margin-right:auto}@media (min-width: 37.5em){.align-right{float:right;margin-left:1em}}@media (min-width: 64em){.full{margin-right:-300px}}.icon{display:inline-block;fill:currentColor;width:1em;height:1.1em;line-height:1;position:relative;top:-0.1em;vertical-align:middle}.social-icons .fa-behance,.social-icons .fa-behance-square{color:#1769FF}.social-icons .fa-dribbble{color:#ea4c89}.social-icons .fa-facebook,.social-icons .fa-facebook-square{color:#3b5998}.social-icons .fa-twitter,.social-icons .fa-twitter-square{color:#55acee}.social-icons .fa-flickr{color:#ff0084}.social-icons .fa-foursquare{color:#0072b1}.social-icons .fa-github,.social-icons .fa-github-alt,.social-icons .fa-github-square{color:#171516}.social-icons .fa-google-plus,.social-icons .fa-google-plus-square{color:#dd4b39}.social-icons .fa-instagram{color:#517fa4}.social-icons .fa-lastfm,.social-icons .fa-lastfm-square{color:#d51007}.social-icons .fa-linkedin,.social-icons .fa-linkedin-square{color:#007bb6}.social-icons .fa-pinterest,.social-icons .fa-pinterest-p,.social-icons .fa-pinterest-square{color:#cb2027}.social-icons .fa-rss,.social-icons .fa-rss-square{color:#fa9b39}.social-icons .fa-soundcloud{color:#f30}.social-icons .fa-stack-exchange,.social-icons .fa-stack-overflow{color:#fe7a15}.social-icons .fa-tumblr,.social-icons .fa-tumblr-square{color:#32506d}.social-icons .fa-twitter,.social-icons .fa-twitter-square{color:#55acee}.social-icons .fa-vimeo,.social-icons .fa-vimeo-square{color:#1ab7ea}.social-icons .fa-vine{color:#00bf8f}.social-icons .fa-youtube,.social-icons .fa-youtube-square,.social-icons .fa-youtube-play{color:#b00}.social-icons .fa-xing,.social-icons .fa-xing-square{color:#006567}.navicon{position:relative;width:32px;height:4px;background:#fff;margin:auto;transition:0.3s}.navicon:before,.navicon:after{content:"";position:absolute;left:0;width:32px;height:4px;background:#fff;transition:0.3s}.navicon:before{top:-8px}.navicon:after{bottom:-8px}.close .navicon{background:transparent}.close .navicon:before,.close .navicon:after{-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:0;width:32px}.close .navicon:before{-webkit-transform:rotate3d(0, 0, 1, 45deg);transform:rotate3d(0, 0, 1, 45deg)}.close .navicon:after{-webkit-transform:rotate3d(0, 0, 1, -45deg);transform:rotate3d(0, 0, 1, -45deg)}@media (min-width: 48em){.sticky{clear:both;position:-webkit-sticky;position:sticky;top:3em}.sticky::after{clear:both;content:"";display:table}.sticky>*{display:block}}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.footnotes ol,.footnotes li,.footnotes p{margin-bottom:0;font-size:14px}a.reversefootnote{text-decoration:none}a.reversefootnote:hover{text-decoration:underline}table{width:100%;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:0.8rem;border-collapse:collapse;border-bottom:2px solid #ededed}table+table{margin-top:1em}thead{border-bottom:2px solid #ededed}th{padding:0.5em;font-weight:bold;text-align:left}td{border-bottom:1px solid #ededed;padding:0.5em}tr,td,th{vertical-align:middle}.btn,#goog-wm-sb{display:inline-block;margin-bottom:0.25em;padding:0.5em 1em;color:#fff !important;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px;font-weight:bold;line-height:1.5;text-align:center;text-decoration:none;background-color:#000;border:0 !important;border-radius:4px;cursor:pointer}.btn:hover,#goog-wm-sb:hover{background-color:#333}.btn .icon,#goog-wm-sb .icon{margin-right:0.5em}.btn .icon+.hidden,#goog-wm-sb .icon+.hidden{margin-left:-0.5em}.btn--block{display:block;width:100%}.btn--block+.btn--block{margin-top:0.25em}.btn--inverse{color:#4c4c4c !important;border:1px solid #c9c9c9 !important;background-color:#fff}.btn--inverse:hover{color:#fff !important;border-color:#4c4c4c}.btn--light-outline{border:1px solid #fff !important;background-color:transparent}.btn--info{background-color:#308cbc}.btn--info:hover{background-color:#267096}.btn--warning{background-color:#dd8338}.btn--warning:hover{background-color:#b1692d}.btn--success{background-color:#5cb85c}.btn--success:hover{background-color:#4a934a}.btn--danger{background-color:#C64537}.btn--danger:hover{background-color:#9e372c}.btn--disabled{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);box-shadow:none;opacity:0.65}.btn--facebook{background-color:#3b5998}.btn--facebook:hover{background-color:#2f477a}.btn--twitter{background-color:#55acee}.btn--twitter:hover{background-color:#448abe}.btn--google-plus{background-color:#dd4b39}.btn--google-plus:hover{background-color:#b13c2e}.btn--x-large{font-size:24px}.btn--large{font-size:18px}.btn--small{font-size:12px}.btn--x-small{font-size:10px;font-weight:normal}.notice{margin:2em 0 !important;padding:1em;text-indent:initial;background-color:#e6e6e6;border-radius:4px}.notice h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice h4{margin-bottom:0;font-size:1rem}.page__content .notice a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice a:hover{background-color:transparent !important}.notice p{margin-bottom:0}.notice p a{border-bottom:1px solid gray !important}.notice h4+p{margin-top:0;padding-top:0}.notice code{background-color:#f2f2f2}.notice--info{margin:2em 0 !important;padding:1em;text-indent:initial;background-color:#eaf4f8;border-radius:4px}.notice--info h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--info h4{margin-bottom:0;font-size:1rem}.page__content .notice--info a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--info a:hover{background-color:transparent !important}.notice--info p{margin-bottom:0}.notice--info p a{border-bottom:1px solid #98c6de !important}.notice--info h4+p{margin-top:0;padding-top:0}.notice--info code{background-color:#f5f9fc}.notice--warning{margin:2em 0 !important;padding:1em;text-indent:initial;background-color:#fcf3eb;border-radius:4px}.notice--warning h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--warning h4{margin-bottom:0;font-size:1rem}.page__content .notice--warning a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--warning a:hover{background-color:transparent !important}.notice--warning p{margin-bottom:0}.notice--warning p a{border-bottom:1px solid #eec19c !important}.notice--warning h4+p{margin-top:0;padding-top:0}.notice--warning code{background-color:#fdf9f5}.notice--success{margin:2em 0 !important;padding:1em;text-indent:initial;background-color:#eff8ef;border-radius:4px}.notice--success h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--success h4{margin-bottom:0;font-size:1rem}.page__content .notice--success a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--success a:hover{background-color:transparent !important}.notice--success p{margin-bottom:0}.notice--success p a{border-bottom:1px solid #aedcae !important}.notice--success h4+p{margin-top:0;padding-top:0}.notice--success code{background-color:#f7fbf7}.notice--danger{margin:2em 0 !important;padding:1em;text-indent:initial;background-color:#f9eceb;border-radius:4px}.notice--danger h4{margin-top:0 !important;margin-bottom:0.75em;line-height:1 !important}.page__content .notice--danger h4{margin-bottom:0;font-size:1rem}.page__content .notice--danger a{border-bottom-width:2px;box-shadow:none !important}.page__content .notice--danger a:hover{background-color:transparent !important}.notice--danger p{margin-bottom:0}.notice--danger p a{border-bottom:1px solid #e3a29b !important}.notice--danger h4+p{margin-top:0;padding-top:0}.notice--danger code{background-color:#fcf6f5}.masthead{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;padding:2em 2em 1em;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-weight:700;text-transform:uppercase}.masthead:after{content:" ";display:block;clear:both}.masthead::after{clear:both;content:"";display:table}@media (min-width: 64em){.masthead{padding-left:1em;padding-right:1em}}@media (min-width: 80em){.masthead{max-width:1280px}}.masthead nav{z-index:10}.masthead a{text-decoration:none}.site-name{font-size:24px}@media (min-width: 64em){.site-name{padding-left:16.94915%}}@media (min-width: 80em){.site-name{padding-left:21.18644%}}@media (min-width: 64em){.masthead__menu{padding-left:16.94915%}}@media (min-width: 80em){.masthead__menu{padding-left:21.18644%}}.masthead__menu ul{margin:0;padding:0;clear:both;list-style-type:none}.masthead__menu-item{display:block;list-style-type:none;font-size:16px;white-space:nowrap}.breadcrumbs{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;margin-top:0;margin-bottom:0;padding-left:2em;padding-right:2em;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}.breadcrumbs:after{content:" ";display:block;clear:both}.breadcrumbs::after{clear:both;content:"";display:table}@media (min-width: 64em){.breadcrumbs{padding-left:1em;padding-right:1em}}@media (min-width: 80em){.breadcrumbs{max-width:1280px}}.breadcrumbs ol{padding:0;list-style:none;font-size:14px}@media (min-width: 64em){.breadcrumbs ol{width:83.05085%;float:right;margin-right:0}}@media (min-width: 80em){.breadcrumbs ol{padding-left:4.23729%}}.breadcrumbs li{display:inline}.breadcrumbs .current{font-weight:bold}.pagination{padding-top:0.5em;border-top:1px solid #ededed}.pagination ul{margin:0;padding:0;list-style-type:none}.pagination li{display:inline-block}.pagination li+li:before{content:"";padding-right:10px}.pagination .current{font-weight:bold}.greedy-nav{position:relative;min-width:250px;background:#fff}.greedy-nav a{display:block;margin:0 20px;padding:10px 0;color:#4c4c4c;text-decoration:none}.greedy-nav a:hover{color:#000}.greedy-nav button{position:absolute;height:100%;right:0;padding:0 10px;border:0;outline:none;background-color:#000;color:#fff;cursor:pointer}.greedy-nav .visible-links{display:inline-table}.greedy-nav .visible-links li{display:table-cell}.greedy-nav .visible-links li:first-child{font-weight:bold}.greedy-nav .visible-links li:first-child a{margin-left:0}.greedy-nav .visible-links li:last-child a{margin-right:0}.greedy-nav .visible-links a{position:relative}.greedy-nav .visible-links a:before{content:"";position:absolute;bottom:0;height:4px;background:#c9c9c9;width:0;transition:0.3s}.greedy-nav .visible-links a:hover{color:#000;border-bottom-color:#ededed}.greedy-nav .visible-links a:hover:before{width:100%}.greedy-nav .hidden-links{position:absolute;top:100%;right:0;margin-top:15px;padding:5px;border:1px solid #ededed;border-radius:4px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,0.25)}.greedy-nav .hidden-links a{margin:0;padding:10px 20px;font-size:0.8em}.greedy-nav .hidden-links a:hover{color:#000;background:#ededed}.greedy-nav .hidden-links:before{content:"";position:absolute;top:-11px;right:10px;width:0;border-style:solid;border-width:0 10px 10px;border-color:#ededed transparent;display:block;z-index:0}.greedy-nav .hidden-links:after{content:"";position:absolute;top:-10px;right:10px;width:0;border-style:solid;border-width:0 10px 10px;border-color:#fff transparent;display:block;z-index:1}.greedy-nav .hidden-links li{display:block;border-bottom:1px solid #ededed}.greedy-nav .hidden-links li:last-child{border-bottom:none}.toc{padding:0 0 1em;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;color:#4c4c4c;text-transform:uppercase;letter-spacing:1px;background-color:#fff}.toc__title{margin:0;padding:10px 20px;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:16px;border-bottom:1px solid #ededed}.toc__menu{margin:0;padding:0;width:100%;list-style:none}.toc__menu a{display:block;padding:10px 20px;color:#4c4c4c;font-size:11px;font-weight:bold;line-height:1.5;border-bottom:1px solid #ededed}.toc__menu a:hover{color:#000;background:#ededed}.toc__menu li ul>li a{font-weight:normal}.toc__menu li>ul li{display:none}@media (min-width: 48em){.toc__menu li>ul li{display:block}}.page__footer{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;margin-top:3em;padding:0 2em 3em}.page__footer:after{content:" ";display:block;clear:both}.page__footer::after{clear:both;content:"";display:table}@media (min-width: 64em){.page__footer{padding-left:1em;padding-right:1em}}@media (min-width: 80em){.page__footer{max-width:1280px}}.page__footer a{text-decoration:none}.page__footer a:hover{text-decoration:underline}.page__footer-copyright{font-size:14px}@media (min-width: 64em){.page__footer-copyright{padding-left:16.94915%}}@media (min-width: 80em){.page__footer-copyright{padding-left:21.18644%}}@media (min-width: 64em){.page__footer-follow{padding-left:16.94915%}}@media (min-width: 80em){.page__footer-follow{padding-left:21.18644%}}.page__footer-follow ul{margin:0;padding:0;list-style-type:none}.page__footer-follow li{display:inline-block;padding-top:5px;padding-bottom:5px;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px;text-transform:uppercase}.page__footer-follow li+li:before{content:"";padding-right:5px}.page__footer-follow a{padding-right:10px;font-weight:bold}div.highlighter-rouge,figure.highlight{margin-bottom:1em;padding:1em;border:1px solid #ededed;border-radius:4px;background-color:#f8f8f8}div.highlighter-rouge .highlight,figure.highlight .highlight{margin:0;font-family:Monaco,Consolas,"Lucida Console",monospace;font-size:12px;line-height:1.5}.highlight table td{padding:5px}.highlight table pre{margin:0}.highlight .c{color:#999988;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#999988;font-style:italic}.highlight .cp{color:#999999;font-weight:bold}.highlight .c1{color:#999988;font-style:italic}.highlight .cs{color:#999999;font-weight:bold;font-style:italic}.highlight .gd{color:#000000;background-color:#ffdddd}.highlight .gd .x{color:#000000;background-color:#ffaaaa}.highlight .ge{font-style:italic}.highlight .gr{color:#aa0000}.highlight .gh{color:#999999}.highlight .gi{color:#000000;background-color:#ddffdd}.highlight .gi .x{color:#000000;background-color:#aaffaa}.highlight .go{color:#888888}.highlight .gp{color:#555555}.highlight .gs{font-weight:bold}.highlight .gu{color:#800080;font-weight:bold}.highlight .gt{color:#aa0000}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kn{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#445588;font-weight:bold}.highlight .m{color:#009999}.highlight .s{color:#dd1144}.highlight .n{color:#333333}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#445588;font-weight:bold}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne{color:#990000;font-weight:bold}.highlight .nf{color:#990000;font-weight:bold}.highlight .nn{color:#555555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:bold}.highlight .w{color:#bbbbbb}.highlight .mf{color:#009999}.highlight .mh{color:#009999}.highlight .mi{color:#009999}.highlight .mo{color:#009999}.highlight .sb{color:#dd1144}.highlight .sc{color:#dd1144}.highlight .sd{color:#dd1144}.highlight .s2{color:#dd1144}.highlight .se{color:#dd1144}.highlight .sh{color:#dd1144}.highlight .si{color:#dd1144}.highlight .sx{color:#dd1144}.highlight .sr{color:#009926}.highlight .s1{color:#dd1144}.highlight .ss{color:#990073}.highlight .bp{color:#999999}.highlight .vc{color:teal}.highlight .vg{color:teal}.highlight .vi{color:teal}.highlight .il{color:#009999}.highlight .gc{color:#999;background-color:#EAF2F5}btnform{margin:0 0 5px 0}btnform fieldset{margin-bottom:5px;padding:0;border-width:0}btnform legend{display:block;width:100%;margin-bottom:10px;*margin-left:-7px;padding:0;color:#333332;border:0;border-bottom:1px solid #ccc;white-space:normal}btnform p{margin-bottom:5px / 2}btnform ul{list-style-type:none;margin:0 0 5px 0;padding:0}btnform br{display:none}label,input,button,select,textarea{vertical-align:baseline;*vertical-align:middle}input,button,select,textarea{font-family:Georgia,Times,serif;box-sizing:border-box}label{display:block;margin-bottom:10px / 8;font-weight:bold;color:#333332;cursor:pointer}label input,label textarea,label select{display:block}input,textarea,select{display:inline-block;width:100%;padding:4px;margin-bottom:5px / 4;background-color:#fff;border:1px solid #ccc;color:#333332}input:hover,textarea:hover,select:hover{border-color:gray}.input-mini{width:60px}.input-small{width:90px}input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;border-radius:0;border:0 \9}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="image"]{border:0;box-shadow:none}input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:transparent;background-color:initial;box-shadow:none}input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;cursor:pointer;*overflow:visible}select,input[type="file"]{*margin-top:4px}select{width:auto;background-color:#fff}select[multiple],select[size]{height:auto}textarea{resize:vertical;height:auto;overflow:auto;vertical-align:top}input[type="hidden"]{display:none}.radio,.checkbox{padding-left:18px;font-weight:normal}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{opacity:0.5;cursor:not-allowed}input:focus,textarea:focus{border-color:#000;outline:0;outline:thin dotted \9}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{box-shadow:none}.help-block,.help-inline{color:#308cbc}.help-block{display:block;margin-bottom:1em;line-height:1em}.help-inline{display:inline-block;vertical-align:middle;padding-left:5px}.form-inline input,.form-inline textarea,.form-inline select{display:inline-block;margin-bottom:0}.form-inline label{display:inline-block}.form-inline .radio,.form-inline .checkbox,.form-inline .radio{padding-left:0;margin-bottom:0;vertical-align:middle}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px}.form-search input,.form-search textarea,.form-search select{display:inline-block;margin-bottom:0}.form-search .search-query{padding-left:14px;padding-right:14px;margin-bottom:0;border-radius:14px}.form-search label{display:inline-block}.form-search .radio,.form-search .checkbox,.form-inline .radio{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px}#goog-fixurl ul{list-style:none;margin-left:0;padding-left:0}#goog-fixurl ul li{list-style-type:none}#goog-wm-qt{width:auto;margin-right:10px;margin-bottom:20px;padding:8px 20px;display:inline-block;font-size:14px;background-color:#fff;color:#000;border-width:2px !important;border-style:solid !important;border-color:gray;border-radius:4px}#main{max-width:1024px;margin-left:auto;margin-right:auto;clear:both;position:relative;margin-top:2em;padding-left:2em;padding-right:2em;z-index:0}#main:after{content:" ";display:block;clear:both}#main::after{clear:both;content:"";display:table}@media (min-width: 64em){#main{padding-left:1em;padding-right:1em}}@media (min-width: 80em){#main{max-width:1280px}}@media (min-width: 48em){.page{padding-right:200px}}@media (min-width: 64em){.page{width:83.05085%;float:right;margin-right:0;padding-right:300px}}@media (min-width: 80em){.page{padding-left:4.23729%;padding-right:400px}}.page .page__inner-wrap .page__content,.page .page__inner-wrap .page__meta,.page .page__inner-wrap .page__share{clear:both;clear:both;width:100%;float:left;margin-left:0;margin-right:0}.page .page__inner-wrap .page__content::after,.page .page__inner-wrap .page__meta::after,.page .page__inner-wrap .page__share::after{clear:both;content:"";display:table}.page__title{margin-top:0;font-family:Georgia,Times,serif;line-height:1}.page__title+.page__meta{margin-top:-1.5em}.page__lead{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:20px}.page__content p,.page__content li{font-size:16px}.page__content p{margin:0 0 1.625rem}.page__hero{position:relative;margin-bottom:2em;clear:both}.page__hero::after{clear:both;content:"";display:table}.page__hero--overlay{position:relative;margin-bottom:2em;padding:3em 0;clear:both;text-align:center;background-size:cover;background-repeat:no-repeat;background-position:center}.page__hero--overlay::after{clear:both;content:"";display:table}.page__hero--overlay .wrapper{padding-left:2em;padding-right:2em}.page__hero--overlay .page__title,.page__hero--overlay .page__meta,.page__hero--overlay .page__lead,.page__hero--overlay .btn,.page__hero--overlay #goog-wm-sb{color:#fff;text-shadow:1px 1px 4px rgba(0,0,0,0.5)}.page__hero--overlay .page__title{font-size:48px}@media (min-width: 37.5em){.page__hero--overlay .page__title{font-size:60px}}.page__hero--overlay .page__lead{font-weight:bold}.page__hero-image{width:100%;height:auto;-ms-interpolation-mode:bicubic}.page__hero-caption{position:absolute;bottom:0;right:0;margin:0 auto;padding:2px 5px;color:#fff;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:10px;background:#000;text-align:right;z-index:5;opacity:0.5;border-radius:4px 0 4px 0}@media (min-width: 64em){.page__hero-caption{padding:5px 10px}}.page__hero-caption a{color:#fff;text-decoration:none}.page__share{margin-top:2em;padding-top:1em;border-top:1px solid #ededed}.page__share-title{font-size:14px;margin-bottom:10px;text-transform:uppercase}.page__meta{margin-top:2em;color:#797979;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px}.page__meta p{margin-bottom:0.5em}.page__meta-title{font-size:14px;margin-bottom:10px;text-transform:uppercase}.page__taxonomy .sep{display:none}.page__taxonomy strong{margin-right:10px}.page__taxonomy-item{display:inline-block;margin-right:5px;margin-bottom:8px;padding:5px 10px;text-decoration:none;border:1px solid #c9c9c9;border-radius:4px}.page__taxonomy-item:hover{text-decoration:none;border-color:#4c4c4c}.page__comments{clear:both;clear:both;width:100%;float:left;margin-left:0;margin-right:0}.page__comments::after{clear:both;content:"";display:table}.page__comments-title{font-size:14px;margin-top:2rem;margin-bottom:10px;padding-top:2rem;border-top:1px solid #ededed;text-transform:uppercase}.page__related{margin-top:2em;padding-top:1em;border-top:1px solid #ededed;clear:both;float:left}.page__related::after{clear:both;content:"";display:table}@media (min-width: 64em){.page__related{margin-left:16.94915%}}@media (min-width: 80em){.page__related{margin-left:21.18644%}}.page__related a{text-decoration:none}.page__related-title{font-size:14px;margin-bottom:10px;text-transform:uppercase}.archive{margin-bottom:2em}@media (min-width: 48em){.archive{width:100%;float:left;margin-left:0;margin-right:0}}@media (min-width: 64em){.archive{width:83.05085%;float:right;margin-right:0}}@media (min-width: 80em){.archive{padding-left:4.23729%}}.archive a{text-decoration:none}.archive__subtitle{margin:2em 0 0;padding-bottom:0.5em;font-size:14px;color:#797979;border-bottom:1px solid #ededed}.archive__item-title{margin-bottom:4px;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:20px}.archive__item-excerpt{font-size:14px}.archive__item-excerpt+p{text-indent:0}.archive__item-teaser{border-radius:4px;overflow:hidden}.archive__item-teaser img{width:100%}a:hover .archive__item-teaser{box-shadow:0 0 10px rgba(0,0,0,0.25)}a:hover .archive__item-title{text-decoration:underline}@media (min-width: 48em){.list__item{padding-right:200px}}@media (min-width: 64em){.list__item{padding-right:300px}}@media (min-width: 80em){.list__item{padding-right:400px}}.list__item .page__meta{margin:0 0 4px}.grid__item{margin-bottom:2em}.grid__item .page__meta{margin:0 0 4px}.grid__item .archive__item-excerpt{display:none}@media (min-width: 37.5em){.grid__item{width:48.97959%;float:left}.grid__item:nth-child(2n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.grid__item:nth-child(2n+2){margin-left:51.02041%;margin-right:-100%;clear:none}.grid__item .archive__item-teaser{max-height:200px}}@media (min-width: 48em){.grid__item{margin-left:0;margin-right:0;width:23.46939%;float:left}.grid__item:nth-child(4n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.grid__item:nth-child(4n+2){margin-left:25.5102%;margin-right:-100%;clear:none}.grid__item:nth-child(4n+3){margin-left:51.02041%;margin-right:-100%;clear:none}.grid__item:nth-child(4n+4){margin-left:76.53061%;margin-right:-100%;clear:none}.grid__item .archive__item-teaser{max-height:120px}.grid__item .archive__item-excerpt{display:block}}.feature__wrapper{clear:both;margin-bottom:2em;border-bottom:1px solid #ededed}.feature__wrapper::after{clear:both;content:"";display:table}.feature__item{margin-bottom:2em}@media (min-width: 37.5em){.feature__item{text-align:center;width:32.20339%;float:left}.feature__item:nth-child(3n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.feature__item:nth-child(3n+2){margin-left:33.89831%;margin-right:-100%;clear:none}.feature__item:nth-child(3n+3){margin-left:67.79661%;margin-right:-100%;clear:none}.feature__item .feature__item-teaser{max-height:200px;overflow:hidden}}.feature__item .archive__item-title{margin-bottom:0.5em;font-size:30px}.feature__item .archive__item-excerpt{margin-bottom:1em;font-size:18px}.feature__item .archive__item-excerpt p{font-size:18px}.feature__item--left{clear:both;width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:2em}@media (min-width: 37.5em){.feature__item--left .archive__item-teaser{width:40.67797%;float:left;margin-right:1.69492%}.feature__item--left .archive__item-body{width:57.62712%;float:right;margin-right:0;padding-left:4.23729%;padding-right:8.47458%}}.feature__item--left .archive__item-title{margin-bottom:0.5em;font-size:30px}.feature__item--left .archive__item-excerpt{margin-bottom:1em;font-size:18px}.feature__item--left .archive__item-excerpt p{font-size:18px}.feature__item--right{clear:both;width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:2em}@media (min-width: 37.5em){.feature__item--right{text-align:right}.feature__item--right .archive__item-teaser{width:40.67797%;float:right;margin-left:1.69492%}.feature__item--right .archive__item-body{width:57.62712%;float:left;margin-left:0;padding-left:4.23729%;padding-right:8.47458%}}.feature__item--right .archive__item-title{margin-bottom:0.5em;font-size:30px}.feature__item--right .archive__item-excerpt{margin-bottom:1em;font-size:18px}.feature__item--right .archive__item-excerpt p{font-size:18px}.feature__item--center{clear:both;width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:2em}@media (min-width: 37.5em){.feature__item--center{text-align:center}.feature__item--center .archive__item-teaser{margin:0 auto;width:40.67797%}.feature__item--center .archive__item-body{margin:0 auto;width:57.62712%}}.feature__item--center .archive__item-title{margin-bottom:0.5em;font-size:30px}.feature__item--center .archive__item-excerpt{margin-bottom:1em;font-size:18px}.feature__item--center .archive__item-excerpt p{font-size:18px}.sidebar{clear:both;margin-bottom:1em}.sidebar::after{clear:both;content:"";display:table}@media (min-width: 64em){.sidebar{width:15.25424%;float:left;margin-right:1.69492%;padding-right:2.11864%}}@media (min-width: 80em){.sidebar{padding-right:0}}.sidebar h2,.sidebar h3,.sidebar h4,.sidebar h5,.sidebar h6{margin-bottom:0;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}.sidebar h3{font-size:20px}.sidebar h4{font-size:18px}.sidebar p,.sidebar li{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;font-size:14px;line-height:1.2}.sidebar img{width:100%}@media (min-width: 48em){.sidebar__right{position:absolute;top:0;right:1em;width:200px;padding-left:2em}}@media (min-width: 48em) and (min-width: 64em){.sidebar__right{width:300px}}@media (min-width: 48em) and (min-width: 80em){.sidebar__right{width:400px;padding-left:6.77966%}}@media (min-width: 64em){.sidebar__right{right:calc(50% - (0.5 * 1024px) + 1em)}}@media (min-width: 80em){.sidebar__right{right:calc(50% - (0.5 * 1280px) + 1em)}}.author__avatar{display:table-cell;vertical-align:top;width:36px;height:36px}@media (min-width: 64em){.author__avatar{display:block;width:100%;height:100%}}.author__avatar img{max-width:110px;border-radius:50%}.author__content{display:table-cell;vertical-align:top;padding-left:15px;padding-right:25px;line-height:1}@media (min-width: 64em){.author__content{display:block;width:100%;padding-left:0;padding-right:0}}.author__name{margin:0;font-size:18px}@media (min-width: 64em){.author__name{margin-top:10px;margin-bottom:10px;font-size:20px}}.sidebar .author__name{font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif}.author__bio{margin:0}@media (min-width: 64em){.author__bio{margin-top:10px;margin-bottom:20px}}.author__urls-wrapper{position:relative;display:table-cell;vertical-align:top;font-family:-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;z-index:9999;position:relative;cursor:pointer}.author__urls-wrapper li:last-child a{margin-bottom:0}@media (min-width: 64em){.author__urls-wrapper{display:block}}@media (min-width: 64em){.author__urls-wrapper .btn,.author__urls-wrapper #goog-wm-sb{display:none}}.author__urls{display:none;position:absolute;right:0;margin-top:15px;padding:10px;list-style-type:none;border:1px solid #ededed;border-radius:4px;background:#fff;z-index:-1;box-shadow:0 0 10px rgba(0,0,0,0.25)}@media (min-width: 64em){.author__urls{display:block;position:relative;margin:0;padding:0;border:0;background:transparent;box-shadow:none}}.author__urls:before{display:block;content:"";position:absolute;top:-11px;left:calc(50% - 10px);width:0;border-style:solid;border-width:0 10px 10px;border-color:#ededed transparent;z-index:0}@media (min-width: 64em){.author__urls:before{display:none}}.author__urls:after{display:block;content:"";position:absolute;top:-10px;left:calc(50% - 10px);width:0;border-style:solid;border-width:0 10px 10px;border-color:#fff transparent;z-index:1}@media (min-width: 64em){.author__urls:after{display:none}}.author__urls a{display:block;margin-bottom:5px;padding-right:5px;padding-top:2px;padding-bottom:2px;font-size:14px;text-decoration:none;white-space:nowrap}.author__urls a:hover{text-decoration:underline}/*!
  *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.5.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px / 1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.mfp-counter{font-family:Georgia,Times,serif}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#000;opacity:0.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:1;filter:alpha(opacity=100);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Georgia,Times,serif}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#fff}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:1;filter:alpha(opacity=100);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100)}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:0.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #fff}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #fff}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-figure figcaption{margin-top:0;margin-bottom:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}@media print{.masthead,.toc,.page__share,.page__related,.ads,.page__footer{display:none}}
diff --git a/images/unsplash-image-11.jpg b/images/unsplash-image-11.jpg
new file mode 100644
index 00000000..4cfb7796
Binary files /dev/null and b/images/unsplash-image-11.jpg differ
diff --git a/index.html b/index.html
index b1e6f5d2..73f7aa86 100644
--- a/index.html
+++ b/index.html
@@ -1,9 +1,8 @@
 ---
 layout: archive
-excerpt: "A minimal Jekyll theme for your blog by designer Michael Rose."
+excerpt: "A minimalistic Jekyll theme by Michael Rose."
 header:
-  image: unsplash-image-7.jpg
-  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
+  overlay_color: "#666"
 author_profile: false
 ---