@charset "UTF-8";
/* 
	Variables
	--------------------------------------------------------------------------------- */
/* Colors */
/* Typography */
/* 
	Mixins
	--------------------------------------------------------------------------------- */
/* 
	Example Uses of the Mixin, assuming $space is 15
		@include margin-space (2, -top);  margin-top: 30px;
		@include margin-space (4);  margin: 60px;
*/
/* 
	Image Versioning Functions: use these for all image references in SCSS.
	---------------------------------------------------------------------------------

	Want to use the asset folder path variable?
		background-image: path_url_ver("image.jpg"); 
		 = 
		background-image: url("/wp-content/themes/theme-name/assets/img/image.jpg?ver=1.0");

*/
@font-face {
  font-family: "Genericons";
  src: url("../fonts/genericons-regular-webfont.eot");
  src: url("../fonts/genericons-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/genericons-regular-webfont.woff") format("woff"), url("../fonts/genericons-regular-webfont.ttf") format("truetype"), url("../fonts/genericons-regular-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize 1.1.2 ==========================================================
 */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article,
aside,
.entry-content .wp-caption,
.comment-notes,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

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

[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

body {
  background: #fff;
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 0;
  border-top: 1px solid #ccc;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

img {
  vertical-align: middle;
}

/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #cd3700;
  text-decoration: none;
}

a:visited {
  color: #cd3700;
}

a:hover {
  color: #942E01;
}

a:focus {
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
body {
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
  font-style: normal;
}

h1, .entry-title, .excerpt .entry-title,
.homepage .entry-title, h2, h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments, h3, #social #reply-title, h2#comments, h3#comments.widget-title, h4, h5, .entry-header .sub-head, h6, .entry-meta {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
}

h1, .entry-title, .excerpt .entry-title,
.homepage .entry-title, .h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2, h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments, .h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3, #social #reply-title, h2#comments, h3#comments.widget-title, .h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4, .h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5, .entry-header .sub-head, .h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6, .entry-meta, .h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

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

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 1em 0;
}

pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
dl,
menu,
ol,
ul {
  margin: 18px 0;
}

dd {
  margin: 0 0 0 48px;
}

menu,
ol,
ul {
  padding: 0 0 0 48px;
}
menu ol,
menu ul,
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 6px 0;
}

ul li {
  list-style: square;
}

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

/* =============================================================================
   Embedded content
   ========================================================================== */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}

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

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

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

button, input {
  line-height: normal;
}

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

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

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

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

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

/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments, h3, #social #reply-title, h2#comments, h3#comments.widget-title {
    orphans: 3;
    widows: 3;
  }

  h2, h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments, h3, #social #reply-title, h2#comments, h3#comments.widget-title {
    page-break-after: avoid;
  }
}
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* 	Other Non-semantic Helpers
	------------------------------------------------------- */
.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/** WordPress compatibility styles
 -------------------------------------------------- */
.alignleft,
.alignright {
  margin-top: 4px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 15px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 15px;
}

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

/**
 * Captioned images
 * Caption shortcode filtered.
 */
.wp-caption {
  overflow: hidden;
}

.wp-caption dt {
  margin: 0;
}

.wp-caption img {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.wp-caption dd {
  font-size: .9em;
  padding: 2px 8px 3px 8px;
  margin: 1px 0 0 0;
}

.sticky {
  /* Add styles here if you wish to callout sticky posts */
}

/* --------------------------------------------------
 * Standard / Utility Classes
-------------------------------------------------- */
/* Pagination */
.pagination {
  min-height: 20px;
  margin: 30px 0;
}

.pagination .prev,
.pagination .next {
  /*	display: block;
  	line-height: 1.2em;
  	width: 48%;*/
}

.pagination .next {
  /*	float: right;
  	text-align: right;*/
}

/*	CSSGrid
 *  https://github.com/crowdfavorite/css-grid
 *	License: http://opensource.org/licenses/mit-license.php  */
/** grid foundation
 -------------------------------------------------- */
.grid {
  margin: 0 auto;
  /* this makes the page wide but keeps content away from the edge */
  padding: 12px 0;
  position: relative;
}

/* fluid media */
.row img,
.row object,
.row embed,
.row video {
  max-width: 100%;
  height: auto;
}

.c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12,
.c1-2, .c2-3, .c3-4, .c4-5, .c5-6, .c6-7, .c7-8, .c8-9, .c9-10, .c10-11, .c11-12,
.c1-3, .c2-4, .c3-5, .c4-6, .c5-7, .c6-8, .c7-9, .c8-10, .c9-11, .c10-12,
.c1-4, .c2-5, .c3-6, .c4-7, .c5-8, .c6-9, .c7-10, .c8-11, .c9-12,
.c1-5, .c2-6, .c3-7, .c4-8, .c5-9, .c6-10, .c7-11, .c8-12,
.c1-6, .c2-7, .c3-8, .c4-9, .c5-10, .c6-11, .c7-12,
.c1-7, .c2-8, .c3-9, .c4-10, .c5-11, .c6-12,
.c1-8, .c2-9, .c3-10, .c4-11, .c5-12,
.c1-9, .c2-10, .c3-11, .c4-12,
.c1-10, .c2-11, .c3-12,
.c1-11, .c2-12 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 	Default Desktop/Tablet Grid
	Works fine with older browsers that don't support media queries. */
.grid {
  width: 1000px;
  padding: 12px;
}

.c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12,
.c1-2, .c2-3, .c3-4, .c4-5, .c5-6, .c6-7, .c7-8, .c8-9, .c9-10, .c10-11, .c11-12,
.c1-3, .c2-4, .c3-5, .c4-6, .c5-7, .c6-8, .c7-9, .c8-10, .c9-11, .c10-12,
.c1-4, .c2-5, .c3-6, .c4-7, .c5-8, .c6-9, .c7-10, .c8-11, .c9-12,
.c1-5, .c2-6, .c3-7, .c4-8, .c5-9, .c6-10, .c7-11, .c8-12,
.c1-6, .c2-7, .c3-8, .c4-9, .c5-10, .c6-11, .c7-12,
.c1-7, .c2-8, .c3-9, .c4-10, .c5-11, .c6-12,
.c1-8, .c2-9, .c3-10, .c4-11, .c5-12,
.c1-9, .c2-10, .c3-11, .c4-12,
.c1-10, .c2-11, .c3-12,
.c1-11, .c2-12 {
  margin-left: 20px;
  display: inline;
  float: left;
  min-height: 1px;
}

/* 	1/12 */
.c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12 {
  width: 65px;
}

.offset1 {
  margin-left: 105px;
}

/* 	2/12 */
.c1-2, .c2-3, .c3-4, .c4-5, .c5-6, .c6-7, .c7-8, .c8-9, .c9-10, .c10-11, .c11-12 {
  width: 150px;
}

.offset2 {
  margin-left: 190px;
}

/* 	3/12 */
.c1-3, .c2-4, .c3-5, .c4-6, .c5-7, .c6-8, .c7-9, .c8-10, .c9-11, .c10-12 {
  width: 235px;
}

.offset3 {
  margin-left: 275px;
}

/* 	4/12 */
.c1-4, .c2-5, .c3-6, .c4-7, .c5-8, .c6-9, .c7-10, .c8-11, .c9-12 {
  width: 320px;
}

.offset4 {
  margin-left: 360px;
}

/* 	5/12 */
.c1-5, .c2-6, .c3-7, .c4-8, .c5-9, .c6-10, .c7-11, .c8-12 {
  width: 405px;
}

.offset5 {
  margin-left: 445px;
}

/* 	6/12 */
.c1-6, .c2-7, .c3-8, .c4-9, .c5-10, .c6-11, .c7-12 {
  width: 490px;
}

.offset6 {
  margin-left: 530px;
}

/* 	7/12 */
.c1-7, .c2-8, .c3-9, .c4-10, .c5-11, .c6-12 {
  width: 575px;
}

.offset7 {
  margin-left: 615px;
}

/* 	8/12 */
.c1-8, .c2-9, .c3-10, .c4-11, .c5-12 {
  width: 660px;
}

.offset8 {
  margin-left: 700px;
}

/* 	9/12 */
.c1-9, .c2-10, .c3-11, .c4-12 {
  width: 745px;
}

.offset9 {
  margin-left: 785px;
}

/* 	10/12 */
.c1-10, .c2-11, .c3-12 {
  width: 830px;
}

.offset10 {
  margin-left: 870px;
}

/* 	11/12 */
.c1-11, .c2-12 {
  width: 915px;
}

.offset11 {
  margin-left: 955px;
}

/* 	12/12 */
.c1-12 {
  width: 1000px;
}

/* Full-width  */
.c1-12 {
  clear: both;
  display: block;
  min-height: 1px;
  width: auto;
  margin-left: 20px;
}

/* 	Medium Sized Grid
	Tablet sized columns. */
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .grid {
    width: 700px;
    padding: 24px 0 24px 0;
  }

  .c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12,
  .c1-2, .c2-3, .c3-4, .c4-5, .c5-6, .c6-7, .c7-8, .c8-9, .c9-10, .c10-11, .c11-12,
  .c1-3, .c2-4, .c3-5, .c4-6, .c5-7, .c6-8, .c7-9, .c8-10, .c9-11, .c10-12,
  .c1-4, .c2-5, .c3-6, .c4-7, .c5-8, .c6-9, .c7-10, .c8-11, .c9-12,
  .c1-5, .c2-6, .c3-7, .c4-8, .c5-9, .c6-10, .c7-11, .c8-12,
  .c1-6, .c2-7, .c3-8, .c4-9, .c5-10, .c6-11, .c7-12,
  .c1-7, .c2-8, .c3-9, .c4-10, .c5-11, .c6-12,
  .c1-8, .c2-9, .c3-10, .c4-11, .c5-12,
  .c1-9, .c2-10, .c3-11, .c4-12,
  .c1-10, .c2-11, .c3-12,
  .c1-11, .c2-12 {
    display: inline;
    /* IE6/IE7 double-margin float bug fix */
    float: left;
    margin-left: 20px;
    /* Prevent collapsing of empty columns. Min-height prevents collapse
    everywhere but IE6. IE6 doesn't collapse empty collumns anyhow, so no need
    for a fix there. */
    min-height: 1px;
    clear: none;
  }

  /* 	1/12 */
  .c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12 {
    width: 40px;
  }

  .offset1 {
    margin-left: 80px;
  }

  /* 	2/12 */
  .c1-2, .c2-3, .c3-4, .c4-5, .c5-6, .c6-7, .c7-8, .c8-9, .c9-10, .c10-11, .c11-12 {
    width: 100px;
  }

  .offset2 {
    margin-left: 140px;
  }

  /* 	3/12 */
  .c1-3, .c2-4, .c3-5, .c4-6, .c5-7, .c6-8, .c7-9, .c8-10, .c9-11, .c10-12 {
    width: 160px;
  }

  .offset3 {
    margin-left: 200px;
  }

  /* 	4/12 */
  .c1-4, .c2-5, .c3-6, .c4-7, .c5-8, .c6-9, .c7-10, .c8-11, .c9-12 {
    width: 220px;
  }

  .offset4 {
    margin-left: 260px;
  }

  /* 	5/12 */
  .c1-5, .c2-6, .c3-7, .c4-8, .c5-9, .c6-10, .c7-11, .c8-12 {
    width: 280px;
  }

  .offset5 {
    margin-left: 320px;
  }

  /* 	6/12 */
  .c1-6, .c2-7, .c3-8, .c4-9, .c5-10, .c6-11, .c7-12 {
    width: 340px;
  }

  .offset6 {
    margin-left: 380px;
  }

  /* 	7/12 */
  .c1-7, .c2-8, .c3-9, .c4-10, .c5-11, .c6-12 {
    width: 400px;
  }

  .offset7 {
    margin-left: 440px;
  }

  /* 	8/12 */
  .c1-8, .c2-9, .c3-10, .c4-11, .c5-12 {
    width: 460px;
  }

  .offset8 {
    margin-left: 500px;
  }

  /* 	9/12 */
  .c1-9, .c2-10, .c3-11, .c4-12 {
    width: 520px;
  }

  .offset9 {
    margin-left: 560px;
  }

  /* 	10/12 */
  .c1-10, .c2-11, .c3-12 {
    width: 580px;
  }

  .offset10 {
    margin-left: 620px;
  }

  /* 	11/12 */
  .c1-11, .c2-12 {
    width: 640px;
  }

  .offset11 {
    margin-left: 680px;
  }

  /* 	12/12 */
  .c1-12 {
    width: 700px;
  }
}
/* 	Accounts for extra margin on first column
	This value should change a negative margin of whatever your gutter width is. */
