@charset "UTF-8";
/*
Theme Name: AlastairC 2013
Theme URI: http://example.com
Author: Alastair Campbell
Author URI: http://alastairc.ac/
Description: Taking the 2013 theme for WordPress and stripping it down to a skeleton.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: skeleton
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* Colour scheme */
/* white        */
/* light grey   */
/* dark grey    */
/* dark grey    */
/* black        */
/* red          */
/* pink         */
/* Layout measures based on http://static.elliotjaystocks.com/responsive-grid/html-demo/ */
/* 1/6 columns */
/* 1/3 columns */
/* 1/2 columns */
/** 
 * SASS Mixins 
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */
/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

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

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

[hidden] {
  display: none; }

html {
  overflow-y: scroll; }

html,
button,
input,
select,
textarea {
  font-family: Verdana, Helvetica, sans-serif; }

body {
  line-height: 1.5;
  margin: 0;
  font-size: 16px;
  min-width: 320px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "jaf-facitweb", sans-serif;
  font-weight: 300; }

h1 {
  font-size: 1.8rem;
  margin: 0.5rem 0 0.5rem;
  font-weight: 600;
  color: #663344; }

h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0.2rem;
  clear: left; }

h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0; }

h4 {
  font-size: 1.2rem;
  margin: 1.3rem 0 0;
  font-weight: 600; }

h5 {
  font-size: 1.1rem;
  margin: 1.2rem 0 0; }

h6 {
  font-size: 1rem;
  margin: 1rem 0 0; }

address {
  font-style: italic;
  margin: 0 0 24px; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: 600; }

dfn {
  font-style: italic; }

p {
  margin: 0 0 6px; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 14px;
  hyphens: none; }

pre {
  font-family: monospace;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

figure {
  margin: 0;
  text-align: center;
  border: 1px #999 solid;
  border-width: 0 0 0 2px;
  padding: 6px;
  margin: 0 0 1em 0; }

figcaption {
  font-size: 90%; }

blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none; }

blockquote {
  background: #656267;
  color: #fff;
  position: relative;
  margin: 0 1.5rem 2.3rem;
  padding: 0.7rem;
  border-radius: 10px; }

blockquote p:last-child,
blockquote p:last-of-type {
  margin-bottom: 0; }

.linked {
  cursor: pointer; }

blockquote footer {
  margin: 6px 0 0 0;
  border-top: 1px white dashed;
  text-align: right; }

blockquote footer a {
  color: white;
  text-decoration: none; }

blockquote:hover footer a {
  text-decoration: underline; }

blockquote blockquote {
  margin-right: 0; }

blockquote cite,
blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase; }

blockquote em,
blockquote i {
  font-style: normal;
  font-weight: 300; }

blockquote strong,
blockquote b {
  font-weight: 600; }

small {
  font-size: smaller; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

dl {
  margin: 0 20px; }

dt {
  font-weight: 600; }

dd {
  margin: 0 0 20px; }

ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px; }

ul {
  list-style-type: square; }

nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

li > ul,
li > ol {
  margin: 0; }

li > p {
  margin-bottom: 0.5rem; }

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

svg:not(:root) {
  overflow: hidden; }

form {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

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

button,
input {
  line-height: normal; }

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

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  padding-right: 2px;
  /* Don't cut off the webkit search cancel button */ }

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

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

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

table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%; }

caption,
th,
td {
  font-weight: normal;
  text-align: left; }

caption {
  font-size: 16px;
  margin: 20px 0; }

th {
  font-weight: bold;
  text-transform: uppercase; }

td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0; }

del {
  color: #333; }

ins {
  background: #fff9c0;
  text-decoration: none; }

hr {
  background: url(images/dotted-line.png) repeat center top;
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px; }

/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */
.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.format-audio .entry-content:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.bypostauthor > .comment-body .fn:before,
.error404 .page-title:before {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font: normal 16px/1 Genericons;
  vertical-align: text-bottom; }

/* Clearing floats */
.clear:after,
.site-header:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
  clear: both; }

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

