/*
 * Theme Name:   Watson Shoestring
 * Template: watson
 * Theme URI: http://thethemefoundry.com/wordpress/watson/
 * Author: The Theme Foundry
 * Author URI: http://thethemefoundry.com/
 * Description: A polished magazine theme with a touch of class. Perfect for photojournalists, bloggers and authors who prefer long-format content.
 * Version: 1.1.7
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* _notes.scss
 * Theme notes
 * ------------------------------------------------------------------

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

$rembase:              17;
$line-height:          26;

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

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

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

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

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

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

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

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

------------------------------------------------------------------ */
/* _reset.scss
 * Zero it out
 * ------------------------------------------------------------------ */
/* line 8, ../watson/assets/sass/_reset.scss */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 15, ../watson/assets/sass/_reset.scss */
body {
  line-height: 1;
}

/* line 18, ../watson/assets/sass/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 21, ../watson/assets/sass/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 24, ../watson/assets/sass/_reset.scss */
blockquote:before, blockquote:after {
  content: '';
  content: none;
}

/* line 28, ../watson/assets/sass/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 40, ../watson/assets/sass/_reset.scss */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 46, ../watson/assets/sass/_reset.scss */
a:focus {
  outline: none;
}

/* line 53, ../watson/assets/sass/_reset.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/* line 69, ../watson/assets/sass/_reset.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* line 80, ../watson/assets/sass/_reset.scss */
audio:not([controls]) {
  display: none;
}

/* line 87, ../watson/assets/sass/_reset.scss */
sub,
sup {
  font-size: 68.75%;
  line-height: 0;
  position: relative;
  letter-spacing: .1em;
  vertical-align: baseline;
}

/* line 95, ../watson/assets/sass/_reset.scss */
sup {
  top: -0.5em;
}

/* line 98, ../watson/assets/sass/_reset.scss */
sub {
  bottom: -0.25em;
}

/* line 105, ../watson/assets/sass/_reset.scss */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* line 115, ../watson/assets/sass/_reset.scss */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/* line 124, ../watson/assets/sass/_reset.scss */
button,
input {
  line-height: normal;
  *overflow: visible;
}

/* line 129, ../watson/assets/sass/_reset.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 134, ../watson/assets/sass/_reset.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

/* line 141, ../watson/assets/sass/_reset.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 147, ../watson/assets/sass/_reset.scss */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 150, ../watson/assets/sass/_reset.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* line 77, assets/sass/_preboot.scss */
.clear {
  zoom: 1;
}
/* line 69, assets/sass/_preboot.scss */
.clear:before, .clear:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.clear:after {
  clear: both;
}

/* _scaffolding.scss
 * Basic structure
 * ------------------------------------------------------------------ */
/* line 5, ../watson/assets/sass/_scaffolding.scss */
html {
  font-size: 100%;
  -webkit-transition: font-size 0.1s;
  -moz-transition: font-size 0.1s;
  transition: font-size 0.1s;
}
@media screen and (min-width: 900px) {
  /* line 5, ../watson/assets/sass/_scaffolding.scss */
  html {
    font-size: 106.25%;
  }
}
@media screen and (max-height: 700px) {
  /* line 5, ../watson/assets/sass/_scaffolding.scss */
  html {
    font-size: 100%;
  }
}

/*---------------------------------------------------------
	Body
-------------------------------------------------------- */
/* line 20, ../watson/assets/sass/_scaffolding.scss */
body {
  background-color: #fdfdfd;
  text-rendering: optimizeLegibility;
  font-family: "PT Serif", Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.55;
  color: #1c1c1c;
}

/*---------------------------------------------------------
	Structure
-------------------------------------------------------- */
/* line 32, ../watson/assets/sass/_scaffolding.scss */
div[role="main"] {
  zoom: 1;
}
/* line 69, assets/sass/_preboot.scss */
div[role="main"]:before, div[role="main"]:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
div[role="main"]:after {
  clear: both;
}

/* line 35, ../watson/assets/sass/_scaffolding.scss */
#container {
  max-width: 900px;
  margin: 0 auto;
  background: #fdfdfd;
  zoom: 1;
  padding: 28px;
  padding: 1.64706rem;
  padding-bottom: 48px;
  padding-bottom: 2.82353rem;
}
@media screen and (min-width: 600px) {
  /* line 35, ../watson/assets/sass/_scaffolding.scss */
  #container {
    padding: 28px 144px;
    padding:  1.64706rem 8.47059rem;
  }
}
@media screen and (min-width: 900px) {
  /* line 35, ../watson/assets/sass/_scaffolding.scss */
  #container {
    padding: 56px;
    padding: 3.29412rem;
    padding-bottom: 48px;
    padding-bottom: 2.82353rem;
  }
}
/* line 69, assets/sass/_preboot.scss */
#container:before, #container:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
#container:after {
  clear: both;
}

/* line 50, ../watson/assets/sass/_scaffolding.scss */
.wrapper,
.page-wrapper {
  max-width: 724px;
  margin: 0 auto;
}

@media screen and (min-width: 900px) {
  /* line 55, ../watson/assets/sass/_scaffolding.scss */
  .content {
    width: 61.33333%;
    float: left;
    border-right: 1px solid #e3e3e3;
  }
}

/* line 62, ../watson/assets/sass/_scaffolding.scss */
.entry {
  margin: 0 auto;
}

/* line 65, ../watson/assets/sass/_scaffolding.scss */
.entry p,
.entry ul,
.entry ol,
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6,
.entry > div,
.entry pre,
.entry table,
.entry dl,
.entry form,
.entry address,
.entry details,
.entry footer.post-footer,
#comments {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  /* line 65, ../watson/assets/sass/_scaffolding.scss */
  .entry p,
  .entry ul,
  .entry ol,
  .entry h1,
  .entry h2,
  .entry h3,
  .entry h4,
  .entry h5,
  .entry h6,
  .entry > div,
  .entry pre,
  .entry table,
  .entry dl,
  .entry form,
  .entry address,
  .entry details,
  .entry footer.post-footer,
  #comments {
    max-width: 492px;
  }
}

/*---------------------------------------------------------
	Selection
-------------------------------------------------------- */
/* line 94, ../watson/assets/sass/_scaffolding.scss */
::-moz-selection {
  background: #fefeca;
  text-shadow: none;
}

/* line 98, ../watson/assets/sass/_scaffolding.scss */
::-webkit-selection {
  background: #fefeca;
  text-shadow: none;
}

/* line 102, ../watson/assets/sass/_scaffolding.scss */
::selection {
  background: #fefeca;
  text-shadow: none;
}

/* line 106, ../watson/assets/sass/_scaffolding.scss */
img::selection {
  background: transparent;
}

/* line 109, ../watson/assets/sass/_scaffolding.scss */
img::-moz-selection {
  background: transparent;
}

/*---------------------------------------------------------
	Links
-------------------------------------------------------- */
/* line 117, ../watson/assets/sass/_scaffolding.scss */
a {
  color: #d00f1a;
  text-decoration: none;
}
/* line 120, ../watson/assets/sass/_scaffolding.scss */
a:hover {
  -webkit-transition: color 0.06s ease-in-out;
  -moz-transition: color 0.06s ease-in-out;
  transition: color 0.06s ease-in-out;
}

/*---------------------------------------------------------
	Base
-------------------------------------------------------- */
/* line 129, ../watson/assets/sass/_scaffolding.scss */
ul, ol, dl, p, details, address, .vcard, figure, pre, fieldset, table, dt, dd, hr {
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}