.row {
  clear: both;
  margin-left: -20px;
}

/* 	Single-column mobile
	Get rid of widths and floats, go to fluid single column. */
@media only screen and (max-width: 759px) {
  .grid,
  .c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12,
  .c1-2, .c2-3, .c3-4, .c4-5, .c5-6, .c6-7, .c7-8, .c8-9, .c9-10, .c10-11, .c11-12,
  .c1-3, .c2-4, .c3-5, .c4-6, .c5-7, .c6-8, .c7-9, .c8-10, .c9-11, .c10-12,
  .c1-4, .c2-5, .c3-6, .c4-7, .c5-8, .c6-9, .c7-10, .c8-11, .c9-12,
  .c1-5, .c2-6, .c3-7, .c4-8, .c5-9, .c6-10, .c7-11, .c8-12,
  .c1-6, .c2-7, .c3-8, .c4-9, .c5-10, .c6-11, .c7-12,
  .c1-7, .c2-8, .c3-9, .c4-10, .c5-11, .c6-12,
  .c1-8, .c2-9, .c3-10, .c4-11, .c5-12,
  .c1-9, .c2-10, .c3-11, .c4-12,
  .c1-10, .c2-11, .c3-12,
  .c1-11, .c2-12,
  .c1-12 {
    display: block;
    float: none;
    margin-left: 0;
    width: auto;
  }

  .row {
    margin-left: 0;
  }

  .grid {
    margin: 0 auto;
    padding: 0 18px;
  }
}
/** grid utilities
 -------------------------------------------------- */
/* Row offsetfix
Uses variation of Nicolas Gallagher's Micro offsetfix.
http://nicolasgallagher.com/micro-offsetfix-hack/ */
.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

.row {
  /* Just in case: make sure that rows offset outside floats. */
  clear: both;
  /* For IE 6/7 (trigger hasLayout) */
  zoom: 1;
}

/** logoless
 -------------------------------------------------- */
