/*
Theme Name: whiteonricecouple
Theme URI: http://underscores.me/
Author: Automattic
Author URI: http://automattic.com/
Description: Hi. I'm a starter theme called <code>whiteonricecouple</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: whiteonricecouple
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

whiteonricecouple is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  box-sizing: border-box;
  /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

ol, ul {
  list-style: none; }

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0; }

caption, th, td {
  font-weight: normal;
  text-align: left; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: ""; }

blockquote, q {
  quotes: "" ""; }

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0; }

a img {
  border: 0; }

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  clear: both; }

p {
  margin-bottom: 1.5em; }

b, strong {
  font-weight: bold; }

dfn, cite, em, i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code, kbd, tt, var {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark, ins {
  background: #fff9c0;
  text-decoration: none; }

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  bottom: 1ex; }

sub {
  top: .5ex; }

small {
  font-size: 75%; }

big {
  font-size: 125%; }

.content-area a {
  color: #505050;
  text-decoration: underline; }
  .content-area a:hover {
    text-decoration: none; }
  .content-area a:hover, .content-area a:visited, .content-area a:focus {
    color: #505050; }

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul, ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 0; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

th {
  font-weight: bold; }

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */ }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02); }

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */ }

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px; }

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%; }

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: royalblue; }
  a:visited {
    color: purple; }
  a:hover, a:focus, a:active {
    color: midnightblue; }

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%; }
  .main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0; }
    .main-navigation ul ul {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
      float: left;
      position: absolute;
      top: 1.5em;
      left: -999em;
      z-index: 99999; }
      .main-navigation ul ul ul {
        left: -999em;
        top: 0; }
      .main-navigation ul ul li:hover > ul {
        left: 100%; }
      .main-navigation ul ul a {
        width: 200px; }
    .main-navigation ul li:hover > ul {
      left: auto; }
  .main-navigation li {
    float: left;
    position: relative; }
  .main-navigation a {
    display: block;
    text-decoration: none; }

/* Small menu */
.menu-toggle {
  display: none; }

@media screen and (max-width: 600px) {
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block; }

  .main-navigation ul {
    display: none; } }
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar */ }

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  display: block;
  margin: 0 auto; }

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  overflow: hidden;
  *zoom: 1; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets */ }
  .widget select {
    max-width: 100%; }

/* Search widget */
.widget_search .search-submit {
  display: none; }

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.hentry {
  margin: 0 0 1.5em; }

.byline,
.updated:not(.published) {
  display: none; }

.single .byline,
.group-blog .byline {
  display: inline; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none; }

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

.gallery-caption {
  display: block; }