/* Assistive text */
.screen-reader-text, .site-description {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute; }

.skip-link:focus {
  background-color: #fff;
  color: #663344;
  margin: 0;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  padding: 5px 13px;
  position: absolute;
  left: 5%;
  top: 3px;
  width: 80%;
  text-decoration: none;
  z-index: 100000;
  /* Above WP toolbar */ }

.skip-link span {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.7rem;
  -webkit-font-smoothing: antialiased;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  font-family: 'Genericons';
  text-decoration: inherit;
  font-weight: inherit;
  font-style: inherit;
  margin: 0 3px 0 0;
  vertical-align: middle; }

/* Form fields, general styles first. */
button,
input,
textarea {
  border: 2px solid #d4d0ba;
  font-family: inherit;
  padding: 5px; }

input,
textarea {
  color: #141412; }

input:focus,
textarea:focus {
  border: 2px solid #c3c0ab;
  outline: 0; }

/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background: #eee;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #eee 0%, #ccc 100%);
  /* Chrome 10+, Safari 5.1+ */
  background: linear-gradient(to bottom, #eee 0%, #ccc 100%);
  /* W3C */
  border: none;
  border-bottom: 3px solid #aaa;
  border-radius: 2px;
  color: #000;
  display: inline-block;
  padding: 5px 10px 4px;
  text-decoration: none; }

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
  background: #eee;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #fff 0%, #ddd 100%);
  /* Chrome 10+, Safari 5.1+ */
  background: linear-gradient(to bottom, #fff 0%, #ddd 100%);
  /* W3C */
  outline: none; }

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
  background: #eee;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #fff 0%, #ddd 100%);
  /* Chrome 10+, Safari 5.1+ */
  background: linear-gradient(to bottom, #fff 0%, #ddd 100%);
  /* W3C */
  border: none;
  border-top: 3px solid #666;
  padding: 10px 24px 11px; }

.post-password-required input[type="submit"] {
  padding: 7px 24px 4px;
  vertical-align: bottom; }

.post-password-required input[type="submit"]:active {
  padding: 5px 24px 6px; }

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: #777; }

:-moz-placeholder {
  color: #777; }

::-moz-placeholder {
  color: #777; }

:-ms-input-placeholder {
  color: #777; }

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
  max-width: 100%; }

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto; }

img.size-full,
img.size-large,
img.wp-post-image {
  height: auto;
  max-width: 100%; }

/* Make sure videos and embeds fit their containers. */
embed,
iframe,
object,
video {
  max-width: 100%; }

/* Override the Twitter embed fixed width. */
.entry-content .twitter-tweet-rendered {
  max-width: 100% !important; }

/* Images */
.alignleft {
  float: left; }

.alignright {
  float: right; }

img.alignleft,
img.alignright {
  border: 5px #663344 solid;
  border-radius: 5px; }

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

img.alignleft {
  margin: 5px 20px 5px 0; }

img.alignleft.size-medium {
  max-width: 50%; }

.wp-caption.alignleft {
  margin: 5px 10px 5px 0; }

img.alignright {
  margin: 5px 0 5px 20px; }

img.alignright.size-medium {
  max-width: 50%; }

.wp-caption.alignright {
  margin: 5px 0 5px 10px; }

img.aligncenter {
  margin: 5px auto; }

img.alignnone {
  margin: 5px 0; }

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
  color: #222;
  font-size: 18px;
  font-style: italic;
  font-weight: 300; }

img.wp-smiley,
.rsswidget img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
  list-style-position: inside; }

.centered {
  text-align: center; }

/**
 * 3.0 Basic Structure and layout
 * ----------------------------------------------------------------------------
 */
body {
  background: #656267 url(images/003-bee-on-lavender-sm.jpg) no-repeat center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-size: 100%;
  border: 3px #656267 solid;
  border-width: 0 5px; }

.content-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column; }

.site {
  position: relative; }

main {
  background-color: #fff;
  padding: 10px 2%; }