.logoless {
  background: #f2f3f3;
  border-top: 9px solid #323232;
  border-bottom: 1px solid #e5e7e7;
  height: 50px;
  margin-bottom: 96px;
  position: relative;
}
.logoless .grid {
  padding: 0;
}
.logoless a,
.logoless a:visited {
  color: #474747;
}
.logoless a:hover {
  color: #cd3700;
}
.logoless #site-name {
  display: inline-block;
  font-size: 21px;
  text-shadow: none;
  text-transform: lowercase;
  font-weight: 600;
  font-size: 19px;
  margin-left: 10px;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  letter-spacing: normal;
  position: absolute;
  z-index: 10;
  top: 10px;
}
@media (min-width: 760px) {
  .logoless #site-name {
    display: inline-block;
    margin-right: 350px;
    top: 5px;
  }
}
@media (min-width: 1023px) {
  .logoless #site-name {
    top: auto;
    font-size: 21px;
  }
}
.logoless #site-name i {
  color: #cd3700;
}
.logoless nav,
.logoless nav ul,
.logoless nav ul li,
.logoless nav ul li a {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
}
@media (min-width: 760px) {
  .logoless nav,
  .logoless nav ul,
  .logoless nav ul li,
  .logoless nav ul li a {
    display: inline;
    font-size: 14px;
  }
}
@media (min-width: 1023px) {
  .logoless nav,
  .logoless nav ul,
  .logoless nav ul li,
  .logoless nav ul li a {
    font-size: 16px;
  }
}
.logoless #nav {
  /*	right: 120px;*/
}
.logoless #nav a {
  padding-left: 15px;
}
@media (min-width: 760px) {
  .logoless nav.nav-top-left {
    margin-left: 10px;
    visibility: visible;
  }
}
@media (min-width: 760px) {
  .logoless nav.nav-top-right {
    margin-right: -10px;
    visibility: visible;
  }
}
.logoless .logo-container {
  display: none;
  background: #cd3700;
  border-bottom: 3px solid #942E01;
  height: 72px;
  top: 0px;
  left: 20px;
  position: absolute;
  width: 100px;
  z-index: 3;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.logoless .logo-container:hover {
  background: #b33000;
  border-color: #7b2601;
}
@media (min-width: 760px) {
  .logoless .logo-container {
    left: auto;
    right: -10px;
    left: auto;
  }
}
.logoless .logo {
  background: url(../images/logo.png);
  background-size: 60px 49px;
  height: 49px;
  margin: 10px auto 0;
  width: 60px;
}

/** logo center
 -------------------------------------------------- */
.logo-center {
  background: #f2f3f3;
  border-top: 9px solid #323232;
  border-bottom: 1px solid #e5e7e7;
  height: 50px;
  margin-bottom: 96px;
  position: relative;
}
.logo-center .grid {
  padding: 0;
}
.logo-center a,
.logo-center a:visited {
  color: #474747;
}
.logo-center a:hover {
  color: #cd3700;
}
.logo-center #site-name {
  display: inline-block;
  font-size: 21px;
  text-shadow: none;
  text-transform: lowercase;
  font-weight: 600;
  font-size: 19px;
  margin-left: 10px;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  letter-spacing: normal;
  position: absolute;
  z-index: 10;
  top: 10px;
}
@media (min-width: 760px) {
  .logo-center #site-name {
    display: inline-block;
    margin-right: 350px;
    top: 5px;
  }
}
@media (min-width: 1023px) {
  .logo-center #site-name {
    top: auto;
    font-size: 21px;
  }
}
.logo-center nav,
.logo-center nav ul,
.logo-center nav ul li,
.logo-center nav ul li a {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
}
@media (min-width: 760px) {
  .logo-center nav,
  .logo-center nav ul,
  .logo-center nav ul li,
  .logo-center nav ul li a {
    display: inline;
    font-size: 12px;
  }
}
@media (min-width: 1023px) {
  .logo-center nav,
  .logo-center nav ul,
  .logo-center nav ul li,
  .logo-center nav ul li a {
    font-size: 16px;
  }
}
.logo-center #nav {
  /*	right: 120px;*/
}
.logo-center #nav a {
  padding-left: 15px;
}
@media (min-width: 760px) {
  .logo-center nav.nav-top-left {
    margin-left: 10px;
    visibility: visible;
  }
}
@media (min-width: 760px) {
  .logo-center nav.nav-top-right {
    margin-right: -10px;
    visibility: visible;
  }
}
.logo-center .logo-container {
  background: #cd3700;
  border-bottom: 3px solid #942E01;
  display: none;
  height: 72px;
  top: 0px;
  left: 20px;
  position: absolute;
  width: 100px;
  z-index: 3;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.logo-center .logo-container:hover {
  background: #b33000;
  border-color: #7b2601;
}
@media (min-width: 760px) {
  .logo-center .logo-container {
    display: block;
    left: 310px;
  }
}
@media (min-width: 1023px) {
  .logo-center .logo-container {
    left: 460px;
  }
}
.logo-center .logo {
  background: url(../images/logo.png);
  background-size: 60px 49px;
  height: 49px;
  margin: 10px auto 0;
  width: 60px;
}

/** logo right 
 -------------------------------------------------- */
.logo-right {
  background: #f2f3f3;
  border-top: 9px solid #323232;
  border-bottom: 1px solid #e5e7e7;
  height: 50px;
  margin-bottom: 96px;
  position: relative;
}
.logo-right .grid {
  padding: 0;
}
.logo-right a,
.logo-right a:visited {
  color: #474747;
}
.logo-right a:hover {
  color: #cd3700;
}
.logo-right #site-name {
  display: inline-block;
  font-size: 21px;
  text-shadow: none;
  text-transform: lowercase;
  font-weight: 600;
  font-size: 19px;
  margin-left: 10px;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  letter-spacing: normal;
  position: absolute;
  z-index: 10;
  top: 10px;
}
@media (min-width: 760px) {
  .logo-right #site-name {
    display: inline-block;
    margin-right: 350px;
    top: 5px;
  }
}
@media (min-width: 1023px) {
  .logo-right #site-name {
    top: auto;
    font-size: 21px;
  }
}
.logo-right nav,
.logo-right nav ul,
.logo-right nav ul li,
.logo-right nav ul li a {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
}
@media (min-width: 760px) {
  .logo-right nav,
  .logo-right nav ul,
  .logo-right nav ul li,
  .logo-right nav ul li a {
    display: inline;
    font-size: 14px;
  }
}
@media (min-width: 1023px) {
  .logo-right nav,
  .logo-right nav ul,
  .logo-right nav ul li,
  .logo-right nav ul li a {
    font-size: 16px;
  }
}
.logo-right #nav {
  right: 120px;
}
.logo-right #nav a {
  padding-left: 15px;
}
@media (min-width: 760px) {
  .logo-right nav.nav-top-left {
    margin-left: 10px;
    visibility: visible;
  }
}
@media (min-width: 760px) {
  .logo-right nav.nav-top-right {
    margin-right: -10px;
    visibility: visible;
  }
}
.logo-right .logo-container {
  background: #cd3700;
  border-bottom: 3px solid #942E01;
  display: none;
  height: 72px;
  top: 0px;
  left: 20px;
  position: absolute;
  width: 100px;
  z-index: 3;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.logo-right .logo-container:hover {
  background: #b33000;
  border-color: #7b2601;
}
@media (min-width: 760px) {
  .logo-right .logo-container {
    display: block;
    left: auto;
    right: -10px;
  }
}
.logo-right .logo {
  background: url(../images/logo.png);
  background-size: 60px 49px;
  height: 49px;
  margin: 10px auto 0;
  width: 60px;
}

/** logo left 
 -------------------------------------------------- */
.logo-left {
  background: #f2f3f3;
  border-top: 9px solid #323232;
  border-bottom: 1px solid #e5e7e7;
  height: 50px;
  margin-bottom: 96px;
  position: relative;
}
.logo-left .grid {
  padding: 0;
}
.logo-left a,
.logo-left a:visited {
  color: #474747;
}
.logo-left a:hover {
  color: #cd3700;
}
.logo-left #site-name {
  display: none;
}
.logo-left nav,
.logo-left nav ul,
.logo-left nav ul li,
.logo-left nav ul li a {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
}
@media (min-width: 760px) {
  .logo-left nav,
  .logo-left nav ul,
  .logo-left nav ul li,
  .logo-left nav ul li a {
    display: inline;
    font-size: 14px;
  }
}
@media (min-width: 1023px) {
  .logo-left nav,
  .logo-left nav ul,
  .logo-left nav ul li,
  .logo-left nav ul li a {
    font-size: 16px;
  }
}
.logo-left #nav {
  right: 0;
}
.logo-left #nav a {
  padding-left: 24px;
}
@media (min-width: 760px) {
  .logo-left nav.nav-top-left {
    margin-left: 10px;
    visibility: visible;
  }
}
@media (min-width: 760px) {
  .logo-left nav.nav-top-right {
    margin-right: -10px;
    visibility: visible;
  }
}
.logo-left .logo-container {
  background: #cd3700;
  border-bottom: 3px solid #942E01;
  height: 72px;
  top: 0px;
  left: 20px;
  position: absolute;
  width: 100px;
  z-index: 3;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.logo-left .logo-container:hover {
  background: #b33000;
  border-color: #7b2601;
}
@media (min-width: 760px) {
  .logo-left .logo-container {
    display: block;
    right: auto;
    left: -5px;
  }
}
.logo-left .logo {
  background: url(../images/logo.png);
  background-size: 60px 49px;
  height: 49px;
  margin: 10px auto 0;
  width: 60px;
}

/** logo center nameless
 -------------------------------------------------- */
.logo-center-nameless {
  background: #f2f3f3;
  border-top: 9px solid #323232;
  border-bottom: 1px solid #e5e7e7;
  height: 50px;
  margin-bottom: 96px;
  position: relative;
}
.logo-center-nameless .grid {
  padding: 0;
}
.logo-center-nameless a,
.logo-center-nameless a:visited {
  color: #474747;
}
.logo-center-nameless a:hover {
  color: #cd3700;
}
.logo-center-nameless #site-name {
  display: none;
  font-size: 21px;
  text-shadow: none;
  text-transform: lowercase;
  font-weight: 600;
  font-size: 19px;
  margin-left: 10px;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  letter-spacing: normal;
  position: absolute;
  z-index: 10;
  top: 10px;
}
@media (min-width: 760px) {
  .logo-center-nameless #site-name {
    display: none;
    margin-right: 350px;
    top: 5px;
  }
}
@media (min-width: 1023px) {
  .logo-center-nameless #site-name {
    top: auto;
    font-size: 21px;
  }
}
.logo-center-nameless nav,
.logo-center-nameless nav ul,
.logo-center-nameless nav ul li,
.logo-center-nameless nav ul li a {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
}
@media (min-width: 760px) {
  .logo-center-nameless nav,
  .logo-center-nameless nav ul,
  .logo-center-nameless nav ul li,
  .logo-center-nameless nav ul li a {
    display: inline;
    font-size: 14px;
  }
}
@media (min-width: 1023px) {
  .logo-center-nameless nav,
  .logo-center-nameless nav ul,
  .logo-center-nameless nav ul li,
  .logo-center-nameless nav ul li a {
    font-size: 16px;
  }
}
.logo-center-nameless #nav a {
  padding-left: 15px;
}
@media (min-width: 760px) {
  .logo-center-nameless nav.nav-top-left {
    margin-left: 10px;
    visibility: visible;
    float: left;
  }
}
@media (min-width: 760px) {
  .logo-center-nameless nav.nav-top-right {
    margin-right: -10px;
    visibility: visible;
  }
}
.logo-center-nameless .logo-container {
  background: #cd3700;
  border-bottom: 3px solid #942E01;
  height: 72px;
  top: 0px;
  left: 20px;
  position: absolute;
  width: 100px;
  z-index: 3;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.logo-center-nameless .logo-container:hover {
  background: #b33000;
  border-color: #7b2601;
}
@media (min-width: 760px) {
  .logo-center-nameless .logo-container {
    display: block;
    left: 310px;
  }
}
@media (min-width: 1023px) {
  .logo-center-nameless .logo-container {
    left: 460px;
  }
}
.logo-center-nameless .logo {
  background: url(../images/logo.png);
  background-size: 60px 49px;
  height: 49px;
  margin: 10px auto 0;
  width: 60px;
}

#nav {
  position: relative;
  text-align: right;
  top: 51px;
  z-index: 1;
}
#nav ul {
  background: #d8dada;
}
#nav li {
  border-bottom: 1px solid #cbcece;
}
#nav li a {
  display: block;
  padding-right: 20px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#nav li a:hover {
  background: #323232;
  color: #fff;
}
@media (min-width: 760px) {
  #nav {
    background: none;
    position: relative;
    top: auto;
  }
  #nav ul {
    background: none;
  }
  #nav li {
    border: none;
  }
  #nav li a {
    display: inline-block;
    padding-right: 0;
  }
  #nav li a:hover {
    background: none;
    color: #cd3700;
  }
}