/*!
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f4e71b13214376f76958)
 * Config saved to config.json and https://gist.github.com/f4e71b13214376f76958
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

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; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="#"]:after,
  a[href^="javascript:"]: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; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  select {
    background: #fff !important; }

  .navbar {
    display: none; }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }

  .label {
    border: 1px solid #000; }

  .table {
    border-collapse: collapse !important; }

  .table td,
  .table th {
    background-color: #fff !important; }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline; }

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 7.5px;
  padding-right: 7.5px; }

@media (min-width: 768px) {
  .container {
    width: 735px; } }
@media (min-width: 992px) {
  .container {
    width: 955px; } }
@media (min-width: 1200px) {
  .container {
    width: 1155px; } }
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 7.5px;
  padding-right: 7.5px; }

.row {
  margin-left: -7.5px;
  margin-right: -7.5px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
  position: relative;
  min-height: 1px;
  padding-left: 7.5px;
  padding-right: 7.5px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24 {
  float: left; }

.col-xs-24 {
  width: 100%; }

.col-xs-23 {
  width: 95.83333333%; }

.col-xs-22 {
  width: 91.66666667%; }

.col-xs-21 {
  width: 87.5%; }

.col-xs-20 {
  width: 83.33333333%; }

.col-xs-19 {
  width: 79.16666667%; }

.col-xs-18 {
  width: 75%; }

.col-xs-17 {
  width: 70.83333333%; }

.col-xs-16 {
  width: 66.66666667%; }

.col-xs-15 {
  width: 62.5%; }

.col-xs-14 {
  width: 58.33333333%; }

.col-xs-13 {
  width: 54.16666667%; }

.col-xs-12 {
  width: 50%; }

.col-xs-11 {
  width: 45.83333333%; }

.col-xs-10 {
  width: 41.66666667%; }

.col-xs-9 {
  width: 37.5%; }

.col-xs-8 {
  width: 33.33333333%; }

.col-xs-7 {
  width: 29.16666667%; }

.col-xs-6 {
  width: 25%; }

.col-xs-5 {
  width: 20.83333333%; }

.col-xs-4 {
  width: 16.66666667%; }

.col-xs-3 {
  width: 12.5%; }

.col-xs-2 {
  width: 8.33333333%; }

.col-xs-1 {
  width: 4.16666667%; }

.col-xs-pull-24 {
  right: 100%; }

.col-xs-pull-23 {
  right: 95.83333333%; }

.col-xs-pull-22 {
  right: 91.66666667%; }

.col-xs-pull-21 {
  right: 87.5%; }

.col-xs-pull-20 {
  right: 83.33333333%; }

.col-xs-pull-19 {
  right: 79.16666667%; }

.col-xs-pull-18 {
  right: 75%; }

.col-xs-pull-17 {
  right: 70.83333333%; }

.col-xs-pull-16 {
  right: 66.66666667%; }

.col-xs-pull-15 {
  right: 62.5%; }

.col-xs-pull-14 {
  right: 58.33333333%; }

.col-xs-pull-13 {
  right: 54.16666667%; }

.col-xs-pull-12 {
  right: 50%; }

.col-xs-pull-11 {
  right: 45.83333333%; }

.col-xs-pull-10 {
  right: 41.66666667%; }

.col-xs-pull-9 {
  right: 37.5%; }

.col-xs-pull-8 {
  right: 33.33333333%; }

.col-xs-pull-7 {
  right: 29.16666667%; }

.col-xs-pull-6 {
  right: 25%; }

.col-xs-pull-5 {
  right: 20.83333333%; }

.col-xs-pull-4 {
  right: 16.66666667%; }

.col-xs-pull-3 {
  right: 12.5%; }

.col-xs-pull-2 {
  right: 8.33333333%; }

.col-xs-pull-1 {
  right: 4.16666667%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-24 {
  left: 100%; }

.col-xs-push-23 {
  left: 95.83333333%; }

.col-xs-push-22 {
  left: 91.66666667%; }

.col-xs-push-21 {
  left: 87.5%; }

.col-xs-push-20 {
  left: 83.33333333%; }

.col-xs-push-19 {
  left: 79.16666667%; }

.col-xs-push-18 {
  left: 75%; }

.col-xs-push-17 {
  left: 70.83333333%; }

.col-xs-push-16 {
  left: 66.66666667%; }

.col-xs-push-15 {
  left: 62.5%; }

.col-xs-push-14 {
  left: 58.33333333%; }

.col-xs-push-13 {
  left: 54.16666667%; }

.col-xs-push-12 {
  left: 50%; }

.col-xs-push-11 {
  left: 45.83333333%; }

.col-xs-push-10 {
  left: 41.66666667%; }

.col-xs-push-9 {
  left: 37.5%; }

.col-xs-push-8 {
  left: 33.33333333%; }

.col-xs-push-7 {
  left: 29.16666667%; }

.col-xs-push-6 {
  left: 25%; }

.col-xs-push-5 {
  left: 20.83333333%; }

.col-xs-push-4 {
  left: 16.66666667%; }

.col-xs-push-3 {
  left: 12.5%; }

.col-xs-push-2 {
  left: 8.33333333%; }

.col-xs-push-1 {
  left: 4.16666667%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-24 {
  margin-left: 100%; }

.col-xs-offset-23 {
  margin-left: 95.83333333%; }

.col-xs-offset-22 {
  margin-left: 91.66666667%; }

.col-xs-offset-21 {
  margin-left: 87.5%; }

.col-xs-offset-20 {
  margin-left: 83.33333333%; }

.col-xs-offset-19 {
  margin-left: 79.16666667%; }

.col-xs-offset-18 {
  margin-left: 75%; }

.col-xs-offset-17 {
  margin-left: 70.83333333%; }

.col-xs-offset-16 {
  margin-left: 66.66666667%; }

.col-xs-offset-15 {
  margin-left: 62.5%; }

.col-xs-offset-14 {
  margin-left: 58.33333333%; }

.col-xs-offset-13 {
  margin-left: 54.16666667%; }

.col-xs-offset-12 {
  margin-left: 50%; }

.col-xs-offset-11 {
  margin-left: 45.83333333%; }

.col-xs-offset-10 {
  margin-left: 41.66666667%; }

.col-xs-offset-9 {
  margin-left: 37.5%; }

.col-xs-offset-8 {
  margin-left: 33.33333333%; }

.col-xs-offset-7 {
  margin-left: 29.16666667%; }

.col-xs-offset-6 {
  margin-left: 25%; }

.col-xs-offset-5 {
  margin-left: 20.83333333%; }

.col-xs-offset-4 {
  margin-left: 16.66666667%; }

.col-xs-offset-3 {
  margin-left: 12.5%; }

.col-xs-offset-2 {
  margin-left: 8.33333333%; }

.col-xs-offset-1 {
  margin-left: 4.16666667%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24 {
    float: left; }

  .col-sm-24 {
    width: 100%; }

  .col-sm-23 {
    width: 95.83333333%; }

  .col-sm-22 {
    width: 91.66666667%; }

  .col-sm-21 {
    width: 87.5%; }

  .col-sm-20 {
    width: 83.33333333%; }

  .col-sm-19 {
    width: 79.16666667%; }

  .col-sm-18 {
    width: 75%; }

  .col-sm-17 {
    width: 70.83333333%; }

  .col-sm-16 {
    width: 66.66666667%; }

  .col-sm-15 {
    width: 62.5%; }

  .col-sm-14 {
    width: 58.33333333%; }

  .col-sm-13 {
    width: 54.16666667%; }

  .col-sm-12 {
    width: 50%; }

  .col-sm-11 {
    width: 45.83333333%; }

  .col-sm-10 {
    width: 41.66666667%; }

  .col-sm-9 {
    width: 37.5%; }

  .col-sm-8 {
    width: 33.33333333%; }

  .col-sm-7 {
    width: 29.16666667%; }

  .col-sm-6 {
    width: 25%; }

  .col-sm-5 {
    width: 20.83333333%; }

  .col-sm-4 {
    width: 16.66666667%; }

  .col-sm-3 {
    width: 12.5%; }

  .col-sm-2 {
    width: 8.33333333%; }

  .col-sm-1 {
    width: 4.16666667%; }

  .col-sm-pull-24 {
    right: 100%; }

  .col-sm-pull-23 {
    right: 95.83333333%; }

  .col-sm-pull-22 {
    right: 91.66666667%; }

  .col-sm-pull-21 {
    right: 87.5%; }

  .col-sm-pull-20 {
    right: 83.33333333%; }

  .col-sm-pull-19 {
    right: 79.16666667%; }

  .col-sm-pull-18 {
    right: 75%; }

  .col-sm-pull-17 {
    right: 70.83333333%; }

  .col-sm-pull-16 {
    right: 66.66666667%; }

  .col-sm-pull-15 {
    right: 62.5%; }

  .col-sm-pull-14 {
    right: 58.33333333%; }

  .col-sm-pull-13 {
    right: 54.16666667%; }

  .col-sm-pull-12 {
    right: 50%; }

  .col-sm-pull-11 {
    right: 45.83333333%; }

  .col-sm-pull-10 {
    right: 41.66666667%; }

  .col-sm-pull-9 {
    right: 37.5%; }

  .col-sm-pull-8 {
    right: 33.33333333%; }

  .col-sm-pull-7 {
    right: 29.16666667%; }

  .col-sm-pull-6 {
    right: 25%; }

  .col-sm-pull-5 {
    right: 20.83333333%; }

  .col-sm-pull-4 {
    right: 16.66666667%; }

  .col-sm-pull-3 {
    right: 12.5%; }

  .col-sm-pull-2 {
    right: 8.33333333%; }

  .col-sm-pull-1 {
    right: 4.16666667%; }

  .col-sm-pull-0 {
    right: auto; }

  .col-sm-push-24 {
    left: 100%; }

  .col-sm-push-23 {
    left: 95.83333333%; }

  .col-sm-push-22 {
    left: 91.66666667%; }

  .col-sm-push-21 {
    left: 87.5%; }

  .col-sm-push-20 {
    left: 83.33333333%; }

  .col-sm-push-19 {
    left: 79.16666667%; }

  .col-sm-push-18 {
    left: 75%; }

  .col-sm-push-17 {
    left: 70.83333333%; }

  .col-sm-push-16 {
    left: 66.66666667%; }

  .col-sm-push-15 {
    left: 62.5%; }

  .col-sm-push-14 {
    left: 58.33333333%; }

  .col-sm-push-13 {
    left: 54.16666667%; }

  .col-sm-push-12 {
    left: 50%; }

  .col-sm-push-11 {
    left: 45.83333333%; }

  .col-sm-push-10 {
    left: 41.66666667%; }

  .col-sm-push-9 {
    left: 37.5%; }

  .col-sm-push-8 {
    left: 33.33333333%; }

  .col-sm-push-7 {
    left: 29.16666667%; }

  .col-sm-push-6 {
    left: 25%; }

  .col-sm-push-5 {
    left: 20.83333333%; }

  .col-sm-push-4 {
    left: 16.66666667%; }

  .col-sm-push-3 {
    left: 12.5%; }

  .col-sm-push-2 {
    left: 8.33333333%; }

  .col-sm-push-1 {
    left: 4.16666667%; }

  .col-sm-push-0 {
    left: auto; }

  .col-sm-offset-24 {
    margin-left: 100%; }

  .col-sm-offset-23 {
    margin-left: 95.83333333%; }

  .col-sm-offset-22 {
    margin-left: 91.66666667%; }

  .col-sm-offset-21 {
    margin-left: 87.5%; }

  .col-sm-offset-20 {
    margin-left: 83.33333333%; }

  .col-sm-offset-19 {
    margin-left: 79.16666667%; }

  .col-sm-offset-18 {
    margin-left: 75%; }

  .col-sm-offset-17 {
    margin-left: 70.83333333%; }

  .col-sm-offset-16 {
    margin-left: 66.66666667%; }

  .col-sm-offset-15 {
    margin-left: 62.5%; }

  .col-sm-offset-14 {
    margin-left: 58.33333333%; }

  .col-sm-offset-13 {
    margin-left: 54.16666667%; }

  .col-sm-offset-12 {
    margin-left: 50%; }

  .col-sm-offset-11 {
    margin-left: 45.83333333%; }

  .col-sm-offset-10 {
    margin-left: 41.66666667%; }

  .col-sm-offset-9 {
    margin-left: 37.5%; }

  .col-sm-offset-8 {
    margin-left: 33.33333333%; }

  .col-sm-offset-7 {
    margin-left: 29.16666667%; }

  .col-sm-offset-6 {
    margin-left: 25%; }

  .col-sm-offset-5 {
    margin-left: 20.83333333%; }

  .col-sm-offset-4 {
    margin-left: 16.66666667%; }

  .col-sm-offset-3 {
    margin-left: 12.5%; }

  .col-sm-offset-2 {
    margin-left: 8.33333333%; }

  .col-sm-offset-1 {
    margin-left: 4.16666667%; }

  .col-sm-offset-0 {
    margin-left: 0%; } }
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24 {
    float: left; }

  .col-md-24 {
    width: 100%; }

  .col-md-23 {
    width: 95.83333333%; }

  .col-md-22 {
    width: 91.66666667%; }

  .col-md-21 {
    width: 87.5%; }

  .col-md-20 {
    width: 83.33333333%; }

  .col-md-19 {
    width: 79.16666667%; }

  .col-md-18 {
    width: 75%; }

  .col-md-17 {
    width: 70.83333333%; }

  .col-md-16 {
    width: 66.66666667%; }

  .col-md-15 {
    width: 62.5%; }

  .col-md-14 {
    width: 58.33333333%; }

  .col-md-13 {
    width: 54.16666667%; }

  .col-md-12 {
    width: 50%; }

  .col-md-11 {
    width: 45.83333333%; }

  .col-md-10 {
    width: 41.66666667%; }

  .col-md-9 {
    width: 37.5%; }

  .col-md-8 {
    width: 33.33333333%; }

  .col-md-7 {
    width: 29.16666667%; }

  .col-md-6 {
    width: 25%; }

  .col-md-5 {
    width: 20.83333333%; }

  .col-md-4 {
    width: 16.66666667%; }

  .col-md-3 {
    width: 12.5%; }

  .col-md-2 {
    width: 8.33333333%; }

  .col-md-1 {
    width: 4.16666667%; }

  .col-md-pull-24 {
    right: 100%; }

  .col-md-pull-23 {
    right: 95.83333333%; }

  .col-md-pull-22 {
    right: 91.66666667%; }

  .col-md-pull-21 {
    right: 87.5%; }

  .col-md-pull-20 {
    right: 83.33333333%; }

  .col-md-pull-19 {
    right: 79.16666667%; }

  .col-md-pull-18 {
    right: 75%; }

  .col-md-pull-17 {
    right: 70.83333333%; }

  .col-md-pull-16 {
    right: 66.66666667%; }

  .col-md-pull-15 {
    right: 62.5%; }

  .col-md-pull-14 {
    right: 58.33333333%; }

  .col-md-pull-13 {
    right: 54.16666667%; }

  .col-md-pull-12 {
    right: 50%; }

  .col-md-pull-11 {
    right: 45.83333333%; }

  .col-md-pull-10 {
    right: 41.66666667%; }

  .col-md-pull-9 {
    right: 37.5%; }

  .col-md-pull-8 {
    right: 33.33333333%; }

  .col-md-pull-7 {
    right: 29.16666667%; }

  .col-md-pull-6 {
    right: 25%; }

  .col-md-pull-5 {
    right: 20.83333333%; }

  .col-md-pull-4 {
    right: 16.66666667%; }

  .col-md-pull-3 {
    right: 12.5%; }

  .col-md-pull-2 {
    right: 8.33333333%; }

  .col-md-pull-1 {
    right: 4.16666667%; }

  .col-md-pull-0 {
    right: auto; }

  .col-md-push-24 {
    left: 100%; }

  .col-md-push-23 {
    left: 95.83333333%; }

  .col-md-push-22 {
    left: 91.66666667%; }

  .col-md-push-21 {
    left: 87.5%; }

  .col-md-push-20 {
    left: 83.33333333%; }

  .col-md-push-19 {
    left: 79.16666667%; }

  .col-md-push-18 {
    left: 75%; }

  .col-md-push-17 {
    left: 70.83333333%; }

  .col-md-push-16 {
    left: 66.66666667%; }

  .col-md-push-15 {
    left: 62.5%; }

  .col-md-push-14 {
    left: 58.33333333%; }

  .col-md-push-13 {
    left: 54.16666667%; }

  .col-md-push-12 {
    left: 50%; }

  .col-md-push-11 {
    left: 45.83333333%; }

  .col-md-push-10 {
    left: 41.66666667%; }

  .col-md-push-9 {
    left: 37.5%; }

  .col-md-push-8 {
    left: 33.33333333%; }

  .col-md-push-7 {
    left: 29.16666667%; }

  .col-md-push-6 {
    left: 25%; }

  .col-md-push-5 {
    left: 20.83333333%; }

  .col-md-push-4 {
    left: 16.66666667%; }

  .col-md-push-3 {
    left: 12.5%; }

  .col-md-push-2 {
    left: 8.33333333%; }

  .col-md-push-1 {
    left: 4.16666667%; }

  .col-md-push-0 {
    left: auto; }

  .col-md-offset-24 {
    margin-left: 100%; }

  .col-md-offset-23 {
    margin-left: 95.83333333%; }

  .col-md-offset-22 {
    margin-left: 91.66666667%; }

  .col-md-offset-21 {
    margin-left: 87.5%; }

  .col-md-offset-20 {
    margin-left: 83.33333333%; }

  .col-md-offset-19 {
    margin-left: 79.16666667%; }

  .col-md-offset-18 {
    margin-left: 75%; }

  .col-md-offset-17 {
    margin-left: 70.83333333%; }

  .col-md-offset-16 {
    margin-left: 66.66666667%; }

  .col-md-offset-15 {
    margin-left: 62.5%; }

  .col-md-offset-14 {
    margin-left: 58.33333333%; }

  .col-md-offset-13 {
    margin-left: 54.16666667%; }

  .col-md-offset-12 {
    margin-left: 50%; }

  .col-md-offset-11 {
    margin-left: 45.83333333%; }

  .col-md-offset-10 {
    margin-left: 41.66666667%; }

  .col-md-offset-9 {
    margin-left: 37.5%; }

  .col-md-offset-8 {
    margin-left: 33.33333333%; }

  .col-md-offset-7 {
    margin-left: 29.16666667%; }

  .col-md-offset-6 {
    margin-left: 25%; }

  .col-md-offset-5 {
    margin-left: 20.83333333%; }

  .col-md-offset-4 {
    margin-left: 16.66666667%; }

  .col-md-offset-3 {
    margin-left: 12.5%; }

  .col-md-offset-2 {
    margin-left: 8.33333333%; }

  .col-md-offset-1 {
    margin-left: 4.16666667%; }

  .col-md-offset-0 {
    margin-left: 0%; } }
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24 {
    float: left; }

  .col-lg-24 {
    width: 100%; }

  .col-lg-23 {
    width: 95.83333333%; }

  .col-lg-22 {
    width: 91.66666667%; }

  .col-lg-21 {
    width: 87.5%; }

  .col-lg-20 {
    width: 83.33333333%; }

  .col-lg-19 {
    width: 79.16666667%; }

  .col-lg-18 {
    width: 75%; }

  .col-lg-17 {
    width: 70.83333333%; }

  .col-lg-16 {
    width: 66.66666667%; }

  .col-lg-15 {
    width: 62.5%; }

  .col-lg-14 {
    width: 58.33333333%; }

  .col-lg-13 {
    width: 54.16666667%; }

  .col-lg-12 {
    width: 50%; }

  .col-lg-11 {
    width: 45.83333333%; }

  .col-lg-10 {
    width: 41.66666667%; }

  .col-lg-9 {
    width: 37.5%; }

  .col-lg-8 {
    width: 33.33333333%; }

  .col-lg-7 {
    width: 29.16666667%; }

  .col-lg-6 {
    width: 25%; }

  .col-lg-5 {
    width: 20.83333333%; }

  .col-lg-4 {
    width: 16.66666667%; }

  .col-lg-3 {
    width: 12.5%; }

  .col-lg-2 {
    width: 8.33333333%; }

  .col-lg-1 {
    width: 4.16666667%; }

  .col-lg-pull-24 {
    right: 100%; }

  .col-lg-pull-23 {
    right: 95.83333333%; }

  .col-lg-pull-22 {
    right: 91.66666667%; }

  .col-lg-pull-21 {
    right: 87.5%; }

  .col-lg-pull-20 {
    right: 83.33333333%; }

  .col-lg-pull-19 {
    right: 79.16666667%; }

  .col-lg-pull-18 {
    right: 75%; }

  .col-lg-pull-17 {
    right: 70.83333333%; }

  .col-lg-pull-16 {
    right: 66.66666667%; }

  .col-lg-pull-15 {
    right: 62.5%; }

  .col-lg-pull-14 {
    right: 58.33333333%; }

  .col-lg-pull-13 {
    right: 54.16666667%; }

  .col-lg-pull-12 {
    right: 50%; }

  .col-lg-pull-11 {
    right: 45.83333333%; }

  .col-lg-pull-10 {
    right: 41.66666667%; }

  .col-lg-pull-9 {
    right: 37.5%; }

  .col-lg-pull-8 {
    right: 33.33333333%; }

  .col-lg-pull-7 {
    right: 29.16666667%; }

  .col-lg-pull-6 {
    right: 25%; }

  .col-lg-pull-5 {
    right: 20.83333333%; }

  .col-lg-pull-4 {
    right: 16.66666667%; }

  .col-lg-pull-3 {
    right: 12.5%; }

  .col-lg-pull-2 {
    right: 8.33333333%; }

  .col-lg-pull-1 {
    right: 4.16666667%; }

  .col-lg-pull-0 {
    right: auto; }

  .col-lg-push-24 {
    left: 100%; }

  .col-lg-push-23 {
    left: 95.83333333%; }

  .col-lg-push-22 {
    left: 91.66666667%; }

  .col-lg-push-21 {
    left: 87.5%; }

  .col-lg-push-20 {
    left: 83.33333333%; }

  .col-lg-push-19 {
    left: 79.16666667%; }

  .col-lg-push-18 {
    left: 75%; }

  .col-lg-push-17 {
    left: 70.83333333%; }

  .col-lg-push-16 {
    left: 66.66666667%; }

  .col-lg-push-15 {
    left: 62.5%; }

  .col-lg-push-14 {
    left: 58.33333333%; }

  .col-lg-push-13 {
    left: 54.16666667%; }

  .col-lg-push-12 {
    left: 50%; }

  .col-lg-push-11 {
    left: 45.83333333%; }

  .col-lg-push-10 {
    left: 41.66666667%; }

  .col-lg-push-9 {
    left: 37.5%; }

  .col-lg-push-8 {
    left: 33.33333333%; }

  .col-lg-push-7 {
    left: 29.16666667%; }

  .col-lg-push-6 {
    left: 25%; }

  .col-lg-push-5 {
    left: 20.83333333%; }

  .col-lg-push-4 {
    left: 16.66666667%; }

  .col-lg-push-3 {
    left: 12.5%; }

  .col-lg-push-2 {
    left: 8.33333333%; }

  .col-lg-push-1 {
    left: 4.16666667%; }

  .col-lg-push-0 {
    left: auto; }

  .col-lg-offset-24 {
    margin-left: 100%; }

  .col-lg-offset-23 {
    margin-left: 95.83333333%; }

  .col-lg-offset-22 {
    margin-left: 91.66666667%; }

  .col-lg-offset-21 {
    margin-left: 87.5%; }

  .col-lg-offset-20 {
    margin-left: 83.33333333%; }

  .col-lg-offset-19 {
    margin-left: 79.16666667%; }

  .col-lg-offset-18 {
    margin-left: 75%; }

  .col-lg-offset-17 {
    margin-left: 70.83333333%; }

  .col-lg-offset-16 {
    margin-left: 66.66666667%; }

  .col-lg-offset-15 {
    margin-left: 62.5%; }

  .col-lg-offset-14 {
    margin-left: 58.33333333%; }

  .col-lg-offset-13 {
    margin-left: 54.16666667%; }

  .col-lg-offset-12 {
    margin-left: 50%; }

  .col-lg-offset-11 {
    margin-left: 45.83333333%; }

  .col-lg-offset-10 {
    margin-left: 41.66666667%; }

  .col-lg-offset-9 {
    margin-left: 37.5%; }

  .col-lg-offset-8 {
    margin-left: 33.33333333%; }

  .col-lg-offset-7 {
    margin-left: 29.16666667%; }

  .col-lg-offset-6 {
    margin-left: 25%; }

  .col-lg-offset-5 {
    margin-left: 20.83333333%; }

  .col-lg-offset-4 {
    margin-left: 16.66666667%; }

  .col-lg-offset-3 {
    margin-left: 12.5%; }

  .col-lg-offset-2 {
    margin-left: 8.33333333%; }

  .col-lg-offset-1 {
    margin-left: 4.16666667%; }

  .col-lg-offset-0 {
    margin-left: 0%; } }
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important;
  visibility: hidden !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }

  table.visible-xs {
    display: table; }

  tr.visible-xs {
    display: table-row !important; }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }

  table.visible-sm {
    display: table; }

  tr.visible-sm {
    display: table-row !important; }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }

  table.visible-md {
    display: table; }

  tr.visible-md {
    display: table-row !important; }

  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }

  table.visible-lg {
    display: table; }

  tr.visible-lg {
    display: table-row !important; }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }
.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }

  table.visible-print {
    display: table; }

  tr.visible-print {
    display: table-row !important; }

  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }
.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }
.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }
.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }
@media print {
  .hidden-print {
    display: none !important; } }
@font-face {
  font-family: 'museo_slab_500regular';
  src: url("fonts/museo_slab-webfont.eot");
  src: url("fonts/museo_slab-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/museo_slab-webfont.woff") format("woff"), url("fonts/museo_slab-webfont.ttf") format("truetype"), url("fonts/museo_slab-webfont.svg#museo_slab_500regular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'underwood_championregular';
  src: url("fonts/underwood_champion-webfont.eot");
  src: url("fonts/underwood_champion-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/underwood_champion-webfont.woff") format("woff"), url("fonts/underwood_champion-webfont.ttf") format("truetype"), url("fonts/underwood_champion-webfont.svg#underwood_championregular") format("svg");
  font-weight: normal;
  font-style: normal; }
body {
  font-family: "Palatino Linotype", Palatino, Georgia, "Times New Roman", Times, serif; }

@media (min-width: 1200px) {
  .container {
    width: 1100px;
    padding: 0; } }
#primary {
  width: 66.63636%;
  float: left;
  padding-right: 2%;
  border-right: 1px solid #ddd; }
  @media (max-width: 991px) {
    #primary {
      width: 100%;
      float: none;
      padding: 0 10px;
      border-right: 0;
      max-width: 710px;
      margin-left: auto;
      margin-right: auto; } }

.sidebar {
  width: 16.68182%;
  float: left;
  padding: 0 1.1rem; }
  .sidebar#single-posts-sidebar {
    width: 33.36364%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.5em; }
  .sidebar .widget-title {
    border-bottom: 1px dashed #DF7F61;
    color: #AB4F27;
    font-size: 12px;
    font-family: 'museo_slab_500regular', sans-serif;
    text-transform: capitalize;
    font-variant: normal;
    letter-spacing: 0; }
  .sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 16px; }
    .sidebar .widget ul li {
      font-size: 12px;
      line-height: 12px;
      list-style-image: url(images/bullet_dot.png);
      margin-left: 16px;
      margin-bottom: 12px;
      padding: 0; }
      .sidebar .widget ul li a {
        font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
        color: #505050; }
  .sidebar .widget_text .textwidget {
    font-size: 12px;
    font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif; }
  @media (max-width: 991px) {
    .sidebar {
      width: 50%;
      margin-top: 20px; }
      .sidebar#single-posts-sidebar {
        width: 100%;
        *zoom: 1; }
        .sidebar#single-posts-sidebar:after {
          content: "";
          display: table;
          clear: both; }
        .sidebar#single-posts-sidebar .widget {
          width: 50%;
          float: left; } }
  @media (max-width: 600px) {
    .sidebar {
      width: 183px;
      float: none;
      margin-bottom: 20px;
      margin-left: auto;
      margin-right: auto; }
      .sidebar#single-posts-sidebar .widget {
        width: 100%;
        float: none; } }

#page {
  background: url(images/header_flourish.png) no-repeat center -40px #fff; }

/*! responsive-nav.js 1.0.34 by @viljamis */
.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none; }