/* line 132, ../watson/assets/sass/_scaffolding.scss */
p, ul, ol, dl, blockquote {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/* line 137, ../watson/assets/sass/_scaffolding.scss */
pre,
code,
input,
textarea {
  font: inherit;
}

/*---------------------------------------------------------
	Headings
-------------------------------------------------------- */
/* line 148, ../watson/assets/sass/_scaffolding.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  word-wrap: break-word;
  clear: both;
  color: #101010;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
  margin-top: 36px;
  margin-top: 2.11765rem;
}

/* line 156, ../watson/assets/sass/_scaffolding.scss */
h1 {
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-top: 0;
  font-size: 30px;
  font-size: 1.76471rem;
}
@media screen and (min-width: 600px) {
  /* line 156, ../watson/assets/sass/_scaffolding.scss */
  h1 {
    line-height: 1.2;
    font-size: 36px;
    font-size: 2.11765rem;
  }
}

/* line 170, ../watson/assets/sass/_scaffolding.scss */
h2 {
  font-style: italic;
  letter-spacing: .01em;
  font-size: 20px;
  font-size: 1.17647rem;
}

/* line 175, ../watson/assets/sass/_scaffolding.scss */
h3 {
  letter-spacing: .05em;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.05882rem;
}

/* line 180, ../watson/assets/sass/_scaffolding.scss */
h4 {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 0.94118rem;
}

/* line 185, ../watson/assets/sass/_scaffolding.scss */
h5 {
  color: #d00f1a;
  font-size: 16px;
  font-size: 0.94118rem;
}

/* line 189, ../watson/assets/sass/_scaffolding.scss */
h6 {
  font-style: italic;
  color: #474747;
  font-size: 16px;
  font-size: 0.94118rem;
}

/* line 194, ../watson/assets/sass/_scaffolding.scss */
.subheading {
  margin-top: 0;
}

/*---------------------------------------------------------
	Elements
-------------------------------------------------------- */
/* line 202, ../watson/assets/sass/_scaffolding.scss */
blockquote {
  letter-spacing: .05em;
  font-weight: bold;
  margin: 12px 0;
  line-height: 1.6;
  letter-spacing: .01em;
  clear: both;
  color: #101010;
  zoom: 1;
  font-size: 18px;
  font-size: 1.05882rem;
}
/* line 69, assets/sass/_preboot.scss */
blockquote:before, blockquote:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
blockquote:after {
  clear: both;
}
/* line 212, ../watson/assets/sass/_scaffolding.scss */
blockquote p {
  line-height: 1.52;
}
@media screen and (min-width: 900px) {
  /* line 212, ../watson/assets/sass/_scaffolding.scss */
  blockquote p {
    line-height: 1.56;
  }
}
/* line 218, ../watson/assets/sass/_scaffolding.scss */
blockquote cite {
  font-weight: normal;
  font-style: normal;
  display: block;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 58, assets/sass/_preboot.scss */
blockquote cite a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
blockquote cite a:hover {
  color: #474747;
}

/* line 225, ../watson/assets/sass/_scaffolding.scss */
.entry blockquote {
  max-width: 608px;
  float: left;
}
/* line 228, ../watson/assets/sass/_scaffolding.scss */
.entry blockquote p {
  max-width: 608px;
}

/* line 233, ../watson/assets/sass/_scaffolding.scss */
q:before {
  content: "\201C";
}
/* line 236, ../watson/assets/sass/_scaffolding.scss */
q:after {
  content: "\201D";
}

/* line 240, ../watson/assets/sass/_scaffolding.scss */
tt,
kbd,
pre,
code,
samp {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace;
  font-weight: normal;
  word-spacing: -.2em;
  color: #474747;
  font-size: 14px;
  font-size: 0.82353rem;
  padding: 2px 3px;
  padding:  0.11765rem 0.17647rem;
}

/* line 254, ../watson/assets/sass/_scaffolding.scss */
mark {
  background: #ffc;
  background: rgba(255, 255, 204, 0.1);
  color: #474747;
  text-shadow: none;
  font-style: italic;
  padding: 2px 3px;
  padding:  0.11765rem 0.17647rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* line 263, ../watson/assets/sass/_scaffolding.scss */
code {
  background: #f2f2f2;
}

/* line 266, ../watson/assets/sass/_scaffolding.scss */
abbr,
acronym,
dfn {
  cursor: help;
  text-transform: lowercase;
  font-variant: small-caps;
  line-height: 1;
  font-size: 1.35em;
}

/* line 275, ../watson/assets/sass/_scaffolding.scss */
pre {
  display: block;
  word-wrap: break-word;
  overflow: auto;
  white-space: pre-wrap;
  background: #f2f2f2;
  padding: 24px;
  padding: 1.41176rem;
}

/* line 283, ../watson/assets/sass/_scaffolding.scss */
details {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 58, assets/sass/_preboot.scss */
details a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
details a:hover {
  color: #474747;
}
/* line 285, ../watson/assets/sass/_scaffolding.scss */
details summary {
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 288, ../watson/assets/sass/_scaffolding.scss */
details :focus {
  outline: none;
}

/* line 292, ../watson/assets/sass/_scaffolding.scss */
ins {
  color: #d43c33;
  text-decoration: none;
}

/* line 296, ../watson/assets/sass/_scaffolding.scss */
small {
  font-size: .75em;
}

/* line 299, ../watson/assets/sass/_scaffolding.scss */
big {
  font-size: 1.25em;
}

/* line 302, ../watson/assets/sass/_scaffolding.scss */
hr {
  background: url(http://www.shoestringmag.com/wp-content/themes/watson-shoestringmag/images/hr.svg) center no-repeat;
  border: none;
  height: 5px;
  clear: both;
  margin: 36px 0;
}

/*---------------------------------------------------------
	Extras
-------------------------------------------------------- */
/* line 314, ../watson/assets/sass/_scaffolding.scss */
.excerpt {
  line-height: 1.52;
  font-size: 20px;
  font-size: 1.17647rem;
}

/* line 318, ../watson/assets/sass/_scaffolding.scss */
.run-in {
  text-transform: lowercase;
  font-variant: small-caps;
  color: #d00f1a;
  margin-right: -.05em;
  letter-spacing: .05em;
  font-size: 1.15em;
}

/* line 326, ../watson/assets/sass/_scaffolding.scss */
.footnote {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 58, assets/sass/_preboot.scss */
.footnote a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.footnote a:hover {
  color: #474747;
}
/* line 328, ../watson/assets/sass/_scaffolding.scss */
.footnote a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 331, ../watson/assets/sass/_scaffolding.scss */
.footnote a:hover {
  color: #474747;
}

@media screen and (min-width: 900px) {
  /* line 336, ../watson/assets/sass/_scaffolding.scss */
  .entry p.sidenote {
    width: 170px;
    float: left;
    text-align: right;
    clear: both;
    margin-left: -88px;
    margin-left: -5.17647rem;
    padding-top: 2px;
    padding-top: 0.11765rem;
    padding-right: 28px;
    padding-right: 1.64706rem;
  }
}

/* line 347, ../watson/assets/sass/_scaffolding.scss */
.end:after {
  content: " \273D";
  color: #d00f1a;
  position: relative;
  bottom: .1em;
  padding-left: 1px;
  padding-left: 0.05882rem;
  font-size: 12px;
  font-size: 0.70588rem;
}

/*---------------------------------------------------------
	Lists
-------------------------------------------------------- */
/* line 362, ../watson/assets/sass/_scaffolding.scss */
.entry ul,
.entry-page ul {
  list-style: square inside;
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  /* line 362, ../watson/assets/sass/_scaffolding.scss */
  .entry ul,
  .entry-page ul {
    list-style: square outside;
  }
}
/* line 369, ../watson/assets/sass/_scaffolding.scss */
.entry ol,
.entry-page ol {
  list-style: decimal inside;
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  /* line 369, ../watson/assets/sass/_scaffolding.scss */
  .entry ol,
  .entry-page ol {
    list-style: decimal outside;
  }
}
/* line 376, ../watson/assets/sass/_scaffolding.scss */
.entry li > ul,
.entry li > ol,
.entry-page li > ul,
.entry-page li > ol {
  margin-left: 1.4em;
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Galleries
-------------------------------------------------------- */
/* line 388, ../watson/assets/sass/_scaffolding.scss */
div.gallery dt.gallery-icon {
  padding: 0 6%;
  margin-top: 3%;
}
/* line 389, ../watson/assets/sass/_scaffolding.scss */
div.gallery dt.gallery-icon a img {
  border: none !important;
  margin-bottom: 0;
}
/* line 396, ../watson/assets/sass/_scaffolding.scss */
div.gallery dd.gallery-caption {
  margin-bottom: 0;
}
/* line 399, ../watson/assets/sass/_scaffolding.scss */
div.gallery dl, div.gallery dt {
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Definition lists
-------------------------------------------------------- */
/* line 409, ../watson/assets/sass/_scaffolding.scss */
dl dt {
  font-weight: bold;
  color: #101010;
  margin-top: 36px;
}
/* line 414, ../watson/assets/sass/_scaffolding.scss */
dl dd {
  color: #474747;
}

/*---------------------------------------------------------
	Tables
-------------------------------------------------------- */
/* line 423, ../watson/assets/sass/_scaffolding.scss */
table {
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  word-break: break-all;
  text-align: right;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
/* line 430, ../watson/assets/sass/_scaffolding.scss */
table th,
table td,
table caption {
  padding: 2%;
}
/* line 435, ../watson/assets/sass/_scaffolding.scss */
table th {
  text-align: right;
  color: #101010;
  font-weight: 600;
}
/* line 440, ../watson/assets/sass/_scaffolding.scss */
table caption {
  color: #474747;
}
/* line 443, ../watson/assets/sass/_scaffolding.scss */
table tfoot {
  font-style: italic;
}
/* line 446, ../watson/assets/sass/_scaffolding.scss */
table td {
  border-top: 1px solid #e3e3e3;
  padding-top: 16px;
  padding-top: 0.94118rem;
  padding-bottom: 24px;
  padding-bottom: 1.41176rem;
}
/* line 451, ../watson/assets/sass/_scaffolding.scss */
table td[valign="top"] {
  vertical-align: top;
}
/* line 454, ../watson/assets/sass/_scaffolding.scss */
table td[valign="bottom"] {
  vertical-align: bottom;
}

/*---------------------------------------------------------
	Alerts
-------------------------------------------------------- */
/* line 463, ../watson/assets/sass/_scaffolding.scss */
.alert {
  padding: 24px;
  background: #f2f2f2;
  border-bottom: 4px solid #dedede;
  clear: both;
  line-height: 1.6;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  color: #1c1c1c;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 58, assets/sass/_preboot.scss */
.alert a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.alert a:hover {
  color: #474747;
}
/* line 472, ../watson/assets/sass/_scaffolding.scss */
.alert p {
  margin-bottom: 0;
}
/* line 475, ../watson/assets/sass/_scaffolding.scss */
.alert a {
  color: #4a4a4a;
  border-bottom: 1px solid #e3e3e3;
}

/* line 480, ../watson/assets/sass/_scaffolding.scss */
.error {
  background: #d94f36;
  border-bottom: 4px solid #c23d25;
}

/* line 484, ../watson/assets/sass/_scaffolding.scss */
.success {
  background: #a6bfba;
  border-bottom: 4px solid #8eaea8;
}

/* line 488, ../watson/assets/sass/_scaffolding.scss */
.note {
  background: #f7f7d8;
  border-bottom: 4px solid #f0f0b6;
}

/*---------------------------------------------------------
	Header
-------------------------------------------------------- */
/* line 497, ../watson/assets/sass/_scaffolding.scss */
header[role="banner"] {
  text-align: center;
  zoom: 1;
}
/* line 69, assets/sass/_preboot.scss */
header[role="banner"]:before, header[role="banner"]:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
header[role="banner"]:after {
  clear: both;
}
/* line 501, ../watson/assets/sass/_scaffolding.scss */
header[role="banner"] .branding h1 {
  margin: 0;
}
/* line 505, ../watson/assets/sass/_scaffolding.scss */
header[role="banner"] img {
  display: inline;
  max-width: 100%;
}
/* line 509, ../watson/assets/sass/_scaffolding.scss */
header[role="banner"] .tagline {
  color: #858585;
  margin: 0;
}
/* line 513, ../watson/assets/sass/_scaffolding.scss */
header[role="banner"] a {
  border-bottom: 0;
}

/*---------------------------------------------------------
	Menu
-------------------------------------------------------- */
/* line 522, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] {
  display: none;
  text-align: center;
  margin: 24px 0 72px;
  margin:  1.41176rem 0 4.23529rem;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  word-spacing: 0;
}
@media screen and (min-width: 900px) {
  /* line 522, ../watson/assets/sass/_scaffolding.scss */
  nav[role="navigation"] {
    display: block;
  }
}
/* line 58, assets/sass/_preboot.scss */
nav[role="navigation"] a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
nav[role="navigation"] a:hover {
  color: #474747;
}
/* line 531, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] ul {
  margin: 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
/* line 538, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li a,
nav[role="navigation"] li {
  display: inline-block;
}
/* line 542, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li {
  border-right: 1px solid #e3e3e3;
  height: 48px;
  line-height: 48px;
  position: relative;
  padding: 0 24px;
  margin-left: -4px;
}
/* line 549, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li a {
  border-bottom: 0;
}
/* line 552, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li:hover ul {
  display: block;
}
/* line 555, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li:last-child {
  margin-right: 0;
  border-right: none;
}
/* line 560, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li.current-menu-item,
nav[role="navigation"] li.current-menu-parent {
  background-color: #f2f2f2;
  border-left: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
}
/* line 567, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li.current-menu-item a,
nav[role="navigation"] li.current-menu-parent a {
  color: #575757;
}
/* line 570, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li.current-menu-item ul li a,
nav[role="navigation"] li.current-menu-parent ul li a {
  color: #858585;
}
/* line 572, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li.current-menu-item ul li a:hover,
nav[role="navigation"] li.current-menu-parent ul li a:hover {
  color: #575757;
}
/* line 577, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  z-index: 3;
  text-align: center;
  border: 1px solid #e3e3e3;
  background: #fdfdfd;
  word-wrap: break-word;
  -webkit-hyphens: none;
  margin-left: -12px;
  margin-left: -0.70588rem;
}
/* line 589, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul li {
  padding: 0 12px;
}
/* line 592, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul li.current-menu-item,
nav[role="navigation"] li ul li.current-menu-parent {
  background-color: #fdfdfd;
}
/* line 595, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul li.current-menu-item a,
nav[role="navigation"] li ul li.current-menu-parent a {
  color: #575757;
}
/* line 600, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul li,
nav[role="navigation"] li ul li a {
  float: none;
  display: block;
  height: auto;
  line-height: 1.55;
  margin-top: 1em;
  margin-bottom: 1em;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #e3e3e3;
  margin-left: 0;
}
/* line 616, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul li:last-child,
nav[role="navigation"] li ul li a:last-child {
  border-bottom: none;
}
/* line 620, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] li ul li a {
  display: block;
}
/* line 623, ../watson/assets/sass/_scaffolding.scss */
nav[role="navigation"] ul.sub-menu li,
nav[role="navigation"] ul.children li {
  display: block;
  width: 102px;
}

/*---------------------------------------------------------
	Drop-down menu
-------------------------------------------------------- */
/* line 634, ../watson/assets/sass/_scaffolding.scss */
.mobile-navigation-container {
  word-wrap: break-word;
  word-break: break-all;
  zoom: 1;
  margin: 24px 0 24px;
  margin:  1.41176rem 0 1.41176rem;
}
@media screen and (min-width: 900px) {
  /* line 634, ../watson/assets/sass/_scaffolding.scss */
  .mobile-navigation-container {
    display: none;
  }
}
/* line 69, assets/sass/_preboot.scss */
.mobile-navigation-container:before, .mobile-navigation-container:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.mobile-navigation-container:after {
  clear: both;
}
/* line 642, ../watson/assets/sass/_scaffolding.scss */
.mobile-navigation-container .dk_container {
  float: none;
}
/* line 644, ../watson/assets/sass/_scaffolding.scss */
.mobile-navigation-container .dk_container .dk_toggle,
.mobile-navigation-container .dk_container .dk_options {
  width: 99.39024% !important;
}
/* line 648, ../watson/assets/sass/_scaffolding.scss */
.mobile-navigation-container .dk_container .dk_options {
  width: 100% !important;
}

/*---------------------------------------------------------
	Footer
-------------------------------------------------------- */
/* line 658, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] {
  clear: both;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  zoom: 1;
  margin-top: 12px;
  margin-top: 0.70588rem;
}
@media screen and (min-width: 900px) {
  /* line 658, ../watson/assets/sass/_scaffolding.scss */
  footer[role="contentinfo"] {
    margin-top: 72px;
    margin-top: 4.23529rem;
  }
}
/* line 58, assets/sass/_preboot.scss */
footer[role="contentinfo"] a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
footer[role="contentinfo"] a:hover {
  color: #474747;
}
/* line 69, assets/sass/_preboot.scss */
footer[role="contentinfo"]:before, footer[role="contentinfo"]:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
footer[role="contentinfo"]:after {
  clear: both;
}
/* line 666, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .footer-container {
  zoom: 1;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
/* line 69, assets/sass/_preboot.scss */
footer[role="contentinfo"] .footer-container:before, footer[role="contentinfo"] .footer-container:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
footer[role="contentinfo"] .footer-container:after {
  clear: both;
}
/* line 674, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .footer-1 {
  border-bottom: 1px solid #e3e3e3;
}
@media screen and (min-width: 900px) {
  /* line 674, ../watson/assets/sass/_scaffolding.scss */
  footer[role="contentinfo"] .footer-1 {
    max-width: 61.11111%;
    float: left;
    border-bottom: none;
    padding-right: 3.11111%;
  }
}
@media screen and (min-width: 900px) {
  /* line 683, ../watson/assets/sass/_scaffolding.scss */
  footer[role="contentinfo"] .footer-2 {
    max-width: 32.44444%;
    float: right;
    border-left: 1px solid #e3e3e3;
    padding-left: 3.11111%;
  }
}
/* line 691, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .footer-1,
footer[role="contentinfo"] .footer-2 {
  padding-top: 24px;
  padding-top: 1.41176rem;
}
/* line 694, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .footer-1 p,
footer[role="contentinfo"] .footer-2 p {
  margin-bottom: 0;
}
/* line 698, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .byline,
footer[role="contentinfo"] .credit-line {
  word-spacing: 0;
  text-align: center;
  clear: both;
  margin-bottom: 0;
  padding: 36px 0 0;
  padding:  2.11765rem 0 0;
  font-size: 14px;
  font-size: 0.82353rem;
}
@media screen and (min-width: 900px) {
  /* line 698, ../watson/assets/sass/_scaffolding.scss */
  footer[role="contentinfo"] .byline,
  footer[role="contentinfo"] .credit-line {
    font-size: 13px;
    font-size: 0.76471rem;
  }
}
/* line 709, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .byline span,
footer[role="contentinfo"] .credit-line span {
  color: #b3b3b3;
  padding: 0 2px;
  padding:  0 0.11765rem;
}
/* line 714, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .byline,
footer[role="contentinfo"] .credit-line {
  padding-top: 0;
}
/* line 718, ../watson/assets/sass/_scaffolding.scss */
footer[role="contentinfo"] .credit-line {
  padding-bottom: 6px;
}

/*---------------------------------------------------------
	Social
-------------------------------------------------------- */
/* line 727, ../watson/assets/sass/_scaffolding.scss */
nav.social {
  text-align: center;
  margin-top: 36px;
  margin-top: 2.11765rem;
}
/* line 730, ../watson/assets/sass/_scaffolding.scss */
nav.social ul {
  margin-left: 0;
  margin-bottom: 0;
}
/* line 733, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li {
  list-style-type: none;
  display: inline;
  margin-left: .6em;
}
/* line 737, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li:first-child {
  margin-left: 0;
}
/* line 740, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li.twitter a {
  background-position: 0;
  width: 15px;
}
/* line 744, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li.facebook a {
  background-position: -16px;
  width: 8px;
}
/* line 748, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li.google a {
  background-position: -25px;
  width: 11px;
}
/* line 752, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li.flickr a {
  background-position: -36px;
  width: 16px;
}
/* line 756, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li.rss a {
  background-position: -53px;
  width: 14px;
}
/* line 760, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li a {
  background-image: url(http://www.shoestringmag.com/wp-content/themes/watson-shoestringmag/images/icons.svg);
  background-position: no-repeat;
  display: inline-block;
  height: 16px;
  border-bottom: none;
}
/* line 766, ../watson/assets/sass/_scaffolding.scss */
nav.social ul li a:hover {
  opacity: .65;
}

/* _patterns.scss
 * Repeatable patterns
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Image classes
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_patterns.scss */
img {
  font-style: italic;
  height: auto;
  max-width: 100%;
  display: block;
  line-height: 0;
}
/* line 15, ../watson/assets/sass/_patterns.scss */
img.wp-smiley {
  margin: 0 !important;
}
/* line 18, ../watson/assets/sass/_patterns.scss */
img.size-full, img.size-large {
  max-width: 100%;
  width: auto;
  height: auto;
}
/* line 24, ../watson/assets/sass/_patterns.scss */
img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"] {
  height: auto;
}

/*---------------------------------------------------------
	Post and Page styles
-------------------------------------------------------- */
/* line 37, ../watson/assets/sass/_patterns.scss */
body.single div.wp-caption,
body.page-template-default div.wp-caption {
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  /* line 37, ../watson/assets/sass/_patterns.scss */
  body.single div.wp-caption,
  body.page-template-default div.wp-caption {
    max-width: 492px;
  }
}
@media screen and (min-width: 900px) {
  /* line 43, ../watson/assets/sass/_patterns.scss */
  body.single div.alignright,
  body.page-template-default div.alignright {
    margin-right: 116px;
    margin-right: 6.82353rem;
  }
  /* line 46, ../watson/assets/sass/_patterns.scss */
  body.single div.alignright img,
  body.page-template-default div.alignright img {
    display: inline;
  }
}
@media screen and (min-width: 900px) {
  /* line 51, ../watson/assets/sass/_patterns.scss */
  body.single div.alignleft,
  body.page-template-default div.alignleft {
    margin-left: 116px;
    margin-left: 6.82353rem;
  }
  /* line 54, ../watson/assets/sass/_patterns.scss */
  body.single div.alignleft img,
  body.page-template-default div.alignleft img {
    display: inline;
  }
}

/*---------------------------------------------------------
	Captions
-------------------------------------------------------- */
/* line 65, ../watson/assets/sass/_patterns.scss */
div.wp-caption {
  max-width: 100%;
}

/* line 68, ../watson/assets/sass/_patterns.scss */
.wp-caption-text,
.feature figcaption,
dd.wp-caption-dd {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  margin-top: 6px;
  margin-top: 0.35294rem;
}
/* line 58, assets/sass/_preboot.scss */
.wp-caption-text a,
.feature figcaption a,
dd.wp-caption-dd a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.wp-caption-text a:hover,
.feature figcaption a:hover,
dd.wp-caption-dd a:hover {
  color: #474747;
}

/*---------------------------------------------------------
	Media
-------------------------------------------------------- */
/* line 79, ../watson/assets/sass/_patterns.scss */
embed,
object,
video,
iframe {
  max-width: 100%;
}

/* line 85, ../watson/assets/sass/_patterns.scss */
.fluid-width-video-wrapper {
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}

/*---------------------------------------------------------
	Classes
-------------------------------------------------------- */
/* line 93, ../watson/assets/sass/_patterns.scss */
.clear {
  clear: both;
}

/* line 96, ../watson/assets/sass/_patterns.scss */
.alignleft {
  float: left;
}

/* line 99, ../watson/assets/sass/_patterns.scss */
.alignright {
  float: right;
}

/* line 102, ../watson/assets/sass/_patterns.scss */
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 108, ../watson/assets/sass/_patterns.scss */
.hide {
  display: none;
  visibility: hidden;
}

/* line 112, ../watson/assets/sass/_patterns.scss */
.hidden {
  visibility: hidden;
}

/* line 115, ../watson/assets/sass/_patterns.scss */
.noborder {
  border: none;
}

/* line 120, ../watson/assets/sass/_patterns.scss */
figure.theme-img .alignleft,
div .alignleft {
  margin-right: 24px;
  margin-right: 1.41176rem;
  text-align: left;
}
/* line 124, ../watson/assets/sass/_patterns.scss */
figure.theme-img .alignright,
div .alignright {
  margin-left: 24px;
  margin-left: 1.41176rem;
  text-align: right;
}
/* line 128, ../watson/assets/sass/_patterns.scss */
figure.theme-img .aligncenter,
div .aligncenter {
  text-align: center;
}

/* _posts.scss
 * Post styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Details
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_posts.scss */
header.post-title {
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
@media screen and (min-width: 900px) {
  /* line 9, ../watson/assets/sass/_posts.scss */
  header.post-title {
    margin-bottom: 36px;
    margin-bottom: 2.11765rem;
  }
}
/* line 14, ../watson/assets/sass/_posts.scss */
header.post-title .heading {
  margin-bottom: 6px;
}
/* line 16, ../watson/assets/sass/_posts.scss */
header.post-title .heading a {
  color: #1c1c1c;
  border-bottom: none;
}
/* line 21, ../watson/assets/sass/_posts.scss */
header.post-title .post-byline {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 58, assets/sass/_preboot.scss */
header.post-title .post-byline a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
header.post-title .post-byline a:hover {
  color: #474747;
}

/*---------------------------------------------------------
	Protected
-------------------------------------------------------- */
/* line 30, ../watson/assets/sass/_posts.scss */
.protected-comments {
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}

/*---------------------------------------------------------
	Post roll
-------------------------------------------------------- */
/* line 38, ../watson/assets/sass/_posts.scss */
.post-roll {
  clear: both;
}
/* line 40, ../watson/assets/sass/_posts.scss */
.post-roll h1 {
  font-size: 22px;
  font-size: 1.29412rem;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
}
/* line 44, ../watson/assets/sass/_posts.scss */
.post-roll article.post {
  border-top: 1px solid #e3e3e3;
  padding-top: 36px;
  padding-top: 2.11765rem;
  margin-bottom: 36px;
  margin-bottom: 2.11765rem;
  zoom: 1;
}
/* line 69, assets/sass/_preboot.scss */
.post-roll article.post:before, .post-roll article.post:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.post-roll article.post:after {
  clear: both;
}
/* line 49, ../watson/assets/sass/_posts.scss */
.post-roll article.post figure {
  float: left;
  margin-bottom: 0;
  line-height: 0;
}
/* line 54, ../watson/assets/sass/_posts.scss */
.post-roll article.post p {
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 57, ../watson/assets/sass/_posts.scss */
.post-roll article.post h1 a {
  color: #1c1c1c;
}
/* line 60, ../watson/assets/sass/_posts.scss */
.post-roll article.post figure {
  display: none;
}
@media screen and (min-width: 900px) {
  /* line 60, ../watson/assets/sass/_posts.scss */
  .post-roll article.post figure {
    display: inline-block;
    max-width: 35.46713%;
  }
}
/* line 67, ../watson/assets/sass/_posts.scss */
.post-roll article.post .post-content {
  clear: right;
}
@media screen and (min-width: 900px) {
  /* line 67, ../watson/assets/sass/_posts.scss */
  .post-roll article.post .post-content {
    max-width: 54.82759%;
    padding-right: 4.82759%;
    padding-left: 4.82759%;
  }
}
/* line 74, ../watson/assets/sass/_posts.scss */
.post-roll article.post .post-content nav {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  font-size: 13px;
  font-size: 0.76471rem;
}
/* line 58, assets/sass/_preboot.scss */
.post-roll article.post .post-content nav a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.post-roll article.post .post-content nav a:hover {
  color: #474747;
}
/* line 79, ../watson/assets/sass/_posts.scss */
.post-roll article.post .post-content nav time:after,
.post-roll article.post .post-content nav .comment-count:after {
  content: "\007C";
  display: inline-block;
  color: #858585;
  padding-left: 4px;
  padding-left: 0.23529rem;
  margin-right: 1px;
  margin-right: 0.05882rem;
}
/* line 87, ../watson/assets/sass/_posts.scss */
.post-roll article.post .post-content nav a {
  border-bottom: none;
}
/* line 90, ../watson/assets/sass/_posts.scss */
.post-roll article.post .post-content nav span a {
  color: #d00f1a;
}
/* line 97, ../watson/assets/sass/_posts.scss */
.post-roll article.full-width-post .post-content {
  clear: right;
  padding-left: 0;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  /* line 97, ../watson/assets/sass/_posts.scss */
  .post-roll article.full-width-post .post-content {
    max-width: 94.82759%;
  }
}

/*---------------------------------------------------------
	Archives
-------------------------------------------------------- */
/* line 112, ../watson/assets/sass/_posts.scss */
body.archive .post-roll article.post {
  border-bottom: 0;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 115, ../watson/assets/sass/_posts.scss */
body.archive .post-roll article.post:first-of-type {
  border-top: 0;
  padding-top: 12px;
  padding-top: 0.70588rem;
}

/*---------------------------------------------------------
	Featured image
-------------------------------------------------------- */
/* line 125, ../watson/assets/sass/_posts.scss */
.feature {
  zoom: 1;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
}
/* line 69, assets/sass/_preboot.scss */
.feature:before, .feature:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.feature:after {
  clear: both;
}
/* line 128, ../watson/assets/sass/_posts.scss */
.feature img {
  width: 608px;
  float: right;
  clear: right;
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Post footer
-------------------------------------------------------- */
/* line 140, ../watson/assets/sass/_posts.scss */
footer.post-footer {
  border-top: 1px solid #e3e3e3;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  margin-top: 48px;
  margin-top: 2.82353rem;
  margin-bottom: 48px;
  margin-bottom: 2.82353rem;
  padding-top: 24px;
  padding-top: 1.41176rem;
}
/* line 58, assets/sass/_preboot.scss */
footer.post-footer a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
footer.post-footer a:hover {
  color: #474747;
}
/* line 146, ../watson/assets/sass/_posts.scss */
footer.post-footer p {
  margin-bottom: 0;
}
/* line 149, ../watson/assets/sass/_posts.scss */
footer.post-footer a {
  border-bottom: none;
}
/* line 151, ../watson/assets/sass/_posts.scss */
footer.post-footer a:hover {
  border-bottom: 1px solid #e3e3e3;
}
/* line 154, ../watson/assets/sass/_posts.scss */
footer.post-footer a[rel="prev"]:before {
  content: "\2190";
  color: #d00f1a;
  padding-right: 4px;
  padding-right: 0.23529rem;
}
/* line 159, ../watson/assets/sass/_posts.scss */
footer.post-footer a[rel="next"]:after {
  content: "\2192";
  color: #d00f1a;
  display: inline-block;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
  padding-left: 4px;
  padding-left: 0.23529rem;
}
/* line 167, ../watson/assets/sass/_posts.scss */
footer.post-footer section {
  color: #474747;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 169, ../watson/assets/sass/_posts.scss */
footer.post-footer section a {
  color: #474747;
}

/* line 175, ../watson/assets/sass/_posts.scss */
.index-footer {
  zoom: 1;
}
/* line 69, assets/sass/_preboot.scss */
.index-footer:before, .index-footer:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.index-footer:after {
  clear: both;
}

/*---------------------------------------------------------
	Featured thumbnails
-------------------------------------------------------- */
/* line 183, ../watson/assets/sass/_posts.scss */
.featured-thumbnails-container {
  border-top: 1px solid #e3e3e3;
  zoom: 1;
  padding: 36px 0;
  padding:  2.11765rem 0;
}
/* line 69, assets/sass/_preboot.scss */
.featured-thumbnails-container:before, .featured-thumbnails-container:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.featured-thumbnails-container:after {
  clear: both;
}
/* line 187, ../watson/assets/sass/_posts.scss */
.featured-thumbnails-container .featured-thumbnail {
  clear: left;
  zoom: 1;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  color: #474747;
}
@media screen and (min-width: 900px) {
  /* line 187, ../watson/assets/sass/_posts.scss */
  .featured-thumbnails-container .featured-thumbnail {
    margin-right: 5.34483%;
    max-width: 20%;
    float: left;
    clear: none;
    margin-bottom: 0;
    font-size: 13px;
    font-size: 0.76471rem;
  }
}
/* line 69, assets/sass/_preboot.scss */
.featured-thumbnails-container .featured-thumbnail:before, .featured-thumbnails-container .featured-thumbnail:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.featured-thumbnails-container .featured-thumbnail:after {
  clear: both;
}
/* line 58, assets/sass/_preboot.scss */
.featured-thumbnails-container .featured-thumbnail a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.featured-thumbnails-container .featured-thumbnail a:hover {
  color: #474747;
}
/* line 201, ../watson/assets/sass/_posts.scss */
.featured-thumbnails-container .featured-thumbnail:hover {
  color: #1c1c1c;
}
/* line 204, ../watson/assets/sass/_posts.scss */
.featured-thumbnails-container .featured-thumbnail img {
  float: left;
}
/* line 207, ../watson/assets/sass/_posts.scss */
.featured-thumbnails-container .featured-thumbnail span {
  max-width: 42.02899%;
  float: left;
  padding-left: 14px;
  padding-left: 0.82353rem;
}
@media screen and (min-width: 900px) {
  /* line 207, ../watson/assets/sass/_posts.scss */
  .featured-thumbnails-container .featured-thumbnail span {
    padding-left: 0;
    max-width: 100%;
    margin-top: 7px;
    margin-top: 0.41176rem;
  }
}
/* line 218, ../watson/assets/sass/_posts.scss */
.featured-thumbnails-container .last {
  margin-right: 0;
  margin-bottom: 0;
}

/* _pages.scss
 * Pages and page templates
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Templates
-------------------------------------------------------- */
/* line 13, ../watson/assets/sass/_pages.scss */
body.page header.post-title,
body.search header.post-title,
body.archive header.post-title,
body.blog header.post-title {
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
@media screen and (min-width: 900px) {
  /* line 16, ../watson/assets/sass/_pages.scss */
  body.page .content,
  body.search .content,
  body.archive .content,
  body.blog .content {
    width: 64.22222%;
  }
}

@media screen and (min-width: 900px) {
  /* line 22, ../watson/assets/sass/_pages.scss */
  body.page .inner-content {
    padding-right: 4.82759%;
  }
}

/*---------------------------------------------------------
	Index
-------------------------------------------------------- */
/* line 33, ../watson/assets/sass/_pages.scss */
.index-footer p a[rel="next"] {
  margin-right: 6px;
  margin-right: 0.35294rem;
}
/* line 35, ../watson/assets/sass/_pages.scss */
.index-footer p a[rel="next"]:before {
  content: "\2190";
  padding-right: 4px;
  padding-right: 0.23529rem;
}
/* line 40, ../watson/assets/sass/_pages.scss */
.index-footer p a[rel="prev"]:after {
  content: "\2192";
  display: inline-block;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
  padding-left: 4px;
  padding-left: 0.23529rem;
}

/*---------------------------------------------------------
	Sitemap
-------------------------------------------------------- */
/* line 54, ../watson/assets/sass/_pages.scss */
.tmp-sitemap section ul.children {
  margin-bottom: -12px;
  margin-bottom: -0.70588rem;
}
/* line 57, ../watson/assets/sass/_pages.scss */
.tmp-sitemap section ul li {
  padding-bottom: 12px;
  padding-bottom: 0.70588rem;
}

/*---------------------------------------------------------
	Attachment
-------------------------------------------------------- */
/* line 68, ../watson/assets/sass/_pages.scss */
.tmp-attachment nav {
  zoom: 1;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 69, assets/sass/_preboot.scss */
.tmp-attachment nav:before, .tmp-attachment nav:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.tmp-attachment nav:after {
  clear: both;
}
/* line 58, assets/sass/_preboot.scss */
.tmp-attachment nav a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.tmp-attachment nav a:hover {
  color: #474747;
}
/* line 74, ../watson/assets/sass/_pages.scss */
.tmp-attachment img {
  display: block;
  margin: 0 auto;
}
/* line 78, ../watson/assets/sass/_pages.scss */
.tmp-attachment figure a {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  display: inline-block;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 58, assets/sass/_preboot.scss */
.tmp-attachment figure a a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.tmp-attachment figure a a:hover {
  color: #474747;
}
/* line 82, ../watson/assets/sass/_pages.scss */
.tmp-attachment figure a:before {
  content: "\2190";
  color: #d00f1a;
  padding-right: 4px;
  padding-right: 0.23529rem;
}
/* line 88, ../watson/assets/sass/_pages.scss */
.tmp-attachment figcaption {
  max-width: 668px;
  margin: 0 auto;
}
/* line 91, ../watson/assets/sass/_pages.scss */
.tmp-attachment figcaption h1 {
  text-align: center;
  margin-top: 0;
  font-size: 31px;
  font-size: 1.82353rem;
}
/* line 96, ../watson/assets/sass/_pages.scss */
.tmp-attachment figcaption section {
  color: #858585;
  font-size: 14px;
  font-size: 0.82353rem;
}

/*---------------------------------------------------------
	Search & Archive
-------------------------------------------------------- */
/* line 109, ../watson/assets/sass/_pages.scss */
body.search .post,
body.archive .post {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 12px;
  padding-bottom: 0.70588rem;
  margin-bottom: 48px;
  margin-bottom: 2.82353rem;
}
/* line 113, ../watson/assets/sass/_pages.scss */
body.search .post:last-child,
body.archive .post:last-child {
  border-bottom: none;
}
/* line 117, ../watson/assets/sass/_pages.scss */
body.search .page,
body.archive .page {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 12px;
  padding-bottom: 0.70588rem;
  margin-bottom: 48px;
  margin-bottom: 2.82353rem;
}
/* line 121, ../watson/assets/sass/_pages.scss */
body.search .page .post-byline,
body.archive .page .post-byline {
  display: none;
}
/* line 125, ../watson/assets/sass/_pages.scss */
body.search .content div:last-of-type,
body.archive .content div:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 900px) {
  /* line 128, ../watson/assets/sass/_pages.scss */
  body.search .inner-content,
  body.archive .inner-content {
    width: 95.17241%;
  }
}

/* line 135, ../watson/assets/sass/_pages.scss */
a.custom-more-link {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  color: #d00f1a;
  display: inline-block;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 58, assets/sass/_preboot.scss */
a.custom-more-link a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
a.custom-more-link a:hover {
  color: #474747;
}
/* line 140, ../watson/assets/sass/_pages.scss */
a.custom-more-link:before {
  content: "\005B";
  padding-right: 1px;
  padding-right: 0.05882rem;
}
/* line 144, ../watson/assets/sass/_pages.scss */
a.custom-more-link:after {
  content: "\005D";
  padding-left: 1px;
  padding-left: 0.05882rem;
}
/* line 148, ../watson/assets/sass/_pages.scss */
a.custom-more-link:hover {
  border: none;
}

/* _sidebar.scss
 * Sidebar and widget styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Sidebar
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] {
  clear: both;
  border-top: 1px solid #e3e3e3;
  padding-top: 24px;
  padding-top: 1.41176rem;
  margin-top: 24px;
  margin-top: 1.41176rem;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
@media screen and (min-width: 900px) {
  /* line 9, ../watson/assets/sass/_sidebar.scss */
  aside[role="complementary"] {
    width: 32.44444%;
    float: right;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    padding-left: 3.11111%;
    clear: none;
  }
}
/* line 58, assets/sass/_preboot.scss */
aside[role="complementary"] a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
aside[role="complementary"] a:hover {
  color: #474747;
}

/*---------------------------------------------------------
	Widget title
-------------------------------------------------------- */
/* line 30, ../watson/assets/sass/_sidebar.scss */
h3.widgettitle {
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  text-transform: lowercase;
  font-variant: small-caps;
  letter-spacing: .1em;
  color: #474747;
  font-weight: 600;
  line-height: 1;
  font-size: 18px;
  font-size: 1.05882rem;
  margin: 0 0 12px;
  margin:  0 0 0.70588rem;
}
/* line 40, ../watson/assets/sass/_sidebar.scss */
h3.widgettitle a {
  color: #474747;
  border-bottom: none;
}

/*---------------------------------------------------------
	Widget areas
-------------------------------------------------------- */
/* line 50, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"],
footer[role="contentinfo"] {
  word-wrap: break-word;
}
/* line 53, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] ul,
footer[role="contentinfo"] ul {
  margin-left: 0;
  list-style: inside square;
}
/* line 56, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] ul li,
footer[role="contentinfo"] ul li {
  line-height: 2;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
}
/* line 61, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget,
footer[role="contentinfo"] .widget {
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 64, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] a.rsswidget img,
footer[role="contentinfo"] a.rsswidget img {
  display: none;
}
/* line 68, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_rss ul,
footer[role="contentinfo"] .widget_rss ul {
  margin-left: 0;
}
/* line 71, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_rss .rss-date:before,
footer[role="contentinfo"] .widget_rss .rss-date:before {
  content: "\2013  ";
}
/* line 74, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_rss cite,
footer[role="contentinfo"] .widget_rss cite {
  display: inline-block;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 77, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_rss cite:before,
footer[role="contentinfo"] .widget_rss cite:before {
  content: "\2013  ";
}
/* line 82, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_tag_cloud,
aside[role="complementary"] .wp_widget_tag_cloud,
footer[role="contentinfo"] .widget_tag_cloud,
footer[role="contentinfo"] .wp_widget_tag_cloud {
  display: inline-block;
}
/* line 85, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_tag_cloud a,
aside[role="complementary"] .wp_widget_tag_cloud a,
footer[role="contentinfo"] .widget_tag_cloud a,
footer[role="contentinfo"] .wp_widget_tag_cloud a {
  color: #f2f2f2;
  display: inline-block;
  margin: 0 .4em .6em 0;
  font-size: 12px !important;
  border-bottom: 0;
}
/* line 91, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_tag_cloud a:hover,
aside[role="complementary"] .wp_widget_tag_cloud a:hover,
footer[role="contentinfo"] .widget_tag_cloud a:hover,
footer[role="contentinfo"] .wp_widget_tag_cloud a:hover {
  color: #e3e3e3;
}
/* line 94, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_tag_cloud a:active,
aside[role="complementary"] .wp_widget_tag_cloud a:active,
footer[role="contentinfo"] .widget_tag_cloud a:active,
footer[role="contentinfo"] .wp_widget_tag_cloud a:active {
  color: #f2f2f2;
}
/* line 100, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_calendar tr,
footer[role="contentinfo"] .widget_calendar tr {
  letter-spacing: .1em;
}
/* line 103, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_calendar td,
footer[role="contentinfo"] .widget_calendar td {
  padding-bottom: 12px;
  padding-bottom: 0.70588rem;
}
/* line 108, ../watson/assets/sass/_sidebar.scss */
aside[role="complementary"] .widget_nav_menu ul.sub-menu li,
footer[role="contentinfo"] .widget_nav_menu ul.sub-menu li {
  margin-left: 1.4em;
}

/*---------------------------------------------------------
	Custom widget
-------------------------------------------------------- */
/* line 119, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post {
  zoom: 1;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 69, assets/sass/_preboot.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post:before, .widget_watsonthemerecentlydiscussedwidget .recent-post:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post:after {
  clear: both;
}
/* line 122, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post a {
  border-bottom: none;
}
/* line 125, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post img {
  float: left;
  max-width: 30.24055%;
  margin-right: 14px;
  margin-right: 0.82353rem;
}
/* line 131, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post:hover time {
  color: #474747;
}
/* line 135, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget .recent-post:hover h4:after {
  content: "\2192";
  color: #d00f1a;
  padding-left: 4px;
  padding-left: 0.23529rem;
}
/* line 143, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget section {
  float: left;
  width: 62.8866%;
}
/* line 146, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget section h4 {
  margin-top: 0;
  text-transform: none;
  letter-spacing: 0;
  color: #474747;
  line-height: 1.45;
  font-size: 14px;
  font-size: 0.82353rem;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
}
/* line 155, ../watson/assets/sass/_sidebar.scss */
.widget_watsonthemerecentlydiscussedwidget section time {
  font-size: 13px;
  font-size: 0.76471rem;
}

/* _comments.scss
 * Comment styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	General
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_comments.scss */
#comments {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  margin-top: 12px;
  margin-top: 0.70588rem;
}
/* line 58, assets/sass/_preboot.scss */
#comments a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
#comments a:hover {
  color: #474747;
}
/* line 12, ../watson/assets/sass/_comments.scss */
#comments ol, #comments ul {
  margin: 0;
}
/* line 16, ../watson/assets/sass/_comments.scss */
#comments li.comment {
  list-style: none;
  border-bottom: 1px solid #e3e3e3;
  zoom: 1;
  margin-bottom: 36px;
  margin-bottom: 2.11765rem;
}
/* line 69, assets/sass/_preboot.scss */
#comments li.comment:before, #comments li.comment:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
#comments li.comment:after {
  clear: both;
}
/* line 22, ../watson/assets/sass/_comments.scss */
#comments li.bypostauthor {
  border-bottom: none;
}
/* line 25, ../watson/assets/sass/_comments.scss */
#comments li article {
  zoom: 1;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 69, assets/sass/_preboot.scss */
#comments li article:before, #comments li article:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
#comments li article:after {
  clear: both;
}

/*---------------------------------------------------------
	Header
-------------------------------------------------------- */
/* line 36, ../watson/assets/sass/_comments.scss */
#comments header.comment-author {
  clear: both;
  color: #1c1c1c;
}
/* line 39, ../watson/assets/sass/_comments.scss */
#comments header.comment-author a, #comments header.comment-author time {
  color: #474747;
  border-bottom: none;
}
/* line 43, ../watson/assets/sass/_comments.scss */
#comments header.comment-author time a {
  color: #1c1c1c;
  line-height: 48px;
}
/* line 46, ../watson/assets/sass/_comments.scss */
#comments header.comment-author time a:before {
  content: "\2013  ";
}
/* line 50, ../watson/assets/sass/_comments.scss */
#comments header.comment-author span {
  line-height: 48px;
}

/*---------------------------------------------------------
	Body
-------------------------------------------------------- */
/* line 59, ../watson/assets/sass/_comments.scss */
.post-content {
  clear: both;
  float: left;
}
/* line 62, ../watson/assets/sass/_comments.scss */
.post-content a {
  word-break: break-word;
}
/* line 65, ../watson/assets/sass/_comments.scss */
.post-content ul,
.post-content ol,
.post-content dd {
  margin-left: 1.4em !important;
  margin-bottom: 12px !important;
}
/* line 71, ../watson/assets/sass/_comments.scss */
.post-content li {
  border-bottom: none !important;
}
/* line 74, ../watson/assets/sass/_comments.scss */
.post-content ol {
  list-style: decimal;
}
/* line 77, ../watson/assets/sass/_comments.scss */
.post-content ul {
  list-style: square;
}
/* line 80, ../watson/assets/sass/_comments.scss */
.post-content li > ul,
.post-content li > ol {
  margin-bottom: 0 !important;
}
/* line 84, ../watson/assets/sass/_comments.scss */
.post-content blockquote {
  font-weight: normal;
}

/*---------------------------------------------------------
	Children
-------------------------------------------------------- */
/* line 93, ../watson/assets/sass/_comments.scss */
ul.children {
  zoom: 1;
}
@media screen and (min-width: 900px) {
  /* line 93, ../watson/assets/sass/_comments.scss */
  ul.children {
    padding-left: 28px;
    padding-left: 1.64706rem;
  }
}
/* line 69, assets/sass/_preboot.scss */
ul.children:before, ul.children:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
ul.children:after {
  clear: both;
}

/*---------------------------------------------------------
	Author
-------------------------------------------------------- */
/* line 104, ../watson/assets/sass/_comments.scss */
li.bypostauthor article {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  margin-bottom: 0 !important;
  padding: 24px;
  padding: 1.41176rem;
}

/*---------------------------------------------------------
	Details
-------------------------------------------------------- */
/* line 115, ../watson/assets/sass/_comments.scss */
a#cancel-comment-reply-link {
  display: inline-block;
  position: relative;
  left: .5em;
}

/* line 120, ../watson/assets/sass/_comments.scss */
img.avatar {
  float: left;
  margin-right: 12px;
  margin-right: 0.70588rem;
}

/* line 124, ../watson/assets/sass/_comments.scss */
.comment-reply-link {
  clear: both;
  float: left;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}

/* line 129, ../watson/assets/sass/_comments.scss */
h4.comment-headline {
  margin-bottom: 36px;
  margin-bottom: 2.11765rem;
}

/* line 132, ../watson/assets/sass/_comments.scss */
.comments-previous,
.comments-next {
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}

/*---------------------------------------------------------
	Pingbacks and Trackbacks
-------------------------------------------------------- */
/* line 142, ../watson/assets/sass/_comments.scss */
li.pingback, li.trackback {
  list-style: none;
}

/*---------------------------------------------------------
	Form
-------------------------------------------------------- */
/* line 152, ../watson/assets/sass/_comments.scss */
#reply-title {
  clear: both;
  font-weight: normal;
  margin-bottom: 36px;
  margin-bottom: 2.11765rem;
  margin-top: 12px;
  margin-top: 0.70588rem;
}