#nav.closed {
  display: none;
}
@media (min-width: 760px) {
  #nav.closed {
    display: block;
  }
  #nav.closed ul {
    background: none;
  }
}

#nav-toggle {
  color: #7e7e7e;
  font-family: "Genericons";
  font-size: 24px;
  float: right;
  position: absolute;
  right: 18px;
  top: 12px;
}
@media (min-width: 760px) {
  #nav-toggle {
    display: none;
  }
}

.footer-area {
  background: #f2f3f3;
  border-top: 1px solid #e5e7e7;
  margin-top: 29px;
  padding: 29px 0;
}
.footer-area .linked-list {
  font-size: 15px;
}

[class*=linked-list-] {
  margin: 0;
  padding: 0;
}
[class*=linked-list-] li {
  list-style: none;
}

.footer-area .div-wrapper .cf-col {
  float: left;
  width: 50%;
}
.footer-area .div-wrapper .cf-col-2 {
  clear: right;
}

.linked-list-categories {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-transform: lowercase;
}

footer .developer {
  display: block;
  float: none;
  text-align: left;
}
@media (min-width: 760px) {
  footer .developer {
    display: inline-block;
    left: auto;
    position: absolute;
    right: 0;
    text-align: right;
  }
}

footer .copyright {
  display: block;
  float: none;
  text-align: left;
}
@media (min-width: 760px) {
  footer .copyright {
    display: inline-block;
    left: 0;
    position: absolute;
    right: auto;
    text-align: left;
  }
}

.instagrams {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
}
.instagrams li {
  display: inline-block;
  height: 140px;
  margin-bottom: 15px;
  margin-right: 15px;
  width: 140px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.instagrams li:nth-of-type(2n) {
  margin-right: 0;
}
.instagrams li:nth-of-type(3n) {
  display: none;
}
.instagrams li:hover, .instagrams li:focus {
  outline: 2px solid #cbcece;
  outline-offset: 1px;
}
@media (min-width: 760px) {
  .instagrams li {
    height: 120px;
    margin: 0;
    width: 120px;
  }
  .instagrams li img {
    height: 120px;
  }
  .instagrams li:nth-of-type(2n) {
    margin: 0 20px;
  }
  .instagrams li:nth-of-type(3n) {
    display: inline-block;
  }
}
@media (min-width: 1023px) {
  .instagrams li {
    height: 177px;
    margin: 0;
    width: 177px;
  }
  .instagrams li img {
    height: 177px;
  }
  .instagrams li:nth-of-type(2n) {
    margin: 0 22px;
  }
}

.pinterest_rss_widget {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  margin-bottom: 30px;
  margin-top: 0;
  position: relative;
}
.pinterest_rss_widget h3.widget-title, .pinterest_rss_widget #social .widget-title#reply-title, #social .pinterest_rss_widget .widget-title#reply-title, .pinterest_rss_widget h2.widget-title#comments, .pinterest_rss_widget h3.widget-title#comments {
  display: none;
}
.pinterest_rss_widget ul {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 3px;
  width: 100%;
}
.pinterest_rss_widget li.pins-feed-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
  display: inline-block;
  float: none;
  height: 140px !important;
  margin-bottom: 3px;
  margin-right: 10px;
  width: 140px !important;
}
.pinterest_rss_widget li.pins-feed-item .nailthumb-container {
  height: 140px !important;
  width: 140px !important;
}
.pinterest_rss_widget li.pins-feed-item:nth-of-type(3n) {
  display: none;
}
.pinterest_rss_widget li.pins-feed-item:hover, .pinterest_rss_widget li.pins-feed-item:focus {
  outline: 2px solid #cbcece;
  outline-offset: 1px;
}
@media (min-width: 760px) {
  .pinterest_rss_widget li.pins-feed-item {
    height: 120px !important;
    margin: 0;
    overflow: hidden;
    width: 120px !important;
  }
  .pinterest_rss_widget li.pins-feed-item:nth-of-type(2n) {
    margin: 0 20px;
  }
  .pinterest_rss_widget li.pins-feed-item:nth-of-type(3n) {
    display: inline-block;
  }
  .pinterest_rss_widget li.pins-feed-item img {
    height: auto !important;
    min-width: 120px !important;
  }
  .pinterest_rss_widget li.pins-feed-item .nailthumb-container {
    height: 120px !important;
    width: 120px !important;
  }
}
@media (min-width: 1023px) {
  .pinterest_rss_widget li.pins-feed-item {
    height: 177px !important;
    margin: 0 0 0 0;
    width: 177px !important;
  }
  .pinterest_rss_widget li.pins-feed-item:nth-of-type(2n) {
    margin: 0 22px;
  }
  .pinterest_rss_widget li.pins-feed-item .nailthumb-container {
    height: 177px !important;
    width: 177px !important;
  }
}