.nav-collapse li {
  width: 100%;
  display: block; }

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1; }

.nav-collapse.opened {
  max-height: 9999px; }

.nav-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

@media screen and (min-width: 40em) {
  .js .nav-collapse {
    position: relative; }

  .js .nav-collapse.closed {
    max-height: none; }

  .nav-toggle {
    display: none; } }
.site-header {
  padding-top: 15px;
  position: relative;
  margin-bottom: 15px;
  *zoom: 1; }
  .site-header:after {
    content: "";
    display: table;
    clear: both; }

.site-branding {
  float: left;
  background: url(images/logo.png);
  text-indent: -9999px;
  height: 83px;
  width: 397px;
  margin-top: 10px; }
  .site-branding h1 {
    margin: 0; }
  @media (max-width: 600px) {
    .site-branding {
      float: none;
      width: 300px;
      height: 63px;
      background-size: cover;
      display: block;
      margin-top: 0; } }

#top-navigation {
  font-family: 'museo_slab_500regular', sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  position: absolute;
  top: 15px;
  right: 0;
  border-bottom: 1px dashed #cfcfcf; }
  #top-navigation .menu {
    margin: 0;
    padding: 0;
    list-style: none; }
  #top-navigation .menu-item {
    float: left;
    padding: 0 0 2px 25px; }
    #top-navigation .menu-item:first-child {
      padding-left: 0; }
    #top-navigation .menu-item:last-child {
      padding-right: 0; }
    #top-navigation .menu-item a {
      color: #ababab;
      -moz-transition: color 0.3s ease-in-out;
      -o-transition: color 0.3s ease-in-out;
      -webkit-transition: color 0.3s ease-in-out;
      transition: color 0.3s ease-in-out; }
      #top-navigation .menu-item a:hover {
        color: #888;
        text-decoration: none; }
  @media (max-width: 991px) {
    #top-navigation {
      width: 290px;
      right: 5px;
      border: none; }
      #top-navigation .menu-item {
        padding: 0; }
        #top-navigation .menu-item:nth-child(2n + 1) {
          width: 60%; }
        #top-navigation .menu-item:nth-child(2n) {
          width: 40%;
          text-align: right; } }
  @media (max-width: 600px) {
    #top-navigation {
      display: none; } }