.sidebar {
  background-color: #fff;
  padding: 10px 2%;
  border-top: 3px #656267 solid; }

/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */
/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */
.site-header {
  margin: 0 auto;
  height: 70px;
  /* IE 10/11 doesn't cope with max-height */
  max-width: 1200px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  align-content: center;
  align-content: center; }

/* visible children of .site-header */
.site-title, .navbar, .searchbar {
  width: 110px;
  padding: 0;
  margin: auto 0; }

.site-header .site-title:hover {
  text-decoration: underline; }

.site-title a {
  font-family: "jaf-facitweb", sans-serif;
  display: block; }

/* TO DO: Don't hide menu when no JavaScript: http://gomakethings.com/accessible-javascript/ */
.site-title a,
.menu-toggle button,
.search-toggle button {
  margin: 0;
  width: 100%;
  max-width: 140px;
  padding: 7px;
  font-size: 0.9rem;
  line-height: 1;
  color: #fff;
  background: #663344;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  vertical-align: top;
  border: 7px rgba(150, 150, 150, 0.5) solid;
  -webkit-background-clip: padding-box;
  /* enables the transparency on the border */
  background-clip: padding-box; }
  .site-title a:hover, .site-title a:focus,
  .menu-toggle button:hover,
  .menu-toggle button:focus,
  .search-toggle button:hover,
  .search-toggle button:focus {
    background-color: #656267;
    color: #fff;
    border-color: white; }

.site-description {
  display: none; }

/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */
.navbar {
  text-align: center; }

.main-navigation {
  display: none;
  position: absolute;
  background-color: rgba(100, 100, 100, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  margin: 5px 0 0 -65px;
  z-index: 100;
  width: 250px; }

.toggled-on .main-navigation {
  display: block; }

.toggled-on .menu-toggle button {
  background-color: #656267;
  color: #fff; }

.navbar h2 {
  margin: 0;
  padding: 0;
  line-height: 1; }

.navbar h2 span:before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.7rem;
  -webkit-font-smoothing: antialiased;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  font-family: 'Genericons';
  text-decoration: inherit;
  font-weight: inherit;
  font-style: inherit;
  margin: 0 3px 0 0;
  font-size: 0.9rem; }

ul.nav-menu {
  margin: 0;
  padding: 0 0 5px 0; }

ul.nav-menu:after {
  clear: both;
  content: "";
  display: table; }

.nav-menu li {
  float: left;
  width: 46%;
  margin: 5px 0 0 2.5%;
  padding: 0;
  text-align: center; }

.nav-menu li a {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px; }
  .nav-menu li a:hover, .nav-menu li a:focus {
    background-color: #663344; }

/**
 * 4.3 Search
 * ----------------------------------------------------------------------------
 */
.search-form {
  margin: 10px 0 0;
  display: none;
  background-color: rgba(101, 98, 103, 0.5);
  padding: 5px; }

.searchbar {
  text-align: right; }

h3.search-toggle {
  font-size: 1rem;
  margin: 0;
  padding: 0; }

.search-toggle span:before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.7rem;
  -webkit-font-smoothing: antialiased;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  font-family: 'Genericons';
  text-decoration: inherit;
  font-weight: inherit;
  font-style: inherit;
  margin: 0 3px 0 0; }

.toggled-on .search-form {
  display: block;
  position: absolute;
  right: 2%; }

/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */
.home main {
  padding: 0; }

.box {
  padding: 10px 2%;
  border-top: 3px #656267 solid; }

main li {
  margin: 0 0 1rem 0; }

main .post:first-of-type h2 {
  margin-top: 0; }

.post {
  border-bottom: 1px white solid;
  clear: left; }

/* Link Highlights */
a.highlightlink {
  white-space: nowrap;
  /* is this IE only? */
  vertical-align: baseline; }

#content .highlightlink img {
  border: 0;
  height: 0.8em;
  vertical-align: baseline;
  margin: 0 0 0 5px; }

.hidden {
  display: none; }

h2[id] a, h3[id] a, h4[id] a {
  font-size: 1rem;
  text-decoration: none; }

h2 a:hover, h3 a:hover, h4 a:hover {
  text-decoration: none; }

.box.flickrfeed ul {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0; }

.box.flickrfeed img {
  max-width: 100%; }

/**
 * 5.1 Entry Header
 * ----------------------------------------------------------------------------
 */
.entry-title {
  color: #663344; }

/**
 * 5.2 Entry Meta
 * ----------------------------------------------------------------------------
 */
.entry-meta {
  margin: 0 0 20px; }

.featured-post:before {
  content: "\f308";
  margin-right: 2px; }

.entry-meta .date a:before {
  content: "\f303"; }

.comments-link a:before {
  content: "\f300";
  margin-right: 2px; }

.entry-meta .author a:before {
  content: "\f304"; }

.categories-links a:first-child:before {
  content: "\f301"; }

.tags-links a:first-child:before {
  content: "\f302"; }

.edit-link a:before {
  content: "\f411"; }

/**
 * 5.3 Entry Content
 * ----------------------------------------------------------------------------
 */
.entry-content {
  /*-webkit-hyphens: auto;
  -moz-hyphens:    auto;
  -ms-hyphens:     auto;
  hyphens:         auto;
  word-wrap: break-word;*/ }

/* Page links */
/* Mediaelements */
/**
 * 5.4 Galleries
 * ----------------------------------------------------------------------------
 */
/**
 * 5.5 Post Formats
 * ----------------------------------------------------------------------------
 */
/* Aside */
.format-aside cite:before {
  content: "\2014"; }

/* Audio */
/* Chat */
.format-chat .entry-meta .date a:before {
  content: "\f108";
  margin-right: 2px; }

/* Gallery */
/* Image */
/* Link */
/* Quote */
/* Status */
/* Ensures the dots in the dot background are in lockstep. */
.format-status .entry-meta .date a:before {
  content: "\f105"; }

/* Video */
/**
 * 5.6 Attachments
 * ----------------------------------------------------------------------------
 */
.attachment-meta:before {
  content: "\f307"; }

.full-size-link a:before {
  content: "\f402"; }

.full-size-link:before {
  content: none; }

/**
 * 5.7 Post/Paging Navigation
 * ----------------------------------------------------------------------------
 */
/**
 * 5.8 Author Bio
 * ----------------------------------------------------------------------------
 */
/**
 * 5.9 Archives
 * ----------------------------------------------------------------------------
 */
/**
 * 5.10 Search Results/No posts
 * ----------------------------------------------------------------------------
 */
/**
 * 5.11 404
 * ----------------------------------------------------------------------------
 */
.error404 .page-title:before {
  color: #e8e5ce;
  content: "\f423";
  font-size: 964px;
  line-height: 0.6;
  overflow: hidden;
  position: absolute;
  left: 7px;
  top: 28px; }

/**
 * 5.12 Comments
 * ----------------------------------------------------------------------------
 */
.comments-area {
  background: url(images/dotted-line.png) repeat-x center top;
  margin-top: 1rem;
  padding-top: 1px; }

h2.comments-title {
  font-size: 1.5rem;
  padding-top: 1rem;
  margin-top: 0; }

.comment-list {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.comment-list li {
  margin: 0 3% 1rem; }

.comment-metadata {
  font-size: 0.9rem; }

.comment-author img {
  vertical-align: top;
  width: 50px;
  height: 50px; }

.comment-content {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word; }

.bypostauthor > .comment-body .fn:before {
  content: "\f408";
  vertical-align: text-top; }

.comment-awaiting-moderation:before {
  content: "\f414";
  margin-right: 5px;
  position: relative;
  top: -2px; }

.comment-reply-link:before,
.comment-reply-login:before {
  content: "\f412";
  margin-right: 3px; }

/* Comment form */
.comment-reply-title small a:before {
  content: "\f406";
  vertical-align: top; }

/**
 * 6.0 Sidebar
 * ----------------------------------------------------------------------------
 */
.sidebar {
  font-size: 15px; }

.sidebar h2 {
  font-size: 1.5rem; }

.sidebar li ul,
.sidebar li ol {
  padding-left: 1rem; }

/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */
.widget {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word; }

.widget ul,
.widget ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.widget li {
  padding: 5px 0; }

.widget .children li:last-child {
  padding-bottom: 0; }

/* Search widget */
/* RSS Widget */
/* Calendar Widget */
/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */
.site-footer p {
  background-color: #fff;
  padding: 10px 2%;
  border-top: 3px #656267 solid; }

/**
 * 8.0 Media Queries
 * ----------------------------------------------------------------------------
 */
@media screen and (min-width: 450px) and (min-height: 500px) {
  .site-header {
    height: 90px; }

  .site-title a, .menu-toggle button, .search-toggle button {
    font-size: 1rem; } }
@media screen and (min-width: 550px) {
  .site-header {
    padding: 0 5%; }

  .comment-meta {
    margin-top: 1rem; }

  .comment-author {
    float: left; }

  .comment-metadata {
    float: right; }

  .comment-content {
    clear: both; }

  .comment-author img {
    width: auto;
    height: auto; } }
@media screen and (min-width: 600px) {
  body {
    border-width: 0;
    padding: 0 5%; }

  .site {
    border-width: 0; }

  .site-header {
    padding: 0; }

  .site-title,
  .navbar,
  .searchbar {
    width: 150px; }

  .site-title a,
  .menu-toggle button,
  .search-toggle button {
    font-size: 1.1rem; }

  .main-navigation {
    margin: 6px 0 0 -45px; }

  .site-main,
  .sidebar-wrapper,
  .site-footer {
    margin: 1rem 0 0;
    position: relative;
    padding: 1px 0; }

  .site-main:before,
  .sidebar-wrapper:before,
  .site-footer:before {
    content: "";
    background-color: rgba(150, 150, 150, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    outline: 1px rgba(100, 100, 100, 0.8) solid;
    border: 1px rgba(50, 50, 50, 0.8) solid;
    z-index: -1; }

  /* Homepage variations */
  .home .site-main {
    width: auto;
    position: static;
    margin-top: 0; }

  .home .site-main:before {
    background-color: transparent;
    outline: none;
    border: none; }

  .home main {
    background: none;
    margin: 10px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }

  .home .box {
    margin: 1rem 0;
    position: relative;
    width: 47%;
    padding: 10px;
    border-top: none; }

  .home .box section {
    height: 500px;
    overflow-y: auto; }

  .home .intro {
    width: 100%;
    height: auto; }

  .home .intro section {
    height: auto; }

  .home .intro p {
    margin-bottom: 0; }

  .home .box:before {
    content: "";
    background-color: rgba(150, 150, 150, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    outline: 1px rgba(100, 100, 100, 0.8) solid;
    border: 1px rgba(50, 50, 50, 0.8) solid;
    z-index: -1; }

  .home .box section {
    background-color: #fff;
    padding: 10px 2%;
    position: relative;
    outline: 1px green solid; }

  .box h2,
  .box h3 {
    margin-top: 0;
    margin-left: 20px; }

  .box ul {
    padding: 0 0 0 20px;
    font-size: 1rem; }

  .box li {
    margin: 0 0 0.5rem 0; }

  .box ul a {
    text-decoration: none; }

  .box ul a:hover {
    text-decoration: underline; }

  .box .footerlink {
    position: absolute;
    bottom: 0px;
    left: 0;
    line-height: 1;
    margin: 10px 0 10px 10px;
    padding: 20px 0 15px 10px;
    background: rgba(255, 255, 255, 0.5);
    background-image: linear-gradient(rgba(255, 255, 255, 0), white 45%);
    display: block;
    width: 92%; }

  .box .footerlink a,
  .box .footerlink a:visited {
    color: #656267; }

  /* Footer area */
  .site-footer {
    width: auto;
    text-align: center; }

  main, .site-footer p {
    margin: 10px;
    padding-top: 1rem; }

  .sidebar {
    margin: 10px;
    border-top: none;
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    -webkit-column-count: 2;
    -webkit-column-gap: 10px; }

  .site-footer p {
    background-color: transparent;
    border-top: 0;
    text-align: center;
    margin: 0 auto; }

  .site-footer a {
    color: #fff;
    text-decoration: none; }

  .site-footer a:hover,
  .site-footer a:focus {
    text-decoration: underline; }

  .comment-meta {
    margin-top: 2rem; }

  .comment-author {
    font-size: 1.1rem; }

  .comment-author img {
    position: relative;
    left: -20px;
    top: -0.5rem;
    border: 5px #DDBBBB solid; } }
@media screen and (min-width: 700px) {
  /* Size where the main navigation appears by default */
  body {
    background-attachment: fixed; }

  .site-header {
    border-width: 0;
    height: 140px; }

  .site-main {
    max-width: 750px;
    margin: 1rem auto 0; }

  .home .site-main {
    max-width: 100%; }

  .navbar {
    width: auto;
    -ms-flex: 1 0 400px;
    -webkit-flex-grow: 1;
    flex-grow: 1; }

  .main-navigation {
    display: block;
    position: static;
    width: auto;
    margin: 0 auto;
    max-width: 600px; }

  .navbar h2 {
    display: none; }

  .nav-menu li {
    width: 23%;
    margin-left: 1.75%; }

  .nav-menu li a {
    font-size: 0.9rem; }

  .nav-menu li a {
    font-size: 1rem; }

  .toggled-on .search-form {
    top: 90px;
    right: 15px; }

  h1 {
    font-size: 2.5rem; }

  h2 {
    font-size: 2rem;
    margin: 1rem 0 0.5rem 0; }

  h3 {
    font-size: 1.5rem; }

  h4 {
    font-size: 1.3rem; }

  h5 {
    font-size: 1.2rem; }

  h6 {
    font-size: 1rem; }

  p {
    margin: 0 0 24px 0; }

  .site-title a, .search-toggle button {
    font-size: 1.1rem; }

  .search-toggle button:before {
    font-size: 1.1rem;
    height: 1rem; }

  .archive h2 {
    font-size: 1.5rem; }

  .site-footer {
    margin-top: 2rem; } }
@media screen and (min-width: 800px) {
  body {
    background-image: #656267 url(images/003-bee-on-lavender.jpg);
    background-size: 100%;
    background-attachment: fixed; }

  .site-header {
    height: 160px; }

  .site-title a, .search-toggle button {
    font-size: 1.3rem;
    width: 140px; }

  .toggled-on .search-form {
    top: 100px; }

  main {
    padding-top: 1.5rem; }

  .home .site-main {
    max-width: 100%; }

  .home main {
    padding-top: 0; }

  .home .box {
    width: 45%; }

  .home .intro {
    width: 100%; }

  main h2.entry-type:first-of-type {
    margin-top: 1rem; } }
@media screen and (min-width: 1040px) {
  .home .box {
    width: 30%; }

  .home .intro {
    width: 100%; } }
@media screen and (min-width: 1100px) {
  /* Size where the search box appears by default */
  body {
    line-height: 1.5;
    margin: 0 auto;
    font-size: 18px;
    max-width: 1200px; }

  /* 2 col navigation for blog areas */
  .single .content-row,
  .archive .content-row,
  .page .content-row {
    display: -ms-flexbox;
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }

  .site-title {
    width: 150px;
    margin-right: 30px; }

  .site-title a {
    font-size: 1.5rem;
    width: auto;
    padding: 12px 10px; }

  .searchbar {
    width: 200px; }

  h3.search-toggle {
    display: none; }

  .search-form {
    display: inline-block;
    width: 200px;
    font-size: 1rem;
    margin: 0; }

  .search-form input[type="text"] {
    margin: 0; }

  .search-form input[type="submit"] {
    display: none; }

  .single .site-main,
  .archive .site-main {
    width: 65%;
    max-width: 700px;
    margin: 1rem 0 0; }

  main {
    padding-top: 2rem; }

  .sidebar-wrapper {
    width: 310px;
    -webkit-align-self: flex-start;
    align-self: flex-start; }

  .sidebar {
    padding: 0 1rem 1rem;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1; } }

/*# sourceMappingURL=style.css.map */