.site-footer {
  background: #323232;
  color: #7e7e7e;
  font-size: 12px;
  padding-bottom: 23px;
  padding-top: 15px;
  text-align: left;
  width: 100%;
}
.site-footer a {
  color: #cbcece;
}
@media (min-width: 760px) {
  .site-footer {
    padding-top: 0;
  }
}

#footer-3 {
  font-size: 12px;
  line-height: 17px;
  margin-top: 35px;
}
@media (min-width: 760px) {
  #footer-3 {
    margin-top: 0;
  }
}
@media (min-width: 1023px) {
  #footer-3 {
    font-size: 15px;
    line-height: 21px;
  }
}
#footer-3 h3:nth-of-type(2n), #footer-3 #social #reply-title:nth-of-type(2n), #social #footer-3 #reply-title:nth-of-type(2n), #footer-3 h2#comments:nth-of-type(2n) {
  margin-top: 30px;
}

#twitter-widget-0 {
  margin-bottom: 17px;
}
@media (min-width: 760px) {
  #twitter-widget-0 {
    margin-bottom: 0;
  }
}

.text-mobile {
  display: inline-block;
}
@media (min-width: 760px) {
  .text-mobile {
    display: none;
  }
}

.text-mobile-hide {
  display: none;
}
@media (min-width: 760px) {
  .text-mobile-hide {
    display: inline-block;
  }
}

/* 	Content - Posts, Pages, Comments
	------------------------------------------------------- */
body {
  /*	background: #fcfcfc;*/
  color: #474747;
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
  text-rendering: optimizeLegibility;
}
@media (min-width: 760px) {
  body {
    font-size: 13px;
    line-height: 23px;
  }
}
@media (min-width: 1023px) {
  body {
    font-size: 17px;
    line-height: 29px;
  }
}

h1, .entry-title, .excerpt .entry-title,
.homepage .entry-title,
.h1 {
  color: #474747;
  font-family: "Sentinel A", "Sentinel B";
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  /*	@include text-shadow;*/
}
@media (min-width: 760px) {
  h1, .entry-title, .excerpt .entry-title,
  .homepage .entry-title,
  .h1 {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (min-width: 1023px) {
  h1, .entry-title, .excerpt .entry-title,
  .homepage .entry-title,
  .h1 {
    font-size: 48px;
    line-height: 48px;
  }
}
h1.archive-title, .archive-title.entry-title,
.h1.archive-title {
  font-size: 30px;
  line-height: 30px;
  display: block;
  color: #7e7e7e;
  margin-bottom: 23px;
}
h1.archive-title span, .archive-title.entry-title span,
.h1.archive-title span {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  text-transform: lowercase;
  font-size: 23px;
  font-weight: 500;
  color: #df4908;
}

h2, h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments,
.h2 {
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 1023px) {
  h2, h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments,
  .h2 {
    font-size: 18px;
  }
}

h3, #social #reply-title, h2#comments, h3#comments.widget-title,
.h3 {
  color: #474747;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 1023px) {
  h3, #social #reply-title, h2#comments, h3#comments.widget-title,
  .h3 {
    font-size: 14px;
  }
}

h4,
.h4 {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 1023px) {
  h4,
  .h4 {
    font-size: 13px;
  }
}

h5, .entry-header .sub-head,
.h5 {
  color: #7e7e7e;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-transform: lowercase;
}
@media (min-width: 1023px) {
  h5, .entry-header .sub-head,
  .h5 {
    font-size: 18px;
    line-height: 18px;
  }
}

h6, .entry-meta,
.h6 {
  color: #cbcece;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: lowercase;
}

time, .entry-date {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-transform: lowercase;
  color: #7e7e7e;
}

aside, .entry-content .wp-caption, .comment-notes {
  font-size: 12px;
  line-height: 17px;
}
@media (min-width: 1023px) {
  aside, .entry-content .wp-caption, .comment-notes {
    font-size: 15px;
    line-height: 21px;
  }
}

blockquote {
  border-left: 1px solid rgba(223, 73, 8, 0.75);
  font-style: italic;
  margin: 0 0 0 1px;
  padding-left: 28px;
}

::selection {
  background: #F2F3F3;
}

::-moz-selection {
  background: #F2F3F3;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

body {
  -webkit-tap-highlight-color: #cd3700;
}

/* 	Default Posts Styles
	------------------------------------------------------- */
.entry-header .sub-head {
  margin-bottom: 5px;
  margin-top: 0;
  position: relative;
  text-rendering: optimizeLegibility;
}
.entry-header .sub-head .cat {
  display: block;
  margin-bottom: 5px;
}
@media (min-width: 760px) {
  .entry-header .sub-head .cat {
    display: block;
    left: -160px;
    padding-right: 20px;
    position: absolute;
    text-align: right;
    top: 0;
    width: 140px;
  }
}

.entry-title a,
.entry-title a:visited,
.entry-title a:active {
  color: #474747;
}
.entry-title a:hover {
  color: #7e7e7e;
}

.format-link .entry-title a {
  font-size: 30px;
  line-height: 30px;
}
@media (min-width: 760px) {
  .format-link .entry-title a {
    font-size: 36px;
    line-height: 36px;
  }
}
.format-link .entry-title a:after {
  content: "";
  font-family: "Ideal Sans SSm Symbol A", "Ideal Sans SSm Symbol B";
  font-size: 36px;
  color: #cbcece;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 36px;
  text-align: center;
  font-weight: 600;
  position: relative;
  left: 13px;
  top: 0px;
}
.format-link.excerpt .entry-title a {
  font-size: 26px;
  line-height: 26px;
}
.format-link.excerpt .entry-title a:after {
  font-size: 25px;
  line-height: 25px;
  top: 0;
}
.format-link.excerpt .entry-content {
  font-size: 12px;
  line-height: 17px;
}
@media (min-width: 1023px) {
  .format-link.excerpt .entry-content {
    font-size: 15px;
    line-height: 21px;
  }
}

.entry-date {
  padding-right: 5px;
}

.entry-content {
  padding-bottom: 20px;
}
.entry-content a,
.entry-content a:visited {
  border-bottom: 1px dotted #cbcece;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.entry-content a:hover {
  border-color: #cd3700;
}
.entry-content p strong,
.entry-content p b {
  font-weight: 500;
}
.entry-content .wp-caption {
  background: rgba(203, 206, 206, 0.25);
  width: 100%;
}
.entry-content .wp-caption p {
  padding: 15px 9px;
  margin: 0;
  font-style: italic;
}
.entry-content .wp-caption img,
.entry-content img {
  max-width: 100%;
}

.leaflet {
  background: url(../svg/leaf.svg);
  background-size: 50px 25px;
  height: 25px;
  margin: 0 auto;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  tranform: rotate(-20deg);
  width: 50px;
}

.dice {
  background: url(../images/dice.png) center center no-repeat;
  background-size: 80px 40px;
  height: 40px;
  margin: 15px auto 0;
  width: 80px;
}
@media (max-width: 1022px) {
  .dice {
    background-size: 60px 30px;
    height: 30px;
    width: 60px;
  }
}

.entry-meta {
  text-align: center;
}
.entry-meta time, .entry-meta .entry-date,
.entry-meta .edit-link {
  margin-left: 7px;
}

#comments {
  color: #474747;
  padding-top: 20px;
}

.excerpt,
.homepage {
  margin-bottom: 29px;
}
.excerpt .entry-title,
.homepage .entry-title {
  font-size: 30px;
  line-height: 30px;
}
.excerpt .entry-title a:hover,
.homepage .entry-title a:hover {
  color: #cd3700;
}
@media (min-width: 760px) {
  .excerpt .entry-title,
  .homepage .entry-title {
    font-size: 36px;
    line-height: 36px;
  }
}
.excerpt .entry-content,
.homepage .entry-content {
  font-size: 13px;
  line-height: 23px;
  padding-bottom: 0;
}
@media (min-width: 1023px) {
  .excerpt .entry-content,
  .homepage .entry-content {
    font-size: 16px;
    line-height: 25px;
  }
}
.excerpt .entry-meta,
.homepage .entry-meta {
  margin: -7px 0 0;
  text-align: left;
}
.excerpt .entry-meta time.entry-date, .excerpt .entry-meta .entry-date,
.homepage .entry-meta time.entry-date,
.homepage .entry-meta .entry-date {
  font-size: 12px;
}
.excerpt .entry-meta a[rel*="category"],
.homepage .entry-meta a[rel*="category"] {
  margin-left: 6px;
}
.excerpt .entry-meta a[href*="#comments"],
.excerpt .entry-meta a[href*="#respond"],
.homepage .entry-meta a[href*="#comments"],
.homepage .entry-meta a[href*="#respond"] {
  margin-left: 8px;
}
@media (min-width: 760px) {
  .excerpt .entry-meta a[rel*="category"],
  .homepage .entry-meta a[rel*="category"] {
    margin-left: 10px;
  }
  .excerpt .entry-meta a[href*="#comments"],
  .excerpt .entry-meta a[href*="#respond"],
  .homepage .entry-meta a[href*="#comments"],
  .homepage .entry-meta a[href*="#respond"] {
    margin-left: 12px;
  }
}

.excerpt {
  margin-bottom: 49px;
}

.read-more {
  color: #7e7e7e;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: lowercase;
}
.read-more:visited {
  color: #7e7e7e;
}
.read-more:hover {
  color: #cd3700;
}

.entry-content .read-more {
  border-bottom-style: none;
}

/** Attachment Page
 -------------------------------------------------- */
/** WP Gallery
 -------------------------------------------------- */
/* 	Home Archives
	------------------------------------------------------- */
h3.widget-title, #social .widget-title#reply-title, h2.widget-title#comments, h3.widget-title#comments {
  color: #cbcece;
  font-size: 13px;
}

.home-featured {
  margin-bottom: 29px;
}
.home-featured h3.widget-title, .home-featured #social .widget-title#reply-title, #social .home-featured .widget-title#reply-title, .home-featured h2.widget-title#comments, .home-featured h3.widget-title#comments {
  margin-top: 58px;
}
.home-featured ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-featured ul li {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  margin-top: 0px;
  margin-bottom: 15px;
}
.home-featured ul li a {
  color: #323232;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.home-featured ul li a:hover {
  color: #cd3700;
}