#follow-menu {
  position: absolute;
  top: 65px;
  right: 0;
  width: 324px; }
  #follow-menu .stay-connected {
    color: #ababab;
    font-family: 'museo_slab_500regular', sans-serif;
    float: left;
    font-size: 12px;
    font-weight: normal;
    line-height: 33px;
    position: relative;
    padding-left: 30px;
    margin-right: 5px; }
    #follow-menu .stay-connected:before {
      content: "";
      background: url(images/leaf.png) no-repeat;
      display: block;
      width: 23px;
      height: 11px;
      position: absolute;
      top: 11px;
      left: 0; }
  #follow-menu .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    *zoom: 1; }
    #follow-menu .menu:after {
      content: "";
      display: table;
      clear: both; }
  #follow-menu .menu-item {
    float: left;
    margin-left: 6px; }
    #follow-menu .menu-item a {
      background: url(images/follow_sprite.png) no-repeat;
      width: 33px;
      height: 33px;
      display: block;
      padding: 0;
      border: 0;
      font: 0/0 a;
      text-shadow: none;
      color: transparent; }
    #follow-menu .menu-item.tw a {
      background-position: 0 0; }
    #follow-menu .menu-item.fb a {
      background-position: -40px 0; }
    #follow-menu .menu-item.pin a {
      background-position: -80px 0; }
    #follow-menu .menu-item.email a {
      background-position: -119px 0; }
    #follow-menu .menu-item.worc-rss a {
      background-position: -158px 0; }
  @media (max-width: 991px) {
    #follow-menu {
      top: 90px;
      width: auto;
      right: 5px; }
      #follow-menu .stay-connected {
        display: none; }
      #follow-menu .menu-item {
        margin-left: 4px; } }
  @media (max-width: 600px) {
    #follow-menu {
      position: static;
      margin-left: auto;
      margin-right: auto;
      width: 185px;
      margin-top: 15px;
      text-align: center; } }