/* line 158, ../watson/assets/sass/_comments.scss */
label.comment-field {
  display: inline-block;
  margin: 0 0 12px;
  margin:  0 0 0.70588rem;
}

/* line 162, ../watson/assets/sass/_comments.scss */
#respond fieldset label.comment-field:after {
  content: "\003A";
}

/* line 165, ../watson/assets/sass/_comments.scss */
input.text-input,
#comment {
  width: 100%;
}

/* line 169, ../watson/assets/sass/_comments.scss */
span.required {
  color: #d00f1a;
}

/* line 172, ../watson/assets/sass/_comments.scss */
.guidelines {
  color: #858585;
  font-size: 15px;
  font-size: 0.88235rem;
}

/* line 176, ../watson/assets/sass/_comments.scss */
.comments-rss {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
/* line 58, assets/sass/_preboot.scss */
.comments-rss a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.comments-rss a:hover {
  color: #474747;
}

/* _slider.scss
 * Slider styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Gallery shortcode
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_slider.scss */
.responsive-slides {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 58, assets/sass/_preboot.scss */
.responsive-slides a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.responsive-slides a:hover {
  color: #474747;
}
/* line 11, ../watson/assets/sass/_slider.scss */
.responsive-slides .rslides {
  overflow: hidden;
  position: relative;
  list-style: none;
}
/* line 15, ../watson/assets/sass/_slider.scss */
.responsive-slides .rslides li, .responsive-slides .rslides img {
  width: 100%;
}
/* line 19, ../watson/assets/sass/_slider.scss */
.responsive-slides ul {
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
}
/* line 22, ../watson/assets/sass/_slider.scss */
.responsive-slides a {
  border-bottom: none;
}
/* line 25, ../watson/assets/sass/_slider.scss */
.responsive-slides a.prev:after {
  content: "/";
  color: #858585;
  margin: 0 7px;
  margin:  0 0.41176rem;
}
/* line 30, ../watson/assets/sass/_slider.scss */
.responsive-slides a.prev:before {
  content: "\2190";
  color: #d00f1a;
  padding-right: 4px;
  padding-right: 0.23529rem;
}
/* line 36, ../watson/assets/sass/_slider.scss */
.responsive-slides a.next:after {
  content: "\2192";
  color: #d00f1a;
  display: inline-block;
  margin-bottom: 6px;
  margin-bottom: 0.35294rem;
  padding-left: 4px;
  padding-left: 0.23529rem;
}

/*---------------------------------------------------------
	Featured slider
-------------------------------------------------------- */
/* line 50, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides {
  zoom: 1;
  margin-bottom: 24px;
  margin-bottom: 1.41176rem;
}
@media screen and (min-width: 900px) {
  /* line 50, ../watson/assets/sass/_slider.scss */
  body.blog .responsive-slides {
    padding-right: 4.82759%;
  }
}
/* line 69, assets/sass/_preboot.scss */
body.blog .responsive-slides:before, body.blog .responsive-slides:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
body.blog .responsive-slides:after {
  clear: both;
}
/* line 56, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .rslides-direction-nav {
  float: right;
  margin-bottom: 0;
}
/* line 60, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides p {
  font-family: "PT Serif", Georgia, Cambria, "Times New Roman", Times, serif;
  color: #1c1c1c;
}
/* line 64, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .featured-article {
  zoom: 1;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 69, assets/sass/_preboot.scss */
body.blog .responsive-slides .featured-article:before, body.blog .responsive-slides .featured-article:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
body.blog .responsive-slides .featured-article:after {
  clear: both;
}
/* line 67, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .featured-article h1 {
  margin: 6px 0;
  margin:  0.35294rem 0;
}
/* line 70, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .featured-article p {
  font-size: 19px;
  font-size: 1.11765rem;
  margin-bottom: 0;
}
/* line 73, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .featured-article p span {
  color: #d00f1a;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 15px;
  font-size: 0.88235rem;
}
/* line 77, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .featured-article p span:before {
  content: "[";
  padding-left: 2px;
  padding-left: 0.11765rem;
  padding-right: 1px;
  padding-right: 0.05882rem;
}
/* line 82, ../watson/assets/sass/_slider.scss */
body.blog .responsive-slides .featured-article p span:after {
  content: "]";
  padding-left: 1px;
  padding-left: 0.05882rem;
}

/* _forms.scss
 * Form styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Inputs
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_forms.scss */
textarea,
select,
input {
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: #858585;
  border: 1px solid #e3e3e3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
  padding: 0.47059rem;
  font-size: 14px;
  font-size: 0.82353rem;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
/* line 22, ../watson/assets/sass/_forms.scss */
textarea:focus,
select:focus,
input:focus {
  outline-color: transparent;
  outline-style: none;
  color: #474747;
  border-color: rgba(41, 122, 192, 0.6);
  -webkit-box-shadow: 0 0 4px #297ac0;
  -moz-box-shadow: 0 0 4px #297ac0;
  box-shadow: 0 0 4px #297ac0;
  z-index: 1;
}

/*---------------------------------------------------------
	Elements
-------------------------------------------------------- */
/* line 38, ../watson/assets/sass/_forms.scss */
input[type="checkbox"],
input[type="radio"] {
  margin-right: .6em;
}

/* line 42, ../watson/assets/sass/_forms.scss */
textarea {
  resize: vertical;
}

/*---------------------------------------------------------
	Buttons
-------------------------------------------------------- */
/* line 50, ../watson/assets/sass/_forms.scss */
button,
input[type="reset"],
input[type="submit"],
input[type="button"],
.widget_tag_cloud a,
.wp_widget_tag_cloud a,
.post-edit-link,
a#cancel-comment-reply-link,
.comment-edit-link,
.index-footer p a {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  background-color: #1c1c1c;
  padding: 6px 12px;
  color: #f2f2f2;
  text-align: center;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 58, assets/sass/_preboot.scss */
button a,
input[type="reset"] a,
input[type="submit"] a,
input[type="button"] a,
.widget_tag_cloud a a,
.wp_widget_tag_cloud a a,
.post-edit-link a,
a#cancel-comment-reply-link a,
.comment-edit-link a,
.index-footer p a a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
button a:hover,
input[type="reset"] a:hover,
input[type="submit"] a:hover,
input[type="button"] a:hover,
.widget_tag_cloud a a:hover,
.wp_widget_tag_cloud a a:hover,
.post-edit-link a:hover,
a#cancel-comment-reply-link a:hover,
.comment-edit-link a:hover,
.index-footer p a a:hover {
  color: #474747;
}
/* line 68, ../watson/assets/sass/_forms.scss */
button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.widget_tag_cloud a:hover,
.wp_widget_tag_cloud a:hover,
.post-edit-link:hover,
a#cancel-comment-reply-link:hover,
.comment-edit-link:hover,
.index-footer p a:hover {
  color: #e3e3e3;
}
/* line 71, ../watson/assets/sass/_forms.scss */
button:active, button.active,
input[type="reset"]:active,
input[type="reset"].active,
input[type="submit"]:active,
input[type="submit"].active,
input[type="button"]:active,
input[type="button"].active,
.widget_tag_cloud a:active,
.widget_tag_cloud a.active,
.wp_widget_tag_cloud a:active,
.wp_widget_tag_cloud a.active,
.post-edit-link:active,
.post-edit-link.active,
a#cancel-comment-reply-link:active,
a#cancel-comment-reply-link.active,
.comment-edit-link:active,
.comment-edit-link.active,
.index-footer p a:active,
.index-footer p a.active {
  color: #f2f2f2;
}

/*---------------------------------------------------------
	Links
-------------------------------------------------------- */
/* line 81, ../watson/assets/sass/_forms.scss */
.post-edit-link,
a#cancel-comment-reply-link,
.comment-edit-link,
.page-links {
  clear: both;
  zoom: 1;
}
/* line 69, assets/sass/_preboot.scss */
.post-edit-link:before, .post-edit-link:after,
a#cancel-comment-reply-link:before,
a#cancel-comment-reply-link:after,
.comment-edit-link:before,
.comment-edit-link:after,
.page-links:before,
.page-links:after {
  display: table;
  content: "";
}
/* line 73, assets/sass/_preboot.scss */
.post-edit-link:after,
a#cancel-comment-reply-link:after,
.comment-edit-link:after,
.page-links:after {
  clear: both;
}

/* line 88, ../watson/assets/sass/_forms.scss */
.post-edit-link {
  display: inline-block;
  margin-top: 12px;
  margin-top: 0.70588rem;
}

/* line 92, ../watson/assets/sass/_forms.scss */
.page-links {
  margin-top: 12px;
  margin-top: 0.70588rem;
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
}
/* line 58, assets/sass/_preboot.scss */
.page-links a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.page-links a:hover {
  color: #474747;
}

/*---------------------------------------------------------
	Contact form 7
-------------------------------------------------------- */
/* line 102, ../watson/assets/sass/_forms.scss */
div.wpcf7 input[type="text"],
div.wpcf7 textarea {
  width: 95%;
  margin-bottom: 0;
  margin-top: 12px;
  margin-top: 0.70588rem;
}
/* line 108, ../watson/assets/sass/_forms.scss */
div.wpcf7 input[type="submit"] {
  margin-top: 12px;
  margin-top: 0.70588rem;
}

/* _dropdowns.scss
 * Drop-down styling with DropKick
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Container
-------------------------------------------------------- */
/* line 9, ../watson/assets/sass/_dropdowns.scss */
.dk_container {
  color: #858585;
  font-family: "Source Sans Pro", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  word-spacing: -.05em;
  line-height: 1.48;
  font-size: 14px;
  font-size: 0.82353rem;
  line-height: 1.55;
  text-align: center;
  outline: none;
  margin-bottom: 12px;
  margin-bottom: 0.70588rem;
}
/* line 58, assets/sass/_preboot.scss */
.dk_container a {
  color: #858585;
  border-bottom: 1px solid #e3e3e3;
}
/* line 61, assets/sass/_preboot.scss */
.dk_container a:hover {
  color: #474747;
}
/* line 15, ../watson/assets/sass/_dropdowns.scss */
.dk_container a {
  cursor: pointer;
  text-decoration: none;
}

/*---------------------------------------------------------
	Items
-------------------------------------------------------- */
/* line 25, ../watson/assets/sass/_dropdowns.scss */
.dk_toggle {
  border: 1px solid #e3e3e3 !important;
  background: #ffffff;
}
/* line 28, ../watson/assets/sass/_dropdowns.scss */
.dk_toggle:after {
  content: "\25BC";
  padding-left: 6px;
  padding-left: 0.35294rem;
}

/* line 33, ../watson/assets/sass/_dropdowns.scss */
.dk_open {
  z-index: 15;
}

/* line 36, ../watson/assets/sass/_dropdowns.scss */
.dk_label {
  padding-top: 15px;
  padding-top: 0.88235rem;
  padding-bottom: 15px;
  padding-bottom: 0.88235rem;
  display: inline-block;
}

/* line 41, ../watson/assets/sass/_dropdowns.scss */
.dk_options {
  background: #ffffff;
}
/* line 43, ../watson/assets/sass/_dropdowns.scss */
.dk_options a {
  border-bottom: 1px solid #e3e3e3 !important;
  padding: 0 30px;
  padding:  0 1.76471rem;
}
/* line 48, ../watson/assets/sass/_dropdowns.scss */
.dk_options li:last-child a {
  border-bottom: none !important;
}
/* line 51, ../watson/assets/sass/_dropdowns.scss */
.dk_options li a {
  list-style: none;
  padding-top: 15px;
  padding-top: 0.88235rem;
  padding-bottom: 15px;
  padding-bottom: 0.88235rem;
}

/* line 58, ../watson/assets/sass/_dropdowns.scss */
.dk_options_inner {
  margin-top: 1px;
  border: 1px solid #e3e3e3;
  margin-bottom: 0;
}

/*---------------------------------------------------------
	Defaults
-------------------------------------------------------- */
/* line 68, ../watson/assets/sass/_dropdowns.scss */
.dk_container {
  display: none;
  float: left;
  position: relative;
}
/* line 72, ../watson/assets/sass/_dropdowns.scss */
.dk_container a {
  outline: 0;
}

/* line 76, ../watson/assets/sass/_dropdowns.scss */
.dk_toggle {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  position: relative;
  zoom: 1;
}

/* line 83, ../watson/assets/sass/_dropdowns.scss */
.dk_open {
  position: relative;
}
/* line 85, ../watson/assets/sass/_dropdowns.scss */
.dk_open .dk_options {
  display: block;
}
/* line 88, ../watson/assets/sass/_dropdowns.scss */
.dk_open .dk_label {
  color: inherit;
}

/* line 92, ../watson/assets/sass/_dropdowns.scss */
.dk_options {
  display: none;
  margin-top: -1px;
  position: absolute;
  right: 0;
  width: 100%;
}

/* line 99, ../watson/assets/sass/_dropdowns.scss */
.dk_options a,
.dk_options a:link,
.dk_options a:visited {
  display: block;
}

/* line 104, ../watson/assets/sass/_dropdowns.scss */
.dk_options_inner {
  position: relative;
}

/* line 108, ../watson/assets/sass/_dropdowns.scss */
.dk_touch .dk_options {
  overflow: hidden;
}
/* line 111, ../watson/assets/sass/_dropdowns.scss */
.dk_touch .dk_options_inner {
  max-height: none;
  overflow: visible;
}

/* line 116, ../watson/assets/sass/_dropdowns.scss */
select.dropkicked {
  position: relative;
  top: -99999em;
  visibility: hidden;
}

/* _print.scss
 * Print styles
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Default print styles
-------------------------------------------------------- */
@media print {
  /* line 10, ../watson/assets/sass/_print.scss */
  * {
    background-color: #fff;
    color: #1c1c1c;
    border: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  /* line 17, ../watson/assets/sass/_print.scss */
  html,
  body {
    font-size: 12px !important;
  }

  /* line 21, ../watson/assets/sass/_print.scss */
  #respond,
  .cat-links,
  .tag-links,
  .page-links,
  .post-edit-link,
  nav a[rel="next"],
  nav a[rel="prev"],
  nav.social,
  p.byline,
  .mobile-navigation-container {
    display: none !important;
  }

  /* line 33, ../watson/assets/sass/_print.scss */
  hr {
    margin: 0;
  }

  /* line 36, ../watson/assets/sass/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 39, ../watson/assets/sass/_print.scss */
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 43, ../watson/assets/sass/_print.scss */
  object:after {
    content: "View online to see this video.";
    display: block;
    margin-bottom: 12px;
    margin-bottom: 0.70588rem;
  }
}
/* _support.scss
 * Browser support
 * ------------------------------------------------------------------ */
/* line 6, ../watson/assets/sass/_support.scss */
.IE7 nav[role="navigation"], .IE8 nav[role="navigation"] {
  display: block;
}
/* line 9, ../watson/assets/sass/_support.scss */
.IE7 .dk_container, .IE8 .dk_container {
  display: none !important;
}

/* _support.scss
 * Infinite Scroll
 * ----------------------------------------------------- */
/**
 * Globally hidden elements when IS is supported and in use.
 */
/* line 21, ../watson/assets/sass/_support.scss */
.infinite-scroll nav.post-footer,
.infinite-scroll.neverending footer[role="contentinfo"] {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/**
 * When IS has reached its end we need to re-display elements that were hidden (via .neverending) before
 */
/* line 29, ../watson/assets/sass/_support.scss */
.infinity-end.neverending footer[role="contentinfo"] {
  display: block;
}

/**
 * Global style tweaks when IS is supported and in use
 */
/* line 36, ../watson/assets/sass/_support.scss */
.infinite-scroll .infinite-wrap,
.infinite-scroll .infinite-loader,
.infinite-scroll #infinite-handle {
  clear: both;
}

/* line 41, ../watson/assets/sass/_support.scss */
.infinite-scroll #infinite-footer .container {
  /* IS border */
  padding: 1px 0;
}

/**
 * Make sure that clicking Load more posts doesn't cause any jarringness.
 */
/* line 48, ../watson/assets/sass/_support.scss */
.infinite-scroll #infinite-handle {
  float: left;
  height: 60px;
}

/* line 52, ../watson/assets/sass/_support.scss */
.infinite-scroll #infinite-handle span {
  display: block;
  margin: 13px 0;
}

/* line 56, ../watson/assets/sass/_support.scss */
.infinite-scroll .infinite-loader {
  margin: 0 0 32px;
}

/* line 1, assets/sass/_common.scss */
.sub-menu {
  box-shadow: 0px 20px 46px 4px rgba(0, 0, 0, 0.2);
}

/* line 5, assets/sass/_common.scss */
.single-post .wp-socializer-buttons {
  display: none;
  max-width: none;
  margin-left: 116px !important;
}
@media screen and (min-width: 900px) {
  /* line 5, assets/sass/_common.scss */
  .single-post .wp-socializer-buttons {
    display: block;
  }
}
/* line 16, assets/sass/_common.scss */
.single-post .wp-socializer-buttons .wpsr-btn-fb-like .fb_iframe_widget {
  top: -6px;
}
/* line 20, assets/sass/_common.scss */
.single-post .wp-socializer-buttons .wpsr-btn-pin {
  width: 65px;
}
/* line 23, assets/sass/_common.scss */
.single-post .wp-socializer-buttons .wpsr-btn-tweet {
  width: 85px;
}
/* line 26, assets/sass/_common.scss */
.single-post .wp-socializer-buttons .wpsr-btn-g-plus {
  width: 70px;
}

/* line 37, assets/sass/_common.scss */
footer[role="contentinfo"] .footer-1 {
  float: none;
  margin: 0 auto;
  text-align: center;
}
/* line 42, assets/sass/_common.scss */
footer[role="contentinfo"] .footer-1 ul li {
  list-style-type: none;
  display: inline;
  padding: 0 20px;
}