.home-archives h2, .home-archives h3.widget-title, .home-archives #social .widget-title#reply-title, #social .home-archives .widget-title#reply-title, .home-archives h2.widget-title#comments {
  color: #cbcece;
  margin-top: 58px;
}
@media (min-width: 760px) {
  .home-archives h2, .home-archives h3.widget-title, .home-archives #social .widget-title#reply-title, #social .home-archives .widget-title#reply-title, .home-archives h2.widget-title#comments {
    margin-left: -60px;
    margin-bottom: -23px;
  }
}
@media (min-width: 1023px) {
  .home-archives h2, .home-archives h3.widget-title, .home-archives #social .widget-title#reply-title, #social .home-archives .widget-title#reply-title, .home-archives h2.widget-title#comments {
    margin-left: -85px;
    margin-bottom: -29px;
  }
}
.home-archives ul {
  margin: 0;
  padding: 0;
}
.home-archives ul li {
  list-style: none;
  font-size: 13px;
  margin-bottom: 15px;
}
.home-archives a {
  color: #323232;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.home-archives a[rel*="category"] {
  color: rgba(205, 55, 0, 0.75);
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  margin-left: 5px;
  text-transform: lowercase;
}
.home-archives a:hover {
  color: #cd3700;
}
.home-archives .title {
  display: block;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 0px;
  padding-top: 0;
}
@media (min-width: 1023px) {
  .home-archives .title {
    margin-top: -7px;
    font-size: 18px;
  }
}
.home-archives .cat {
  color: #cd3700;
}

/* 	Buttons
	------------------------------------------------------- */
button {
  background: #cd3700;
  border: none;
  height: 43px;
  width: 100%;
  box-shadow: inset 0px -3px 0px #942E01;
}
button a {
  color: #fff;
  display: block;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
}
button a:hover {
  color: #fff;
}

/* 	Pagination
	------------------------------------------------------- */
.related h3, .related #social #reply-title, #social .related #reply-title, .related h2#comments, .related h3#comments.widget-title {
  color: #7e7e7e;
  margin-bottom: 1px;
  margin-top: 19px;
  font-weight: 300;
  font-size: 13px;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  letter-spacing: normal;
  text-transform: lowercase;
}
.related ul {
  margin: 0;
  padding: 0;
}
.related li {
  list-style: none;
  margin-bottom: 7px;
}
.related li a {
  color: #474747;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.related li a:hover {
  color: #cd3700;
}

.pagination .next,
.pagination .previous {
  display: block;
  margin-top: -12px;
  width: 100%;
  text-align: right;
}
.pagination .next a,
.pagination .previous a {
  color: #474747;
  display: block;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  padding-bottom: 27px;
  text-transform: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.pagination .next a:hover,
.pagination .previous a:hover {
  color: #cd3700;
}
@media (min-width: 760px) {
  .pagination .next a,
  .pagination .previous a {
    font-size: 12px;
    line-height: 17px;
  }
}
@media (min-width: 1023px) {
  .pagination .next a,
  .pagination .previous a {
    font-size: 15px;
    line-height: 21px;
  }
}
.pagination .next .label,
.pagination .previous .label {
  color: #7e7e7e;
  display: block;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  text-transform: lowercase;
}

.pagination-posts span {
  content: "";
  font-family: "Ideal Sans SSm Symbol A", "Ideal Sans SSm Symbol B";
  font-size: 15px;
  color: #cbcece;
  display: inline-block;
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}
@media (min-width: 760px) {
  .pagination-posts span {
    margin-right: -33px;
    top: 0px;
  }
}
@media (min-width: 1023px) {
  .pagination-posts span {
    top: -1px;
  }
}

/* 	Searchbar
	------------------------------------------------------- */
.searchform {
  background: #e5e7e7;
  box-sizing: border-box;
  margin-top: 29px;
  opacity: 0.5;
  padding: 15px;
  width: auto;
}
.searchform input {
  box-shadow: 0;
  box-sizing: border-box;
  border: 1px solid #cbcece;
  border-width: 0 1px 1px 0;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  line-height: 29px;
  outline: 0;
  padding: 5px;
  width: 98.9%;
}
@media (max-width: 1022px) {
  .searchform input {
    width: 98.3%;
  }
}
@media (max-width: 480px) {
  .searchform input {
    width: 96.5%;
  }
}
.searchform .searchsubmit {
  display: none;
}

sup {
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
}
sup a {
  border-color: #fff !important;
}

a[rev="footnote"] {
  border: none;
  color: #942E01;
  font-size: 14px;
}

.footnotes {
  border-top: 1px dotted #cbcece;
}
.footnotes hr {
  display: none;
}
.footnotes li {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 15px;
}
@media (min-width: 1023px) {
  .footnotes li {
    font-size: 15px;
    line-height: 21px;
  }
}

code {
  background: #f8f8f8;
  display: inline-block;
  font-family: "Andale Mono", AndaleMono, monospace;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

pre code {
  padding: 13px;
  width: 100%;
  font-size: 13px;
  line-height: 19px;
}
@media (min-width: 760px) {
  pre code {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (min-width: 1023px) {
  pre code {
    font-size: 15px;
    line-height: 21px;
  }
}

p code {
  padding: 0px 5px;
  width: auto;
}

table {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px;
  line-height: 15px;
  margin: 18px 0;
  text-align: left;
}
table tr td:first-of-type {
  /*		border-right: 1px solid $gray;*/
}
table td {
  padding: 10px;
  vertical-align: top;
}
table th {
  background: #fff !important;
  padding: 0 5px 5px;
  vertical-align: bottom;
  border-bottom: 1px solid #7e7e7e;
}
table tbody tr:nth-of-type(2n-1) {
  background: #ebecec;
}
table thead {
  border-bottom: 1px solid #cbcece;
}

.typ-sc {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
}

#secondary aside, #secondary .entry-content .wp-caption, .entry-content #secondary .wp-caption, #secondary .comment-notes {
  color: #7e7e7e;
  margin-bottom: 3em;
  width: 150px;
}
#secondary aside .widget-title, #secondary .entry-content .wp-caption .widget-title, .entry-content #secondary .wp-caption .widget-title, #secondary .comment-notes .widget-title {
  margin-top: 0;
}
#secondary aside p:last-child, #secondary .entry-content .wp-caption p:last-child, .entry-content #secondary .wp-caption p:last-child, #secondary .comment-notes p:last-child {
  margin-bottom: 0;
}
@media (min-width: 760px) {
  #secondary aside, #secondary .entry-content .wp-caption, .entry-content #secondary .wp-caption, #secondary .comment-notes {
    float: right;
    font-size: 0.7em;
    line-height: 1.5em;
  }
}