#site-navigation {
  margin-top: 25px; }
  #site-navigation .menu-dots {
    height: 3px;
    background-image: url(images/dots.png);
    display: block;
    width: 360px;
    float: left;
    position: relative;
    top: 12px; }
  #site-navigation .menu {
    float: right; }
    #site-navigation .menu .menu-item {
      float: left;
      margin-left: 15px; }
      #site-navigation .menu .menu-item:first-child {
        margin-left: 0; }
      #site-navigation .menu .menu-item a {
        background: url(images/nav-bg.png) no-repeat;
        line-height: 26px;
        width: 108px;
        height: 25px;
        background-position: 0 0;
        padding: 0;
        -moz-opacity: 0.7;
        -khtml-opacity: 0.7;
        opacity: 0.7;
        font-family: 'museo_slab_500regular', sans-serif;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        font-size: 9px;
        letter-spacing: 1px; }
        #site-navigation .menu .menu-item a:hover {
          background-position: 0 -25px;
          text-decoration: none; }
      #site-navigation .menu .menu-item.current-menu-item a {
        background-position: 0 -25px; }
  @media (max-width: 991px) {
    #site-navigation {
      margin-top: 35px; }
      #site-navigation .menu-dots {
        display: none; }
      #site-navigation .menu {
        width: 560px; }
        #site-navigation .menu .menu-item {
          margin-left: 1.75%; }
          #site-navigation .menu .menu-item a {
            background-size: 100% 50px;
            width: auto;
            min-width: 80px;
            padding: 0 6px; } }
  @media (max-width: 600px) {
    #site-navigation {
      display: none; } }

#mobile-nav {
  display: none;
  width: 100%; }
  @media (max-width: 600px) {
    #mobile-nav {
      display: block; } }
  #mobile-nav .menu-item a {
    font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
    display: block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 16px;
    background: #A79C88;
    width: 100%;
    border-bottom: 1px solid #fff;
    color: #fff; }
  #mobile-nav .smaller-item a {
    font-size: 12px; }