#fusion_ad {
  background: rgba(203, 206, 206, 0.25);
  border-bottom: 1px solid #cbcece;
  box-sizing: border-box;
  float: none;
  margin: 50px auto 0px;
  padding: 10px 10px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
  width: 130px;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
#fusion_ad .fusiontext {
  color: #474747;
  display: block;
  font-size: 10px;
  line-height: 15px;
  margin-top: 4px;
  padding: 3px;
  text-align: left;
}
@media (min-width: 760px) {
  #fusion_ad .fusiontext {
    text-align: left;
  }
}
#fusion_ad:hover {
  opacity: 0.9;
}
@media (min-width: 760px) {
  #fusion_ad {
    margin: 50px 0 0 10px;
  }
}
@media (min-width: 1023px) {
  #fusion_ad {
    float: right;
  }
}

#deck-ad {
  background: rgba(203, 206, 206, 0.25);
  border-bottom: 1px solid #cbcece;
  box-sizing: border-box;
  float: none;
  margin: 0px auto;
  padding: 15px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
#deck-ad .ads {
  color: #474747;
  display: block;
  font-size: 10px;
  line-height: 15px;
  margin-top: 4px;
  padding: 3px;
  text-align: left;
}
@media (min-width: 760px) {
  #deck-ad .ads {
    text-align: left;
  }
}
#deck-ad .credit,
#deck-ad .credit:visited {
  color: #7e7e7e;
  font-size: 10px;
}
#deck-ad .credit:hover,
#deck-ad .credit:active {
  color: #474747;
}
#deck-ad:hover {
  opacity: 0.9;
}
@media (min-width: 1023px) {
  #deck-ad {
    float: right;
  }
}

#social #reply-title {
  margin: 0;
  padding: 0;
}

#social .social-sign-in-links {
  margin: 14px 0;
  width: 100%;
}
#social .social-sign-in-links a {
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 0 0;
  overflow-y: hidden;
  padding: 0 14px 0 0;
  position: relative;
  text-indent: 36px;
  width: auto;
}
#social .social-sign-in-links a:hover {
  text-decoration: none;
}

#social .social-sign-in-links .social-twitter {
  background: #00acee;
  border-bottom: 2px solid #008bc0;
  height: 36px;
  margin-right: 20px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#social .social-sign-in-links .social-twitter:hover {
  background: #009ad4;
}
#social .social-sign-in-links .social-twitter:before {
  content: '';
  color: #fff;
  display: inline-block;
  font-family: "Genericons";
  font-size: 18px;
  left: 0;
  margin-left: -25px;
  position: absolute;
  text-decoration: none;
  z-index: 100;
}

#social .social-sign-in-links .social-facebook {
  background: #3b5998;
  border-bottom: 2px solid #2e4677;
  height: 36px;
  line-height: 36px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#social .social-sign-in-links .social-facebook:hover {
  background: #324c82;
}
#social .social-sign-in-links .social-facebook:before {
  color: #fff;
  content: '';
  display: inline-block;
  font-family: "Genericons";
  font-size: 18px;
  left: 0;
  margin-left: -25px;
  position: absolute;
  text-decoration: none;
  z-index: 100;
}

#social .social-imr {
  font-size: 18px;
  line-height: 18px;
  overflow: auto;
  text-indent: 0;
}

#social .social-comment-inner {
  margin-right: 0;
}

#social .social-divider {
  background: none;
  padding: 0;
  margin: 0;
}
#social .social-divider span {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  margin: 0;
  padding: 0;
  display: inline;
}
#social .social-divider span:before {
  border-bottom: 1px solid #cbcece;
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  position: relative;
  top: -3px;
}
#social .social-divider span:after {
  border-bottom: 1px solid #cbcece;
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 529px;
  position: relative;
  top: -3px;
}
@media (min-width: 760px) {
  #social .social-divider span:after {
    width: 356px;
  }
}
@media (min-width: 1023px) {
  #social .social-divider span:after {
    width: 529px;
  }
}

#social .social-input-row .social-label {
  display: block;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  text-transform: lowercase;
  width: 100%;
  position: relative;
  left: 0;
  height: 27px;
  color: #cbcece;
}
#social .social-input-row .social-label span {
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 12px;
}

#social #respond input.social-input {
  width: 100%;
  display: block;
  margin-bottom: 13px;
}

#social input.social-input,
#social .social-select {
  display: block;
  height: 34px;
}

#social input.social-input,
#social textarea.social-input,
#social .social-select {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  background: none;
  display: block;
  border-radius: 0;
  box-shadow: none;
  color: #474747;
  outline: none;
  box-sizing: border-box;
  padding: 15px 9px;
  border: 1px solid #dddfdf;
}

#social .form-submit,
#social .social-input-row-submit {
  height: auto;
}

#social .social-input-row,
#social .form-submit {
  padding: 0;
  margin: 0;
}

#social input#submit,
p.form-submit input {
  background: #cd3700;
  margin: 14px 0 42px;
  padding: 0 58px;
  border-radius: 0;
  min-height: 34px !important;
  width: auto;
  border: none;
  border-bottom: 2px solid #942E01;
  color: #fff;
  display: block;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  text-shadow: none;
  line-height: 26px;
  overflow-y: visible;
  position: relative;
  z-index: 100;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#social input#submit:hover, #social input#submit:active,
p.form-submit input:hover,
p.form-submit input:active {
  background: #b33000;
  color: #fff;
}

#social #reply-title, #social .social-nav .social-current-tab {
  background: none;
}

#social #respond textarea.social-input {
  width: 100%;
  max-width: 100%;
  min-height: 200px;
}

#social #social-tabs-comments .social-nav li a span,
#social #reply-title span,
#social .social-nav .social-current-tab a {
  background: none;
  margin: 0;
  padding: 0;
}

#social #social-tabs-comments .social-nav .social-wordpress a span,
#social #social-tabs-comments .social-nav .social-twitter a span,
#social #social-tabs-comments .social-nav .social-facebook a span,
#social #social-tabs-comments .social-nav .social-pingback a span {
  padding: 0;
}

#social .social-comment-header,
#social .social-comment-body,
#social .social-comment-entry-meta,
#social .social-comment-inner {
  padding: 0;
}

#social .social-comment-body {
  padding-top: 5px;
}
@media (min-width: 760px) {
  #social .social-comment-body {
    padding-top: 0;
    padding-left: 85px;
  }
}

#social .social-comment {
  border: none;
  border-radius: 0;
  border-top-left-radius: 0;
}

#social ol.social-commentlist,
.reply-list {
  padding: 0;
  margin: 0;
}
#social ol.social-commentlist li,
.reply-list li {
  list-style: none;
}

#social .social-fn {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 15px;
  padding-left: 50px;
  padding-top: 5px;
  width: auto;
}
@media (min-width: 760px) {
  #social .social-fn {
    padding-left: 85px;
    padding-top: 0;
  }
}
#social .social-fn a {
  color: #7e7e7e;
}
#social .social-fn a:hover {
  color: #cd3700;
  text-decoration: none;
}