.nav-toggle {
  background-color: #A79C88;
  color: #fff;
  padding: 6px 6px 6px 34px;
  font-size: 1.8rem;
  line-height: 30px;
  z-index: 2;
  float: right;
  position: relative;
  font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
  -moz-border-radius: 0 0 0 6px;
  -webkit-border-radius: 0;
  border-radius: 0 0 0 6px; }
  .nav-toggle:visited {
    color: #fff; }
  .nav-toggle:before {
    font-size: 2.3rem;
    content: "";
    position: absolute;
    top: 11px;
    left: 6px;
    width: 1em;
    height: 20px;
    border-top: 12px double #fff;
    border-bottom: 4px solid #fff; }

.site-footer {
  clear: both; }
  .site-footer a {
    color: #888888; }
    .site-footer a:hover {
      color: #48484A;
      text-decoration: none; }
  .site-footer .widget-area {
    float: left;
    width: 24.85%;
    margin-right: 0.2%;
    padding: 20px 20px 10px 20px;
    background: #F2F2F2;
    min-height: 430px; }
  .site-footer #footer-4 {
    margin-right: 0; }
  .site-footer .widget {
    margin-bottom: 0; }
    .site-footer .widget .menu {
      list-style: none;
      padding: 0;
      margin: 0; }
      .site-footer .widget .menu .menu-item a {
        background: none;
        font-size: 13px;
        line-height: 26px;
        text-transform: none;
        color: #656565;
        font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
        padding: 0;
        letter-spacing: 0; }
  .site-footer .widget_nav_menu .widget-title {
    font-family: 'Dancing Script', cursive;
    font-size: 25px;
    margin-top: 0;
    color: #ac522b; }
  .site-footer .widget_text h4, .site-footer .widget_text h4 a {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px; }
  .site-footer .widget_text img {
    display: block; }
  .site-footer .widget_text a {
    font-size: 10px; }
  .site-footer .site-info {
    display: block;
    text-align: right;
    padding: 10px 0;
    clear: both;
    color: #999;
    font-size: 12px; }
  @media (max-width: 991px) {
    .site-footer .widget-area {
      width: 49%;
      margin-right: 2%;
      margin-bottom: 2%; }
      .site-footer .widget-area:nth-child(2n) {
        margin-right: 0%; }
    .site-footer .site-info {
      text-align: center; } }
  @media (max-width: 600px) {
    .site-footer .widget-area {
      width: 100%;
      margin-bottom: 10px;
      margin-right: 0; } }

#homepage-panel-wrapper {
  *zoom: 1;
  margin-bottom: 30px; }
  #homepage-panel-wrapper:after {
    content: "";
    display: table;
    clear: both; }

.homepage-panel-images-wrapper {
  max-width: 915px;
  float: left;
  width: 83.18182%; }
  @media (max-width: 991px) {
    .homepage-panel-images-wrapper {
      max-width: 100%;
      width: auto;
      float: none; }
      .homepage-panel-images-wrapper .col {
        width: 33.333%;
        float: left; } }
  @media (max-width: 600px) {
    .homepage-panel-images-wrapper .col {
      width: 100%;
      float: none;
      max-width: 295px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 15px; } }

.homepage-panel-content-wrapper {
  max-width: 170px;
  float: left;
  margin-left: 1.36364%;
  width: 15.45455%;
  background: #EEEEEE;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #4f4f4f;
  line-height: 19px; }
  .homepage-panel-content-wrapper .gse-fb form input[type="text"], .homepage-panel-content-wrapper .gse-fb form input[type="email"] {
    width: 119px; }
  .homepage-panel-content-wrapper a {
    color: #fb884e; }
  @media (max-width: 991px) {
    .homepage-panel-content-wrapper {
      max-width: 480px;
      width: auto;
      float: none;
      margin-left: auto;
      margin-right: auto;
      margin-top: 10px;
      *zoom: 1; }
      .homepage-panel-content-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      .homepage-panel-content-wrapper img.aligncenter {
        float: left;
        margin-right: 10px;
        margin-bottom: 10px; }
      .homepage-panel-content-wrapper .gse-fb {
        clear: both;
        text-align: center;
        margin-top: 10px;
        *zoom: 1; }
        .homepage-panel-content-wrapper .gse-fb:after {
          content: "";
          display: table;
          clear: both; }
        .homepage-panel-content-wrapper .gse-fb .gse, .homepage-panel-content-wrapper .gse-fb .feedburner {
          width: 50%;
          float: left;
          margin: 0; } }
  @media (max-width: 600px) {
    .homepage-panel-content-wrapper img.aligncenter {
      float: none;
      margin-right: auto; } }

.homepage-panel {
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }
  .homepage-panel:hover {
    opacity: 0.8;
    text-decoration: none; }
  .homepage-panel .panel-title {
    width: 100%;
    height: 55px;
    text-align: center;
    display: table;
    font-family: 'museo_slab_500regular', sans-serif;
    font-size: 15px;
    padding: 0 30px;
    line-height: 1.2em; }
    .homepage-panel .panel-title .panel-title-text {
      display: table-cell;
      vertical-align: middle;
      color: #fff; }
  .homepage-panel.first .panel-title {
    background: #AEA28C; }
  .homepage-panel.second .panel-title {
    background: #745D30; }
  .homepage-panel.third .panel-title {
    background: #847E70; }

.featured-thumbs {
  background: #F3F3F3;
  padding: 0 15px 20px; }
  .featured-thumbs .featured-thumb-section-title {
    text-align: center; }
    .featured-thumbs .featured-thumb-section-title .title-first {
      font-size: 2.9rem; }
    .featured-thumbs .featured-thumb-section-title .title-second {
      font-size: 1.9rem; }
    .featured-thumbs .featured-thumb-section-title .leaf {
      background: url(images/leaf.png) no-repeat;
      display: inline-block;
      width: 23px;
      height: 11px;
      margin: 0 20px; }
      @media (max-width: 600px) {
        .featured-thumbs .featured-thumb-section-title .leaf {
          margin: 0 5px; } }
  .featured-thumbs .featured-thumb a {
    color: #4d4d4d;
    line-height: 1.8rem;
    font-size: 1.4rem;
    font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
    .featured-thumbs .featured-thumb a:hover {
      opacity: 0.8;
      text-decoration: none; }
  .featured-thumbs .featured-thumb img {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; }
  .featured-thumbs .featured-thumb .thumb-title {
    display: inline-block;
    margin-top: 3px; }
  @media (max-width: 600px) {
    .featured-thumbs .col {
      width: 100%;
      float: none; }
    .featured-thumbs .featured-thumb {
      text-align: center;
      margin-bottom: 10px; }
      .featured-thumbs .featured-thumb .thumb-title {
        display: block; } }

.homepage-category-section {
  padding: 25px 0 40px;
  background: url(images/divider.png) no-repeat bottom center;
  position: relative; }
  .homepage-category-section .section-title {
    margin-bottom: 8px; }
    .homepage-category-section .section-title .title-first {
      font-size: 2.2rem; }
    .homepage-category-section .section-title .title-second {
      font-size: 1.9rem; }
  .homepage-category-section .see-all-link {
    position: absolute;
    right: 6px;
    top: 30px;
    color: #afafaf;
    font-size: 13px;
    letter-spacing: 1px;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
    .homepage-category-section .see-all-link:hover {
      color: #777;
      text-decoration: none; }
    @media (max-width: 600px) {
      .homepage-category-section .see-all-link {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 5px; } }
  .homepage-category-section .category-section-thumb a {
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
    .homepage-category-section .category-section-thumb a:hover {
      opacity: 0.8; }
  .homepage-category-section .category-section-thumb .thumb-title {
    font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
    font-size: 1.3rem;
    line-height: 1.9rem;
    display: inline-block;
    margin-top: 3px;
    color: #4d4d4d; }
  .homepage-category-section .category-section-thumb img {
    background: none;
    border: 1px solid #ccc;
    padding: 3px; }
  .homepage-category-section .category-section-thumb .comments-link {
    color: #9E9E9E;
    font-size: 11px;
    font-style: italic;
    display: block;
    font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
    text-decoration: none; }
  @media (max-width: 600px) {
    .homepage-category-section .col {
      width: 100%;
      float: none; }
    .homepage-category-section .section-title {
      text-align: center; }
    .homepage-category-section .category-section-thumb {
      text-align: center;
      margin-bottom: 10px; }
      .homepage-category-section .category-section-thumb .thumb-title {
        display: block; } }

.page-template-default .entry-content ul {
  list-style-image: url(images/bullet.gif);
  margin: 0 0 1.571em 1.571em; }
.page-template-default .entry-content h2 {
  color: #707070;
  font-weight: bold;
  font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif; }
.page-template-default .entry-content img.aligncenter {
  margin-bottom: 1.571em; }
.page-template-default .entry-title {
  font-size: 2rem; }
  .page-template-default .entry-title a {
    color: #8C8C8C; }

.archive-with-header .post {
  background: url(images/divider.png) no-repeat top center;
  padding-top: 30px;
  margin-top: 30px; }
  .archive-with-header .post .post-content-wrapper {
    margin-top: 22px;
    *zoom: 1;
    position: relative; }
    .archive-with-header .post .post-content-wrapper:after {
      content: "";
      display: table;
      clear: both; }
    .archive-with-header .post .post-content-wrapper .post-featured-image {
      float: left;
      padding: 5px;
      border: 1px solid #ddd;
      width: 28.57143%; }
    .archive-with-header .post .post-content-wrapper .entry-content {
      float: left;
      margin-left: 1.14286%;
      margin-top: 0;
      width: 67.14286%; }
    .archive-with-header .post .post-content-wrapper .entry-footer {
      position: absolute;
      width: 70.28571%;
      right: 0;
      bottom: 0;
      *zoom: 1; }
      .archive-with-header .post .post-content-wrapper .entry-footer:after {
        content: "";
        display: table;
        clear: both; }
      .archive-with-header .post .post-content-wrapper .entry-footer .comments-link {
        float: left; }
        .archive-with-header .post .post-content-wrapper .entry-footer .comments-link a {
          text-transform: uppercase;
          border-bottom: 1px solid #eee;
          color: #505050;
          letter-spacing: 1px;
          color: #888888;
          font-size: 10px; }
      .archive-with-header .post .post-content-wrapper .entry-footer .read-more-link {
        float: right;
        font-size: 1.2rem;
        color: #505050; }

.archive #archive_intro, .blog #archive_intro {
  margin-bottom: 18px; }
  .archive #archive_intro h1, .blog #archive_intro h1 {
    background: url(images/divider.png) no-repeat left bottom;
    margin: 0;
    padding-bottom: 10px;
    font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
    font-size: 20px;
    color: #CC6600; }

.archive .featured-thumbs .featured-thumb-section-title {
  text-align: left; }

.blog .navigation, .archive .navigation {
  clear: both;
  *zoom: 1; }
  .blog .navigation:after, .archive .navigation:after {
    content: "";
    display: table;
    clear: both; }
  .blog .navigation a, .archive .navigation a {
    color: #666; }

.post .entry-title, .page .entry-title {
  font-size: 20px;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #8C8C8C; }
  .post .entry-title a, .page .entry-title a {
    color: #505050; }
.post .entry-meta, .page .entry-meta {
  color: #888888;
  font-size: 10px; }
  .post .entry-meta .byline a, .post .entry-meta .posted-on a, .page .entry-meta .byline a, .page .entry-meta .posted-on a {
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    color: #505050;
    letter-spacing: 1px;
    color: #888888;
    font-size: 10px; }
.post .entry-content img, .page .entry-content img {
  background: url(images/shadow.gif) no-repeat right bottom;
  border: none;
  border-top: #eee 1px solid;
  border-left: #eee 1px solid;
  padding: 4px 10px 10px 4px; }
.post .entry-content ul, .page .entry-content ul {
  list-style-image: url(images/bullet.gif);
  margin: 0 0 1.571em 1.571em; }
.post .entry-content h2, .page .entry-content h2 {
  color: #707070;
  font-weight: bold;
  font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif; }
.post .entry-content img.aligncenter, .page .entry-content img.aligncenter {
  margin-bottom: 1.571em; }
.post .entry-content .dual_ad, .page .entry-content .dual_ad {
  width: 50%;
  float: left; }
  @media (max-width: 991px) {
    .post .entry-content .dual_ad, .page .entry-content .dual_ad {
      width: 100%;
      float: none;
      margin-bottom: 5px; } }
.post.condensed-display, .page.condensed-display {
  float: left;
  width: 20%;
  margin-right: 6.66667%;
  height: 370px;
  margin-bottom: 0; }
  .post.condensed-display:nth-of-type(4n), .page.condensed-display:nth-of-type(4n) {
    margin-right: 0; }
  .post.condensed-display:nth-of-type(4n + 1), .page.condensed-display:nth-of-type(4n + 1) {
    clear: left; }
  .post.condensed-display .post-featured-image, .page.condensed-display .post-featured-image {
    margin-bottom: 10px; }
  .post.condensed-display .entry-title, .page.condensed-display .entry-title {
    margin-bottom: 10px;
    line-height: 16px;
    font-size: 13px; }
    .post.condensed-display .entry-title a, .page.condensed-display .entry-title a {
      color: #666;
      font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
      text-decoration: underline; }
  .post.condensed-display .read-more-link, .page.condensed-display .read-more-link {
    color: #CC6600;
    float: right;
    font-size: 11px;
    line-height: 11px;
    position: relative;
    top: 0;
    text-decoration: none;
    border-bottom: 1px solid #CC6600;
    margin-top: 10px;
    font-family: arial, sans-serif; }
  .post.condensed-display .entry-content, .page.condensed-display .entry-content {
    font-family: arial, sans-serif;
    color: #505050;
    font-size: 12px;
    margin-top: 10px; }
    .post.condensed-display .entry-content p, .page.condensed-display .entry-content p {
      margin-bottom: 0; }
.post .pw-widget, .page .pw-widget {
  text-align: center; }
.post .pw-size-medium.pw-button, .page .pw-size-medium.pw-button {
  margin: 0 10px !important; }
  .post .pw-size-medium.pw-button .pw-button-counter__count, .page .pw-size-medium.pw-button .pw-button-counter__count {
    min-width: 21px; }

.page .entry-title {
  font-size: 20px;
  color: #8C8C8C; }

/*Custom Recipe Formatting, pulled from old theme*/
.post .recipe,
.post_footer {
  color: #111;
  font-size: 14px;
  font-style: normal;
  line-height: 21px;
  background-color: #F7F7F7;
  background-image: url("images/linen2.png");
  margin-right: 0;
  margin-left: 0;
  padding: 15px 30px;
  border: solid 4px #fff;
  -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15); }

.post .recipe a {
  color: #D98507;
  text-decoration: underline; }

.post .recipe a:hover {
  color: #ab4f27; }

.post .recipe img {
  background-image: none;
  margin: 0;
  padding: 0;
  border-style: none; }

.post .recipe h2 {
  color: #ab4f27;
  font-size: 24px;
  font-weight: normal;
  line-height: 24px;
  margin: 10px 0 3px; }

.post .recipe h3 {
  color: #ab4f27;
  font-size: 14px;
  font-family: MuseoSlab500;
  font-style: normal;
  font-weight: normal;
  text-transform: lowercase;
  margin: 15px 0 0;
  padding: 0; }

.post .recipe h4 {
  color: #6B6B6B;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 14px;
  text-transform: lowercase;
  margin: 7px 0 0;
  padding: 0; }

.post .recipe p {
  margin-top: 5px;
  margin-bottom: 13px;
  padding-top: 0;
  padding-bottom: 0; }

.post .recipe ul, .post .recipe ol {
  margin-top: 5px;
  margin-bottom: 13px;
  margin-left: 0;
  padding: 0; }

.post .recipe ul li {
  background-image: url("images/bullet_dot.png");
  background-repeat: no-repeat;
  background-position: 0 8px;
  list-style-type: none;
  list-style-image: none;
  margin: 0;
  padding: 0 0 0 12px; }

.post .recipe ol li {
  list-style-type: decimal;
  list-style-image: none;
  margin: 0 0 0 20px;
  padding: 0 0 0 0; }

.post .recipe .recipebuttons {
  text-align: center;
  margin: 5px -10px 15px 15px;
  width: 130px;
  float: right; }

.post .recipe .recipebuttons a {
  font-size: 16px;
  font-family: MuseoSlab500;
  text-decoration: none;
  margin-right: 5px;
  margin-left: 5px; }

.post .recipe .recipebuttons .photo {
  margin-bottom: 2px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.post .recipe .recipemeta, .post .recipe .summary {
  color: #6B6B6B;
  font-size: 12px; }

.post .recipe .notes p {
  color: #5C5C5C;
  font-size: 12px;
  line-height: 19px;
  margin-top: 1px;
  margin-bottom: 10px; }

.post .recipe .source {
  color: #6B6B6B;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 1px;
  margin-bottom: 10px; }

.post .recipe p.time {
  color: #6B6B6B;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 6px;
  float: left; }

.post .recipe p.time strong {
  font-weight: normal; }

.printbutton {
  float: right; }

/* Added styles for new theme */
.post .recipe h1, .post .recipe h2, .post .recipe h3, .post .recipe h4, .post .recipe h5, .post .recipe h6 {
  clear: none; }
.post .recipe h4 {
  color: #6B6B6B;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 14px;
  text-transform: lowercase;
  margin: 7px 0 0;
  padding: 0;
  font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif; }
@media (max-width: 600px) {
  .post .recipe {
    padding: 15px; } }

/* google custom search & feedburner */
.announcement h3,
.sidebar .gse-fb h3,
.gse-fb .feedburner input[type="text"] {
  font-size: 11px;
  color: #858783;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  margin: 0 0 2px; }

/* google custom search, feedburner */
.gse-fb input[type="text"] {
  background: #fff;
  border: 1px solid #c6c6c6;
  padding: 5px 3px 5px 5px;
  width: 120px; }

.gse-fb input[type="text"]:focus {
  border: 1px solid #A0A0A0; }

.gse-fb input[type="submit"] {
  border: 1px solid #bcbcbc;
  background: #b0b0b0;
  color: #fff;
  font-size: 15px;
  width: 25px;
  position: relative;
  top: 1px;
  left: 1px;
  padding: 0 1px 1px; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .gse-fb input[type="submit"] {
    padding-bottom: 2px;
    width: 27px; } }
.gse-fb input[type="submit"]:hover {
  cursor: pointer;
  background: #999; }

/* feedburner */
.gse-fb .feedburner {
  margin-top: 20px; }

.gse-fb .feedburner input[type="text"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(images/mail.jpg) 4px center no-repeat #fff;
  padding-left: 20px;
  width: 130px;
  height: 27px; }

/* sidebar */
.sidebar .gse-fb .feedburner {
  margin-top: 5px; }

.sidebar .gse-fb .feedburner input[type="text"] {
  height: 24px; }

.sidebar .gse-fb h3 {
  border-bottom: none; }

/* Custom, added styles for new theme */
#cse-search-box input[type="text"] {
  background: #fff !important;
  height: 24px; }

.sidebar #cse-search-box input[type="text"] {
  width: 130px; }

.comments-intro {
  font-size: 12px;
  color: #666;
  margin-left: 11px;
  margin-bottom: 11px; }
  .comments-intro .bracket {
    font-size: 18px;
    color: #CCC; }
  .comments-intro .comments-number {
    font-size: 19px;
    color: #000; }

.comment-list {
  border-top: 1px dotted #bbb;
  list-style: none;
  margin: 0;
  padding: 0; }
  .comment-list .comment {
    padding: 18px 0;
    border-bottom: 1px dotted #bbb; }
    .comment-list .comment .comment-author .author-link, .comment-list .comment .comment-author .author-link a {
      font-size: 16px;
      margin-right: 7px;
      color: #505050;
      font-weight: bold; }
    .comment-list .comment .comment-author .avatar {
      float: right;
      display: inline-block; }
    .comment-list .comment .comment-author .comment-meta {
      display: inline-block;
      font-size: 12px;
      color: #888; }
    .comment-list .comment .comment-text {
      padding: 11px 0; }
      .comment-list .comment .comment-text p {
        max-width: 620px; }
        .comment-list .comment .comment-text p:last-child {
          margin-bottom: 0; }
    .comment-list .comment .comment-reply-link {
      color: #888;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      font-size: 11px; }
  .comment-list .children {
    margin-left: 0; }
    .comment-list .children .comment {
      border-bottom: none; }
      .comment-list .children .comment .comment-body {
        padding-left: 20px;
        border-left: 2px solid #aaa; }
    .comment-list .children .comment.bypostauthor .comment-body {
      border-left: 2px solid #bde0e6; }

.comment-respond {
  margin-top: 40px; }
  .comment-respond .comment-reply-title {
    font-size: 17px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #bbb; }

.trackback_list {
  list-style: none;
  margin: 0;
  margin-bottom: 40px;
  padding-left: 12px; }
  .trackback_list a {
    color: #111; }

/* RELATED POSTS (pulled from old site) */
.related_thumbs {
  background: #efefef;
  padding: 15px;
  margin: 0;
  clear: both; }

.related_thumbs ul {
  overflow: hidden;
  margin: 0; }

.related_thumbs li {
  list-style: none;
  float: left;
  margin: 0 5px;
  width: 120px; }

.related_thumbs img {
  border: 1px solid #ddd;
  background: #fff;
  padding: 5px; }

.related_thumbs a.related_title {
  display: block;
  text-align: left;
  font: 12px/15px Arial, sans-serif;
  color: #5f5f5f;
  text-decoration: none; }

.related_thumbs a.related_title:hover {
  color: #3F2F00; }

.related_thumbs h3 {
  color: #444;
  margin: 0 0 10px; }

.shop_this_post {
  margin: 30px 0 !important; }

/* New additions */
.post .related_thumbs h3 {
  font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif;
  font-size: 18px; }
.post .related_thumbs ul {
  margin: 0; }
.post .related_thumbs img {
  border-image: none;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff; }
@media (max-width: 600px) {
  .post .related_thumbs ul li {
    width: 110px;
    display: inline-block;
    vertical-align: top;
    float: none; } }
.post .related_thumbs .related {
  font-family: "Gill Sans MT","Gill Sans",Calibri,"Trebuchet MS",sans-serif; }

.recipe-archive-list li {
  float: left;
  width: 50%;
  line-height: 1.8em; }
  .recipe-archive-list li a {
    color: #505050;
    text-decoration: underline; }

.recipe-archive-title {
  color: #CC6600 !important;
  font-size: 1.286em;
  line-height: 1.222em;
  margin: 1.833em 0 0.611em 0; }

#recipe_subscribe {
  float: none;
  margin: 15px 0px 5px 0px;
  clear: both;
  padding: 10px 2% 10px 2%;
  background-color: #efefef;
  *zoom: 1; }
  #recipe_subscribe:after {
    content: "";
    display: table;
    clear: both; }

#recipe_subscribe input {
  float: left;
  width: 150px;
  font-size: 11px;
  line-height: 24px;
  background-color: #ffffff; }

#recipe_subscribe .button {
  background-color: #ff9900;
  font-size: 11px;
  font-weight: normal;
  color: #ffffff;
  border: none;
  width: 65px;
  float: left;
  margin: 0px 0px 0px 10px;
  border-radius: 3px;
  cursor: pointer;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-top: 4px;
  padding-bottom: 4px;
  text-shadow: none; }

#recipe_subscribe .button:hover {
  background-color: #666; }

#subscribe_links {
  float: right;
  width: 300px;
  padding: 6px 0px 0px 35px;
  border-left: 1px solid #cbcbcb;
  margin: 1px 0px 0px 0px; }

#subscribe_links p {
  padding: 0px;
  line-height: 18px;
  margin: 0px 0px 6px 0px;
  float: left;
  clear: both;
  font-size: 12px; }
  #subscribe_links p a {
    color: #505050;
    text-decoration: underline; }

#subscribe_links img {
  float: left;
  margin: 0px 8px 0px 0px;
  border: 0;
  background-image: none;
  padding: 0px; }

.section-title {
  margin-bottom: 3px;
  color: #8b8b8b; }
  .section-title .title-first {
    font-family: 'Dancing Script', cursive; }
  .section-title .title-second {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase; }

#home-below-content {
  margin: 15px 0; }
  #home-below-content .widget {
    float: left;
    width: 50%; }
    @media (max-width: 600px) {
      #home-below-content .widget {
        width: 100%;
        float: none;
        margin-bottom: 5px; } }

.Center #BlogContent .related_thumbs {
  display: none; }

@media (min-width: 992px) {
.sticky-sidebar-ad {
    float: right;
    width: 33.36364%;
}
}