#social .social-comment-body p,
.reply-content p {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 15px;
}
@media (min-width: 1023px) {
  #social .social-comment-body p,
  .reply-content p {
    font-size: 15px;
    line-height: 21px;
  }
}
#social .social-comment-body p:first-of-type,
.reply-content p:first-of-type {
  margin-top: 3px;
}

img.avatar {
  float: left;
  margin-right: 10px;
}
@media (min-width: 760px) {
  img.avatar {
    float: none;
    margin-left: 30px;
    margin-right: 0;
  }
}

#social .social-comment-author {
  margin: 0;
}
#social .social-comment-author img {
  float: left;
}
@media (min-width: 760px) {
  #social .social-comment-author img {
    margin-left: 25px;
  }
}

#social .social-commentlist #respond {
  margin: 0;
  padding: 0;
}

#social #cancel-comment-reply-link {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  text-transform: lowercase;
  top: -2px;
  position: relative;
}

#social .social-commentlist #commentform {
  border: none;
  padding-left: 0;
}

#social .social-children {
  /*	margin: 0 0 0 83px;
  	padding: 29px 0 14px 0px;
  	border-left: 1px solid $gray-light;*/
}

#social .social-children .social-comment {
  margin-left: 0;
}

#social .social-replied {
  display: none;
}

#social .social-actions {
  text-align: right;
}

#social a.comment-reply-link {
  color: #cbcece;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  text-decoration: none;
  visibility: hidden;
}

#social .social-comment-inner:hover a.comment-reply-link {
  visibility: hidden;
}

#social .social-comment-inner {
  margin-bottom: 29px;
}

#social .social-comment-meta {
  background: none;
  padding-right: 0;
  left: 50px;
  position: relative;
  width: 0;
}
@media (min-width: 760px) {
  #social .social-comment-meta {
    position: absolute;
    right: 0;
    left: auto;
    top: -2px;
    width: auto;
  }
}

#social a.social-posted-when {
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
  text-decoration: none;
  /*	border-bottom: 1px dotted $gray-light;*/
  opacity: 0.75;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#social a.social-posted-when:hover {
  opacity: 1.0;
}

#social .social-last-reply-when {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  margin-bottom: 36px;
  color: #cbcece;
}

#comments {
  padding-top: 0;
}

#social .social-comment-meta-wordpress:after {
  content: "";
  font-family: "Genericons";
  display: inline-block;
  padding: 0 0 0 5px;
  color: #cbcece;
}

#social .social-comment-meta-twitter:after {
  content: "";
  font-family: "Genericons";
  display: inline-block;
  padding: 0 0 0 5px;
  color: #cbcece;
}

#social .social-comment-meta-facebook:after {
  content: "";
  font-family: "Genericons";
  display: inline-block;
  padding: 0 0 0 5px;
  color: #cbcece;
}

#social .social-comment-meta-pingback:after {
  content: "";
  font-family: "Genericons";
  display: inline-block;
  padding: 0 0 0 5px;
  color: #cbcece;
}

#social .social-nav {
  background: none;
  border-bottom: 1px solid #cbcece;
  margin: 0 0 5px;
  height: 26px;
  padding: 0;
}
#social .social-nav li {
  float: none;
  margin: 0;
  padding: 0;
  width: auto;
}
#social .social-nav li a {
  background: #f2f3f3;
  color: #7e7e7e;
  display: inline-block;
  padding: 0 15px;
  margin: 0 5px 0 0;
}
#social .social-nav li a:hover {
  text-decoration: none;
}
#social .social-nav li a span {
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: lowercase;
}

#social .social-nav li.social-current-tab a {
  font-weight: 500;
  padding: 0 15px;
  margin: 0 5px 0 0;
  background: #cbcece;
  color: #fff;
}

#social .nocomments {
  color: #cbcece;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-size: 11px;
  font-style: italic;
  margin-bottom: 7px;
}

#social #comment-nav-below {
  padding-bottom: 46px;
}
#social #comment-nav-below a {
  color: #cbcece;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-transform: lowercase;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#social #comment-nav-below a:hover {
  color: #df4908;
  text-decoration: none;
}
#social #comment-nav-below h1, #social #comment-nav-below .entry-title {
  display: none;
}
#social #comment-nav-below .nav-previous {
  float: left;
}
#social #comment-nav-below .nav-next {
  float: right;
}

/* 
	WP Default Comments 
	--------------------------------------------------------------------  */
@media (min-width: 760px) {
  .reply-content {
    margin-left: 85px;
  }
}

@media (min-width: 760px) {
  .reply-header img {
    margin-bottom: -18px;
  }
}

h2#comments, h3#comments.widget-title {
  margin-top: 52px;
}
h2#comments:hover, h3#comments.widget-title:hover {
  text-decoration: none;
}

.comment-count {
  /*	border-bottom: 1px solid $gray-light;*/
  margin-bottom: 52px;
}

b.reply-title {
  display: block;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 17px;
}
b.reply-title a {
  color: #474747;
}
b.reply-title a:hover {
  color: #cd3700;
}
@media (min-width: 760px) {
  b.reply-title {
    display: inline;
    margin-left: 20px;
  }
}

a.wp-posted-when {
  font-family: "Ideal Sans SSm A", "Ideal Sans SSm B", Helvetica, Arial, sans-serif;
  text-decoration: none;
  opacity: 0.75;
  color: #7e7e7e;
  font-size: 12px;
}
a.wp-posted-when:hover {
  opacity: 1.0;
}
@media (min-width: 760px) {
  a.wp-posted-when {
    float: right;
  }
}

.reply-footer {
  list-style: none;
  text-align: right;
  visibility: hidden;
}
.reply-footer a {
  color: #cbcece;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-transform: lowercase;
  font-size: 12px;
}

.li-comment {
  margin-bottom: 29px;
}
.li-comment:hover .reply-footer {
  visibility: hidden;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  display: block;
  margin-bottom: 13px;
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  background: none;
  display: block;
  border-radius: 0;
  box-shadow: none;
  color: #474747;
  outline: none;
  box-sizing: border-box;
  padding: 15px 9px;
  border: 1px solid #dddfdf;
  font-size: 14px;
  box-sizing: border-box;
  height: 32px;
  line-height: 19px;
}
.comment-form label {
  display: block;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-transform: lowercase;
  width: 100%;
  position: relative;
  left: 0;
  height: 27px;
  color: #cbcece;
}
.comment-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 200px;
}

.form-allowed-tags {
  display: none;
}

@media (min-width: 760px) {
  .pagination {
    padding-bottom: 46px;
  }
}
.pagination a {
  color: #cbcece;
  font-family: "Ideal Sans SSm SC A", "Ideal Sans SSm SC B", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-transform: lowercase;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.pagination a:hover {
  color: #df4908;
  text-decoration: none;
}
.pagination a:nth-of-type(2n) {
  float: right;
}
.pagination h1, .pagination .entry-title {
  display: none;
}
.pagination .nav-previous {
  float: left;
}
.pagination .nav-next {
  float: right;
}

/*
.notice .content {
	font-family: $font-serif;
	color: $orange-light;
	text-align: center;
	font-style: italic;
	font-size: 12px;
	&:after,
	&:before {
		content: "";
		border-bottom: 1px dotted $gray-light;
		width: 20px;
		height: 1px;
		display: inline-block;
		position: relative;
		top: -3px;
	}
	&:before {
		margin-right: 10px;
	}
	&:after {
		margin-left: 10px;
	}
}*/
.notice .content {
  font-family: "Sentinel SSm A", "Sentinel SSm B", Georgia, "Times New Roman", Times, serif;
  color: #7e7e7e;
  text-align: center;
  font-style: italic;
  font-size: 12px;
  border: 1px dotted #cbcece;
  margin-bottom: 15px;
}
@media (min-width: 760px) {
  .notice .content {
    margin-left: 85px;
  }
}

.social-nav {
  display: none;
}
