/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
p {
  -webkit-hyphens: auto;
  -epub-hyphens:   auto;
  -moz-hyphens:    auto;
  hyphens:         auto;

}
*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

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

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* old: fdfaf7 */
/* #7d8891 */
/* darken($link-color, 9%); */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/*
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
      word-break: break-word;
     word-break: break-word;
  // cleaning up the ragged lines and breaks
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto;
  // sets a minimum number of characters before and after the break
  -webkit-hyphenate-before: 3;
   -webkit-hyphenate-after: 4;
           hyphenate-lines: 4;
  // enabling fancy ligatures when available
  -webkit-font-feature-settings: "liga", "dlig";
   -moz-font-feature-settings: "liga=1, dlig=1";
      -ms-font-feature-settings: "liga", "dlig";
       -o-font-feature-settings: "liga", "dlig";
          font-feature-settings: "liga", "dlig";
}
*/
/*********************
FONT ICONS
*********************/
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?l15s0y");
  src: url("../fonts/icomoon.eot?#iefixl15s0y") format("embedded-opentype"), url("../fonts/icomoon.woff?l15s0y") format("woff"), url("../fonts/icomoon.ttf?l15s0y") format("truetype"), url("../fonts/icomoon.svg?l15s0y#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'socialico_plusregular';
  src: url("socialico_plus-webfont.eot");
  src: url("socialico_plus-webfont.eot?#iefix") format("embedded-opentype"), url("socialico_plus-webfont.woff") format("woff"), url("socialico_plus-webfont.ttf") format("truetype"), url("socialico_plus-webfont.svg#socialico_plusregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'socialicoregular';
  src: url("socialico-webfont.eot");
  src: url("socialico-webfont.eot?#iefix") format("embedded-opentype"), url("socialico-webfont.woff") format("woff"), url("socialico-webfont.ttf") format("truetype"), url("socialico-webfont.svg#socialicoregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:after {
  font-family: 'icomoon';
  content: "\e602";
}

.icon-next:after {
  font-family: 'icomoon';
  content: "\e608";
}

.icon-prev:after {
  font-family: 'icomoon';
  content: "\e608";
}

.icon-close:after {
  font-family: 'icomoon';
  content: "\e601";
}

.icon-search:after {
  font-family: 'icomoon';
  content: "\e603";
}

.icon-location:after {
  font-family: 'icomoon';
  content: "\e604";
}

.icon-menu:after {
  font-family: 'icomoon';
  content: "\e605";
}

.icon-search:after {
  font-family: 'icomoon';
  content: "\e603";
}

.icon-close-nb:after {
  font-family: 'icomoon';
  content: "\e601";
}

.icon-check:after {
  font-family: 'icomoon';
  content: "\e607";
}

.icon-save:before {
  font-family: 'icomoon';
  content: "\e60e";
}

.iconFacebook:after {
  font-family: 'icomoon';
  content: "\e60f";
}

.iconInstagam:after {
  font-family: 'icomoon';
  content: "\e60d";
}

.iconTwitter:after {
  font-family: 'icomoon';
  content: "\e609";
}

.iconPinterest:after {
  font-family: 'icomoon';
  content: "\e60b";
}

.iconTumblr:after {
  font-family: 'icomoon';
  content: "\e613";
}

.iconlinkedin:after {
  font-family: 'icomoon';
  content: "\e800";
}

.iconMail:after {
  font-family: 'icomoon';
  content: "\e60c";
}

.icon-alone {
  display: inline-block;
  /* Fix for clickability issue in WebKit */
}

.screen-reader-text {
  /* Reusable, toolbox kind of class */
  position: absolute;
  top: -9999px;
  left: -9999px; }

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************


	col 1			5.7142857%
	col 2			14.2857143%
	col 3			22.8571429%
	col 4			31.4285714%
	col 5			40%
	col 6			48.5714286%
	col 7			57.1428571%
	col 8			65.7142857%
	col 9			74.2857143%
	col 10			82.8571429%
	col 11			91.4285714%
	col 12			100%

	all cols
		width: ;
		position: relative;
		float: left;
		margin-left: 2.8571429%;

	first col
		margin-left: 0;

	last col
		float: right;



******************************************************************/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #eac4c0;
  background: #f0d6d3;
}

.alert-success {
  border-color: #8a2817;
  background: #a02e1b;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn, .comment-reply-link, #submit, .button, input[type="submit"] {
  display: inline-block;
  position: relative;
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  text-decoration: none;
  /* color: $white; */
  /* font-size: 0.9em; */
  font-size: 0.8125em;
  line-height: 40px;
  font-weight: 600;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .button:hover, input[type="submit"]:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .button:focus, input[type="submit"]:focus {
  color: #fff;
  text-decoration: none;
}
.blue-btn:active, .comment-reply-link:active, #submit:active, .button:active, input[type="submit"]:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9;
}
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #2574a8;
}
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #2472a4;
}

.button {
  background-color: #31a288;
}
.button:hover, .button:focus {
  background-color: #2c927b;
}
.button:active {
  background-color: #2b8e78;
}

input[type="submit"] {
  background-color: #31a288;
  border-radius: 4px;
  line-height: 46px;
  padding-top: 0px;
  padding-bottom: 0px;
  min-height: 40px;
  height: 46px;
  line-height: 46px;
}
input[type="submit"].full {
  width: 100%;
}
input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #2c927b;
}
input[type="submit"]:active {
  background-color: #2b8e78;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #2a3133;
  border-radius: 5px;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #e1e6e7;
  width: 100%;
  font-family: "Lato", "open-sans", Verdana, Helvetica, sans-serif;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  font-size: 0.8125em;
  max-width: none;
  min-height: 40px;
  height: 46px;
  line-height: 46px;
}
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
  border-color: #a8b7ba;
  box-shadow: 0 0 5px rgba(51, 102, 248, 0.4);
}
input[type="text"].error, input[type="text"].is-invalid, input[type="text"].needsfilled,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="password"].needsfilled,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime"].needsfilled,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="datetime-local"].needsfilled,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="date"].needsfilled,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="month"].needsfilled,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="time"].needsfilled,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="week"].needsfilled,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="number"].needsfilled,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="email"].needsfilled,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="url"].needsfilled,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="search"].needsfilled,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="tel"].needsfilled,
input[type="color"].error,
input[type="color"].is-invalid,
input[type="color"].needsfilled,
select.error,
select.is-invalid,
select.needsfilled,
textarea.error,
textarea.is-invalid,
textarea.needsfilled,
.field.error,
.field.is-invalid,
.field.needsfilled {
  border-color: #a02e1b;
  background-color: #f0d6d3;
  background-position: 99% center;
  background-repeat: no-repeat;
  /*  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=); */
  outline-color: #f0d6d3;
}
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  border-color: #a02e1b;
  background-color: #f0d6d3;
  background-position: 99% center;
  background-repeat: no-repeat;
  /*  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==); */
  outline-color: #a02e1b;
}
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
input[type="submit"][disabled],
input[type="submit"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #e1e6e7;
  opacity: 0.6;
}
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select:not(.defaultstyle) {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/*********************
custom drop downs
*********************/
/* --- EASYDROPDOWN DEFAULT THEME --- */
/* PREFIXED CSS */
.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after {
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.dropdown .selected::after,
.dropdown.scrollable div::after {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
}

/* WRAPPER */
.dropdown {
  position: relative;
  border: 1px solid #e1e6e7;
  cursor: pointer;
  background: #fff;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: none;
  min-height: 40px;
  height: 46px;
  line-height: 46px;
}
.dropdown.needsfilled {
  border-color: #a02e1b;
  background-color: #f0d6d3;
  background-position: 99% center;
  background-repeat: no-repeat;
  outline-color: #f0d6d3;
}
.dropdown.needsfilled .blockthing {
  background: #f0d6d3;
}

.dropdown.open {
  z-index: 2;
}

.dropdown:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.dropdown.focus {
  box-shadow: 0 0 5px rgba(51, 102, 248, 0.4);
}

/* CARAT */
.dropdown .blockthing {
  position: absolute;
  right: 0px;
  top: 0px;
  margin-top: 0px;
  background: #2a3133;
  height: 100%;
  width: 40px;
  border-radius: 0 5px 5px 0;
}

.dropdown .carat {
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -4px;
  border: 6px solid transparent;
  border-top: 8px solid #fff;
  z-index: 1;
}

.dropdown.open .carat {
  margin-top: -10px;
  border-top: 6px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 9999;
}

.dropdown.disabled .carat {
  border-top-color: #e1e6e7;
}

/* OLD SELECT (HIDDEN) */
.dropdown .old {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.dropdown select {
  position: absolute;
  left: 0px;
  top: 0px;
}

.dropdown.touch .old {
  width: 100%;
  height: 100%;
}

.dropdown.touch select {
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* SELECTED FEEDBACK ITEM */
.dropdown .selected,
.dropdown li {
  display: block;
  font-size: 0.8125em;
  line-height: 1;
  color: #666;
  padding: 9px 12px;
  overflow: hidden;
  white-space: nowrap;
}

.dropdown .selected {
  padding-top: 1.30769em;
}

.dropdown.disabled .selected {
  color: #e1e6e7;
}

.dropdown .selected::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  border-radius: 0 5px 5px 0;
  box-shadow: inset -55px 0 25px -20px #fff;
}

/* DROP DOWN WRAPPER */
.dropdown div {
  position: absolute;
  height: 0;
  left: -1px;
  right: -1px;
  top: 100%;
  margin-top: -1px;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 1px solid #eee;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  opacity: 0;
}

/* Height is adjusted by JS on open */
.dropdown.open div {
  opacity: 1;
  z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */
.dropdown.scrollable div::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  box-shadow: inset 0 -50px 30px -35px #fff;
}

.dropdown.scrollable.bottom div::after {
  opacity: 0;
}

/* DROP DOWN LIST */
.dropdown ul {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  list-style: none;
  overflow: hidden;
}

.dropdown.scrollable.open ul {
  overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */
.dropdown li {
  list-style: none;
  padding: 8px 12px;
}

/* .focus class is also added on hover */
.dropdown li.focus {
  background: #31a288;
  position: relative;
  z-index: 3;
  color: #fff;
}

.dropdown li.active {
  font-weight: 700;
}

/*********************
checkboxes
*********************/
/*
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!IMPORTANT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
	You need to have a <span></span> inside of checkbox <label></label> tags
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label span {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: -1px 10px 0 0;
  vertical-align: middle;
  background: url(../images/check_radio_sheet.png) left top no-repeat;
  cursor: pointer;
}

input[type="checkbox"]:checked + label span {
  background: url(../images/check_radio_sheet.png) -25px top no-repeat;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label span {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  background: url(../images/check_radio_sheet.png) -49px top no-repeat;
  cursor: pointer;
}

input[type="radio"]:checked + label span {
  background: url(../images/check_radio_sheet.png) -74px top no-repeat;
}

.tribe-events-notices {
  color: #a02e1b;
  border-color: #a02e1b;
  background-color: #f0d6d3; }

/*********************
contestForm focus
*********************/
#contestForm .option-wrap {
  position: relative; }

#contestForm .option-wrap input[type="checkbox"] {
  display: block;
  opacity: 0;
  position: absolute; }

#contestForm .option-wrap input[type="checkbox"]:focus + label span {
  outline-color: #4d90fe;
  outline-offset: -2px;
  outline-style: auto;
  outline-width: 5px; }

.select2wpupg-container--default:focus {
  outline-color: #4d90fe;
  outline-offset: -2px;
  outline-style: auto;
  outline-width: 5px; }

span.select2wpupg-selection.select2wpupg-selection--multiple:focus {
  border: 3px solid #5099E2 !important; }

/******************************************************************
Site Name:
Author: JENNY

Stylesheet: Events Styles



******************************************************************/

.tribe-filter-live.events-list a.newVeiwMonth {
	display: none;
}


.tribe-filter-live.events-gridview {
  /*cal top filter*/
  /*Calendar Sidebar*/
  /*Remove Calendar Borders*/
  /*Calendar General Layout*/
}
.tribe-filter-live.events-gridview .tribe-bar-date-filter, .tribe-filter-live.events-gridview .tribe-bar-search-filter {
  width: 40%;
  float: left;
}
.tribe-filter-live.events-gridview .tribe-bar-submit {
  width: 20%;
  float: right;
}
.tribe-filter-live.events-gridview #tribe-bar-dates input, .tribe-filter-live.events-gridview .tribe-bar-search-filter input {
  max-width: 220px !important;
}
.tribe-filter-live.events-gridview .tribe-bar-submit input {
  border: none;
  background-color: #31a288;
  border-radius: 5px;
  color: #fff;
  padding: 10px 24px;
  text-transform: uppercase;
  font-size: 0.8125em;
}
.tribe-filter-live.events-gridview #tribe-bar-collapse-toggle {
  display: none;
}
.tribe-filter-live.events-gridview .entry-content {
  background-color: #fff;
}
.tribe-filter-live.events-gridview .cal-arrow-n {
  color: #fff !important;
  text-align: right !important;
  background-image: url("images/cal_arrowforward.gif");
  background-repeat: no-repeat;
  float: right;
  padding: 0 !important;
  margin: 0 !important;
  width: 40px;
  height: 41px;
}
.tribe-filter-live.events-gridview .cal-arrow-p {
  color: #fff !important;
  text-align: right !important;
  background-image: url("images/cal-arrowback.gif");
  background-repeat: no-repeat;
  float: left;
  padding: 0 !important;
  margin: 0 !important;
  width: 41px;
  height: 41px;
}
.tribe-filter-live.events-gridview .tribe-events-nav-next a {
  color: #fff !important;
  text-align: left !important;
}
.tribe-filter-live.events-gridview .tribe-events-nav-previous a {
  color: #fff !important;
  text-align: right !important;
}
.tribe-filter-live.events-gridview #tribe-events-header {
  background-color: #2a3133;
  margin-bottom: 0 !important;
  padding: 5px 0;
  min-height: 40px;
}
.tribe-filter-live.events-gridview .tribe-events-nav-previous {
  float: left;
}
.tribe-filter-live.events-gridview .tribe-events-nav-next {
  float: right;
}
.tribe-filter-live.events-gridview #tribe-events-sidebar {
  width: 25%;
  float: left;
}
.tribe-filter-live.events-gridview #tribe-events-bar {
  width: 100%;
  background-color: #fff;
}
.tribe-filter-live.events-gridview #tribe-events-content {
  width: 100%;
    background-color: #fff; }
    
    

    
.entry-content .mainEventStuff img {
	    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 0em;
}

.tribe-events-content {
	margin-top: 1.25em;
}
    
.entry-content .mainEventStuff p {
	 margin-bottom: 0px;
 }
 
.mainEventStuff ul {
	list-style: disc;
    margin-left: 40px;
    font-size: 0.8125em;
    color: #666; 
}

.mainEventStuff abbr {
	text-decoration: none;
}

.mainEventStuff .tribe-events-meta-group-venue {
	padding-right: 10px;
}

.single-tribe_events .tribe-events-meta-group-details {
/* 	margin-top: -22px; */
}

.tribe-filter-live .mainEventStuff .tribe-events-event-meta {
/*
	display: block;
	border-top: 0px;
*/
}

.mainEventStuff .tribe-events-meta-group h4{
    padding: 0 0 .05em;
    letter-spacing: 0.77px;
}
.mainEventStuff .tribe-events-meta-group dt {
    padding: 0 0 .24em;
    letter-spacing: 0.77px;
}

.mainEventStuff .tribe-events-meta-group dd {
	font-size: 13px;
	color: #2a3133;
}
 
.single-tribe_events .mainEventStuff .tribe-events-event-meta {
	width: 100%;
    margin: 15px 0 20px;
}

@media (max-width: 767px) {
    .single-tribe_events .mainEventStuff .tribe-events-event-meta {
	    margin: 20px 0px 0px 0px;
	    padding-top: 10px;
    }
    .entry-content .mainEventStuff dd {
	    border-bottom: 1px solid #bbb;
	    padding-bottom: 20px;
    }
    .entry-content .mainEventStuff .timeMetaGroup dd {
	   margin-bottom: 40px;
    }
    .mainEventStuff .tribe-events-meta-group-venue {
	    padding-right: 0px;
    }
}
    
    
.tribe-filter-live.events-gridview .tribe-events-after-html {
  width: 100%;
  		/*
  width:75%;
  		background-color:$white;
  		float:right;
  		padding-left:2%;
  		padding-right:2%;
  */
}
.tribe-filter-live.events-gridview .tribe-events-before-html {
  width: 100%;
  		/*
  width:75%;
  		background-color:$white;
  		float:right;
  		padding-left:2%;
  		padding-right:2%;
  */
}
.tribe-filter-live.events-gridview .entry-content tr:nth-child(2n) {
  background-color: #f4f1ee !important;
}
.tribe-filter-live.events-gridview .entry-content th {
  border-right: 1px solid #e1e6e7 !important;
  border-left: 1px solid #e1e6e7 !important;
  border-bottom: none !important;
  border-top: none !important;
  background-color: #f4f1ee !important;
}
.tribe-filter-live.events-gridview .tribe-events-page-title {
  color: #fff;
  font-size: 13px;
  height: 1px;
}
.tribe-filter-live.events-gridview .tribe-events-page-title span {
  display: none;
}
.tribe-filter-live.events-gridview .hentry {
  background-color: transparent !important;
  border: 0 !important;
}
.tribe-filter-live.events-gridview .tribe-events-calendar div[id*="tribe-events-event-"] h3.entry-title a {
  font-weight: 600 !important;
  font-size: 1.15em !important;
}
.tribe-filter-live.events-gridview .tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"], .tribe-filter-live.events-gridview .tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"] > a {
  color: #e1e6e7 !important;
}
.tribe-filter-live.events-gridview #tribe-events-content table.tribe-events-calendar {
  margin: 0 0 0.6em;
}
.tribe-filter-live.events-gridview #tribe-events-content .tribe-events-calendar td {
  height: 120px !important;
}
.tribe-filter-live.events-gridview #tribe-events-content table.tribe-events-calendar, .tribe-filter-live.events-gridview #tribe-events-content .tribe-events-calendar td {
  border-right: 1px solid #e1e6e7;
  border-left: none !important;
  border-top: none !important;
  border-bottom: none !important;
}
.tribe-filter-live.events-gridview #tribe-events-content table.tribe-events-calendar, .tribe-filter-live.events-gridview #tribe-events-content .tribe-events-calendar td:last-child {
  border-right: none !important;
}
.tribe-filter-live.events-gridview .vcalendar {
  border-bottom: 1px solid #e1e6e7;
  border-right: 1px solid #e1e6e7;
  border-left: 1px solid #e1e6e7;
}
.tribe-filter-live.events-gridview .entry-content tr {
  border-bottom: none !important;
}
.tribe-filter-live.events-gridview .tribe-events-calendar td div[id*="tribe-events-daynum-"] {
  text-align: center;
  font-weight: normal;
}
.tribe-filter-live.events-gridview h1 {
  font-size: 2em !important;
}
.tribe-filter-live.events-gridview .classes {
  margin: 1.25em 0 0 0 !important;
}
.tribe-filter-live.events-gridview .subHead {
  font-size: 1.25em !important;
  margin: 0 !important;
}
.tribe-filter-live.events-gridview #tribe-events-footer {
  display: none !important;
}
.tribe-filter-live.events-gridview .calwrap {
  width: 100%;
  		/*
  float:left;
  		background-color:$white;
  		padding-left:2%;
  */
}
.tribe-filter-live.events-gridview #tribe-events-content-wrapper {
  width: 100%;
  padding: 0;
}
.tribe-filter-live.events-gridview .entry-content {
  padding: 0 !important;
}
.tribe-filter-live.events-gridview #content {
  background: #f4f1ee !important;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZGZhZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) !important;
  background: -moz-linear-gradient(left, #f4f1ee 50%, #fff 50%) !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f4f1ee), color-stop(50%, #fff)) !important;
  background: -webkit-linear-gradient(left, #f4f1ee 50%, #fff 50%) !important;
  background: -o-linear-gradient(left, #f4f1ee 50%, #fff 50%) !important;
  background: -ms-linear-gradient(left, #f4f1ee 50%, #fff 50%) !important;
  background: linear-gradient(to right, #f4f1ee 50%, #fff 50%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$off-white', endColorstr='$white',GradientType=1 ) !important;
}
.tribe-filter-live.events-gridview #banner {
  display: none;
}
.tribe-filter-live.events-gridview .article-header {
  display: none;
}
.tribe-filter-live.events-gridview .tribe-events-nav-previous {
  background: url(../images/events/cal-arrowback.gif) center center no-repeat;
  text-indent: -9999px;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}
.tribe-filter-live.events-gridview .tribe-events-nav-next {
  background: url(../images/events/cal_arrowforward.gif) center center no-repeat;
  text-indent: -9999px;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as/mnt/data/sites/lunds/wp-content/themes/lunds/library/scss/breakpoints/_base.scss
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #2a3133;
  background-color: #2a3133;
  -webkit-font-smoothing: antialiased;
}

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

#content {
  /* background: $white; */
}

.group:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

* html .group {
  zoom: 1;
}

/* IE6 */
*:first-child + html .group {
  zoom: 1;
}

/* IE7 */
/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
.archive #inner-content {
  		/*
  width: 100%;
  		max-width: em(510px);
  		margin: 0 auto;
  */
}
.archive #main {
  padding-top: 20px;
}
.archive .byline {
  display: none;
}
.archive article {
  padding: 1.25em 3.125%;
  border-bottom: 1px solid #b9c2c8;
}
.archive .entry-content p {
  margin-bottom: 0px;
}

/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
.search-results, .search-no-results, .page-template-archive-php {
  /*
  .wrapper {
  	background: $white;
  }
  */
}
.search-results .pageTitle, .search-no-results .pageTitle, .page-template-archive-php .pageTitle {
  text-align: center;
  margin-bottom: 1.25em;
}
.search-results #subNavigation .menu, .search-no-results #subNavigation .menu, .page-template-archive-php #subNavigation .menu {
  display: none;
}
.search-results .wrap, .search-no-results .wrap, .page-template-archive-php .wrap {
  width: 100%;
}
.search-results .innerWrap, .search-no-results .innerWrap, .page-template-archive-php .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}
.search-results .searchAgain, .search-no-results .searchAgain, .page-template-archive-php .searchAgain {
  clear: both;
  min-height: 2.75em;
  margin-bottom: 1.25em;
}
.search-results .searchAgain h3, .search-no-results .searchAgain h3, .page-template-archive-php .searchAgain h3 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  letter-spacing: 0.035em;
  font-size: 1.125em;
  margin-bottom: 0.9375em;
}
.search-results .searchAgain input, .search-no-results .searchAgain input, .page-template-archive-php .searchAgain input {
  box-sizing: border-box;
}
.search-results .searchAgain #oss-keyword, .search-results .searchAgain input#s, .search-no-results .searchAgain #oss-keyword, .search-no-results .searchAgain input#s, .page-template-archive-php .searchAgain #oss-keyword, .page-template-archive-php .searchAgain input#s {
  min-width: none;
  max-width: none;
  width: 75%;
  position: relative;
  float: left;
  border-radius: 4px 0 0 4px;
  margin-bottom: 10px;
}
.search-results .searchAgain #oss-submit, .search-results .searchAgain #searchsubmit, .search-no-results .searchAgain #oss-submit, .search-no-results .searchAgain #searchsubmit, .page-template-archive-php .searchAgain #oss-submit, .page-template-archive-php .searchAgain #searchsubmit {
  width: 25%;
  position: relative;
  float: left;
  border-radius: 0 4px 4px 0;
  min-height: 39px;
  margin-bottom: 0px;
  padding: 0px;
}
.search-results .wrapper .pagination, .search-no-results .wrapper .pagination, .page-template-archive-php .wrapper .pagination {
  clear: both;
  width: inherit;
  margin: 0px;
  padding: 1.5em 0;
}

/* search result page */
.search-no-results #content {
  padding: 30px 0px;
}
.search-no-results #banner.noContent {
  padding-top: 0px;
}
.search-no-results .searchAgain {
  border-top: 1px solid #e1e6e7;
  padding-top: 1.25em;
  margin-top: 1.25em;
}

/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
.page-template-404-php {
  	/*
  #header {
  		background: $off-white;
  	}

  	#inner-header.wrap {
  		max-width: none;
  	}

  	#outerHeader {
  		@extend .basic-shadow;
  	}
  */
}
.page-template-404-php #main {
  text-align: center;
  padding-bottom: 1.875em;
}
.page-template-404-php #banner {
  display: none;
}
.page-template-404-php .article-header h1, .page-template-404-php .article-header .h1, .page-template-404-php .article-header h2, .page-template-404-php .article-header .h2, .page-template-404-php .article-header h3, .page-template-404-php .article-header .h3, .page-template-404-php .article-header h4, .page-template-404-php .article-header .h4, .page-template-404-php .article-header h5, .page-template-404-php .article-header .h5 {
  font-size: 5em;
  margin-bottom: 0em;
}
.page-template-404-php .entry-content p {
  margin-bottom: 0.3125em;
}
.page-template-404-php #searchform #s {
  max-width: none;
}

/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */

.HeaderFooterless #header, .HeaderFooterless footer, .HeaderFooterless #subNavigation>div {
	display: none; }

.page-child .wrap, .page-template-page-genericinfocomplex-php .wrap, .single-video .wrap {
  width: 100%; }
  .page-child .wrap .innerWrap, .page-template-page-genericinfocomplex-php .wrap .innerWrap, .single-video .wrap .innerWrap {
    width: 93.75%;
    margin: 0 auto; }

.page-child #banner, .page-template-page-genericinfocomplex-php #banner, .single-video #banner {
  display: none; }

.page-child #subNavigation, .page-template-page-genericinfocomplex-php #subNavigation, .single-video #subNavigation {
  padding: 0.5625em 2% 0.6875em; }
  .page-child #subNavigation ul.menu, .page-template-page-genericinfocomplex-php #subNavigation ul.menu, .single-video #subNavigation ul.menu {
    display: none; }

.page-child #main, .page-template-page-genericinfocomplex-php #main, .single-video #main {
  background: #fff; }

.page-child .pageTitle, .page-template-page-genericinfocomplex-php .pageTitle, .single-video .pageTitle {
  font-size: 1.875em;
  font-weight: normal;
  padding-top: 0.9375em; }

.page-child .subTitle, .page-template-page-genericinfocomplex-php .subTitle, .single-video .subTitle {
  color: #666;
  margin: -0.9375em 0 0.9375em 0; }

.page-child h3, .page-child .h3, .page-template-page-genericinfocomplex-php h3, .page-template-page-genericinfocomplex-php .h3, .single-video h3, .single-video .h3 {
  font-size: 1.125em; }

.page-child .rslides, .page-template-page-genericinfocomplex-php .rslides, .single-video .rslides {
  margin-bottom: 0.9375em; }

.page-child #reuseDonate .image, .page-template-page-genericinfocomplex-php #reuseDonate .image, .single-video #reuseDonate .image {
  display: none; }

.page-child .button, .page-template-page-genericinfocomplex-php .button, .single-video .button {
  margin-top: 0.625em;
  margin-bottom: 1.25em; }

.page-child #photoGallery img, .page-template-page-genericinfocomplex-php #photoGallery img, .single-video #photoGallery img {
  max-width: 100%; }

.page-child .pressRelease, .page-template-page-genericinfocomplex-php .pressRelease, .single-video .pressRelease {
  margin-bottom: 1.25em; }

.page-child #counter .theNumber, .page-template-page-genericinfocomplex-php #counter .theNumber, .single-video #counter .theNumber {
  font-weight: 600;
  font-size: 0.8125em; }
  .page-child #counter .theNumber .digit, .page-template-page-genericinfocomplex-php #counter .theNumber .digit, .single-video #counter .theNumber .digit {
    color: #fff;
    display: inline-block;
    background: #2a3133;
    padding: 0.9375em 0.875em;
    margin: 0.1875em;
    border-radius: 0.3125em; }
  .page-child #counter .theNumber .comma, .page-template-page-genericinfocomplex-php #counter .theNumber .comma, .single-video #counter .theNumber .comma {
    vertical-align: bottom; }

.page-child .page-item-2629, .page-child .page-item-2631, .page-template-page-genericinfocomplex-php .page-item-2629, .page-template-page-genericinfocomplex-php .page-item-2631, .single-video .page-item-2629, .single-video .page-item-2631 {
  display: none; }

.page-child .donationRequest, .page-template-page-genericinfocomplex-php .donationRequest, .single-video .donationRequest {
  padding-top: 1.25em; }

.page-child aside .finePrint, .page-template-page-genericinfocomplex-php aside .finePrint, .single-video aside .finePrint {
  padding-bottom: 2em; }

.page-child .aFeaturedContentBox.box1, .page-child .aContentBox.box1, .page-template-page-genericinfocomplex-php .aFeaturedContentBox.box1, .page-template-page-genericinfocomplex-php .aContentBox.box1, .single-video .aFeaturedContentBox.box1, .single-video .aContentBox.box1 {
  border-top: 1px solid #e1e6e7; }

.page-child #main .aTextChunk, .page-template-page-genericinfocomplex-php #main .aTextChunk, .single-video #main .aTextChunk {
  max-width: 100%; }
  .page-child #main .aTextChunk p, .page-template-page-genericinfocomplex-php #main .aTextChunk p, .single-video #main .aTextChunk p {
    max-width: 500px; }
  .page-child #main .aTextChunk.divided, .page-template-page-genericinfocomplex-php #main .aTextChunk.divided, .single-video #main .aTextChunk.divided {
    border-top: 1px solid #e1e6e7;
    padding-top: 1.25em;
    margin-top: 0em; }
  .page-child #main .aTextChunk.first, .page-template-page-genericinfocomplex-php #main .aTextChunk.first, .single-video #main .aTextChunk.first {
    border-top: 0px none;
    padding-top: 0em;
    margin-top: 0em; }
  .page-child #main .aTextChunk .h3, .page-template-page-genericinfocomplex-php #main .aTextChunk .h3, .single-video #main .aTextChunk .h3 {
    margin-top: 0px; }
  .page-child #main .aTextChunk.hasImage .h3, .page-template-page-genericinfocomplex-php #main .aTextChunk.hasImage .h3, .single-video #main .aTextChunk.hasImage .h3 {
    margin-top: 1.25em; }
  .page-child #main .aTextChunk ul, .page-template-page-genericinfocomplex-php #main .aTextChunk ul, .single-video #main .aTextChunk ul {
    list-style: disc;
    padding-left: 1em;
    color: #666; }
    .page-child #main .aTextChunk ul p, .page-template-page-genericinfocomplex-php #main .aTextChunk ul p, .single-video #main .aTextChunk ul p {
      top: 2px;
      position: relative;
      padding: 0 0 0.3125em 0.3125em; }
    .page-child #main .aTextChunk ul li, .page-template-page-genericinfocomplex-php #main .aTextChunk ul li, .single-video #main .aTextChunk ul li {
      font-size: 0.8125em;
      padding-bottom: 0.625em; }
    .page-child #main .aTextChunk ul li:last-child, .page-template-page-genericinfocomplex-php #main .aTextChunk ul li:last-child, .single-video #main .aTextChunk ul li:last-child {
      padding-bottom: 1.25em; }

/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
.sitemap .orphans li.page_item_has_children {
  display: none; }

.sitemap li {
  padding-left: 40px;
  list-style: none; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 93.75%;
  margin: 0 auto;
  /* border: 1px solid #f00; */ }

.basic-shadow, #outerHeader, .fullSubFeature, .page-template-page-difference-php .subfeature, .page-template-page-difference-php #subFeaturedBoxes, .page-template-page-holiday-php .subfeature, .page-template-page-holiday-php #subFeaturedBoxes, .page-template-page-farm-php #main, .page-id-2567 #main, .page-template-page-recipesandexpertise-php #featuredContent {
  margin-bottom: 0.9375em;
  -moz-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  filter: progid:DXImageTransform.Microsoft.Shadow(strength = 5, direction = 180, color = '#000000');
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength = 5, Direction = 180, Color = '#000000')"; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #2a3133;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #31a288;
}
a:active, a:focus, a:visited:active, a:visited:focus {
  outline: none;
}
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
a.button, a:visited.button {
  color: #fff;
}
a.button.full, a:visited.button.full {
  width: 100%;
  text-align: center;
}
a.textLink:after, a:visited.textLink:after {
  font-family: 'icomoon';
  content: "\00a0\e602";
  margin-left: 0px;
  position: relative;
  top: 2px;
}
a.backLink, a:visited.backLink {
  font-weight: 600;
}
a.backLink:before, a:visited.backLink:before {
  font-family: 'icomoon';
  content: "\e602";
  margin-left: 5px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 0.625em;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
a.backLink:after, a:visited.backLink:after {
  content: "";
}

span.textLink:after {
  font-family: 'icomoon';
  content: "\00a0\e602";
  margin-left: 0px;
  position: relative;
  top: 2px;
}

#main p a, #main p a:visited, aside p a, aside p a:visited {
  color: #31a288;
  text-decoration: none;
  /* on hover */
}
#main p a:hover, #main p a:focus, #main p a:visited:hover, #main p a:visited:focus, aside p a:hover, aside p a:focus, aside p a:visited:hover, aside p a:visited:focus {
  color: #31a288;
}

#main article section {
  clear: both;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  letter-spacing: .035em;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
  font-family: TradeGothicNextLTPro-Cn, "tablet-gothic-condensed", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

h2, .h2 {
  font-size: 1.375em;
  text-transform: uppercase;
  /* font-weight: bold; */
  line-height: 1.4em;
  margin-bottom: 0.375em;
  font-family: TradeGothicNextLTPro-Cn, "tablet-gothic-condensed", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

h3, .h3 {
  font-size: 1.0625em;
  margin-bottom: 0.9375em;
}

h4, .h4 {
  font-size: 0.8125em;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.25em;
}

h5, .h5 {
  font-size: 1.0625em;
  line-height: 2.09em;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
}

p {
  color: #666;
  font-size: 0.8125em;
  padding-bottom: 0.9375em;
}

.finePrint {
  color: #666;
  font-size: 0.53846em;
  margin-top: 1.15385em;
}
.finePrint h3, .finePrint .h3, .finePrint h4, .finePrint .h4, .finePrint h5, .finePrint .h5 {
  font-weight: bold;
  font-size: 1em;
}

ol {
  list-style: decimal;
  padding-left: 1.25em;
}

.tight {
  margin-bottom: 0.25em;
}

ul.list {
  list-style: disc;
  padding-left: 1em;
  color: #666;
  font-size: 0.4375em;
}
ul.list p {
  top: 2px;
  position: relative;
  font-size: 1.85714em;
  padding: 0 0 0.3125em 0.3125em;
}

ul[type=disc] {
  list-style: disc;
  padding-left: 1em;
  color: #666;
}
ul[type=disc] p {
  top: 2px;
  position: relative;
  padding: 0 0 0.3125em 0.3125em;
}

#simpleContentArea ul {
  list-style: disc;
  padding-left: 1em;
  color: #666;
  font-size: 0.4375em;
}
#simpleContentArea ul li {
  top: 2px;
  position: relative;
  font-size: 1.85714em;
  padding: 0 0 0.3125em 0.3125em;
}
#simpleContentArea ul li ul {
  font-size: 7px;
  list-style: circle;
}

/*********************
HEADER STYLES
*********************/
.header {
  background-color: #fff;
}

#inner-header {
  overflow: hidden;
}

#logo {
  width: 48.5714286%;
  position: relative;
  float: left;
  margin-left: 0;
  /* padding: 0 1.5238095%; */
  margin-top: 0.1875em;
  margin-bottom: 0.1875em;
}
#logo a {
  color: #fff;
}
#logo a img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  max-width: 243px;
}

#logo_print {
  display: none;
}

#searchDrawer {
  display: none;
  background: #2a3133;
  clear: both;
  overflow: auto;
  padding-top: 10px;
}
#searchDrawer #oss-search-form {
  margin-top: 0px;
}
#searchDrawer #oss-search-form form {
  margin: 0px;
      width: 100%; }
    #searchDrawer #oss-search-form label.search-label {
      display: block;
      left: -9999px;
      position: absolute; }
#searchDrawer #oss-keyword, #searchDrawer input#s {
  min-width: none;
  max-width: none;
  width: 75%;
  position: relative;
  float: left;
  border-radius: 4px 0 0 4px;
  margin-bottom: 10px;
  padding: 0px 10px;
}
#searchDrawer #oss-submit, #searchDrawer #searchsubmit {
  width: 25%;
  position: relative;
  float: left;
  border-radius: 0 4px 4px 0;
  min-height: 39px;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
#searchDrawer .oss-autocompletelist {
  width: 100%;
  position: inherit;
}
#searchDrawer .oss-autocomplete_link {
  padding: 10px 6px;
  color: #2a3133;
}
#searchDrawer .oss-autocomplete_link:hover {
  padding: 10px 6px;
}
#searchDrawer .oss-autocomplete {
  width: 100%;
  left: 0px;
  margin-top: -10px;
  top: 35px;
  margin-bottom: 20px;
}

#appinfo, #alertbanner {
  display: none;
  background: #2a3133;
  color: #666;
  overflow: auto;
  clear: both;
  padding: 15px 0 15px;
}
#appinfo li, #alertbanner li {
  float: left;
  font-size: 0.75em;
}
#appinfo li a, #alertbanner li a {
  color: #b9c2c8;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 0.85em;
  margin: .75em 0;
}
#appinfo li a:hover, #appinfo li a:focus, #alertbanner li a:hover, #alertbanner li a:focus {
  color: #31a288;
}
#appinfo li:last-child, #alertbanner li:last-child {
  float: none;
  position: absolute;
  right: 0;
  margin-top: -12px;
}
#appinfo li.openapp, #alertbanner li.openapp {
  border-left: 1px solid #666;
}
#appinfo li.downloadapp a:before, #alertbanner li.downloadapp a:before {
  font-family: 'icomoon';
  content: "\e600";
  position: relative;
  top: 6px;
  line-height: 0px;
  padding-right: 3px;
  font-size: 1.875em;
}
#appinfo #appCloseBtn .icon-close, #alertbanner #appCloseBtn .icon-close {
  color: #31a288;
}
#appinfo .icon-close:after, #alertbanner .icon-close:after {
  font-size: 1.875em;
  line-height: 0px;
  position: absolute;
  top: 21px;
  right: 9px;
}

#alertbanner {
  background: #f0d6d3;
  padding: 0.3125em 0 0.5em;
}
#alertbanner .subTitle {
  font-size: 1em;
  padding: 0px;
  margin: 0px;
}
#alertbanner .alertbannertext {
  width: 93.75%;
  margin: 0 auto;
}
#alertbanner .alertbannertext p {
  padding: 0px;
  margin: 0px;
}
#alertbanner #alertCloseBtn {
  top: 0;
  margin-top: 0px;
}

#mobileNav {
  width: 48.5714286%;
  position: relative;
  margin-left: 02.8571429%;
  float: right;
  margin-top: -1.125em;
}
#mobileNav div {
  display: inline-block;
  float: right;
  margin-top: 2.9375em;
  margin-left: 10%;
}
#mobileNav div:last-child {
  margin-left: 0px;
}
#mobileNav .icon-alone span {
  font-size: 1.875em;
  line-height: 0px;
}
#mobileNav .icon-alone span:after {
  color: #666;
}

#submenu {
  clear: both;
}

#mainMenu {
  clear: both;
}

#banner {
  padding-top: 171px;
  /* 275px */
  background-size: cover;
  background-position: center center;
  	/*
  &.noContent {
  		display: none;
  	}
  */
}
#banner #bannerContent {
  background: #2a3133;
}
#banner #bannerContent #inner-banner {
  display: table;
  color: #fff;
}
#banner #bannerContent #inner-banner h2 {
  font-family: TradeGothicNextLTPro-Cn, "tablet-gothic-condensed", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 1.625em;
  color: #fff;
  padding: 0.76923em 0px 0px 0px;
  margin: 0px;
  font-weight: 100;
}
#banner #bannerContent #inner-banner h2 a {
  color: #fff;
}
#banner #bannerContent #inner-banner p {
  color: #7d8891;
  padding: 0px 0px 0px 0px;
  margin: 0px;
}
#banner #bannerContent #inner-banner .button {
  display: none;
}
#banner #bannerContent #inner-banner .text {
  width: 82.8571429%;
  position: relative;
  float: left;
  margin-left: 0%;
  margin-bottom: 1.25em;
}
#banner #bannerContent #inner-banner .arrow {
  display: table-cell;
  vertical-align: middle;
  				/*
  width: 14.2857143%;
  				position: relative;
  				float: right;
  				margin-left: 2.8571429%;
  				margin-top: 81px;
  */
}
#banner #bannerContent #inner-banner .arrow a {
  font-size: 1.5625em;
  color: #31a288;
  float: right;
}

.inner-exploreLinks {
  background-size: 0%;
}

#featuredContent, #featuredBoxes, .featuredBoxes, #subFeaturedBoxes {
  background: #f4f1ee;
  overflow: auto;
}
#featuredContent .wrap, #featuredBoxes .wrap, .featuredBoxes .wrap, #subFeaturedBoxes .wrap {
  width: 100%;
}
#featuredContent .wrap .innerWrap, #featuredBoxes .wrap .innerWrap, .featuredBoxes .wrap .innerWrap, #subFeaturedBoxes .wrap .innerWrap {
  width: 93.75%;
  margin: 10px auto;
}
#featuredContent .gallery__controls-prev, #featuredBoxes .gallery__controls-prev, .featuredBoxes .gallery__controls-prev, #subFeaturedBoxes .gallery__controls-prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#featuredContent .galleryControls, #featuredBoxes .galleryControls, .featuredBoxes .galleryControls, #subFeaturedBoxes .galleryControls {
  display: none;
}
#featuredContent .textLink, #featuredBoxes .textLink, .featuredBoxes .textLink, #subFeaturedBoxes .textLink {
  display: none;
}
#featuredContent .h4, #featuredBoxes .h4, .featuredBoxes .h4, #subFeaturedBoxes .h4 {
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  /* letter-spacing: .1em; */
}
#featuredContent .heading, #featuredBoxes .heading, .featuredBoxes .heading, #subFeaturedBoxes .heading {
  width: 93.75%;
  margin: 23px auto 10px auto;
}
#featuredContent.magazine, #featuredBoxes.magazine, .featuredBoxes.magazine, #subFeaturedBoxes.magazine {
  padding: 3.125%;
}

.boxArea {
  overflow: auto;
}

.aFeaturedContentBox, .aContentBox {
  overflow: auto;
  border-bottom: 1px solid #e1e6e7;
}
.aFeaturedContentBox a, .aFeaturedContentBox .notaLink, .aContentBox a, .aContentBox .notaLink {
  display: table;
  width: 100%;
}
.aFeaturedContentBox .h4, .aContentBox .h4 {
  width: 62.5%;
  display: table-cell;
  vertical-align: middle;
  padding-left: 1.25em;
  position: relative;
}
.aFeaturedContentBox .h4:after, .aContentBox .h4:after {
  font-family: 'icomoon';
  content: "\e602";
  line-height: 0px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: 3.125%;
  font-size: 1.53846em;
}
.aFeaturedContentBox .h4 span, .aContentBox .h4 span {
  padding-right: 3.125em;
  display: block;
}
.aFeaturedContentBox .notaLink .h4:after, .aContentBox .notaLink .h4:after {
  content: " ";
}
.aFeaturedContentBox img, .aContentBox img {
  margin-left: 0%;
  width: 100%;
  		            /*

  		max-height: 100%;
  */
  display: table-cell;
  vertical-align: top;
  		/*
  max-height: 143px;
  		max-width: 240px;
  */
}
.aFeaturedContentBox p, .aContentBox p {
  display: none;
}
.aFeaturedContentBox.pastLimit, .aContentBox.pastLimit {
  display: none;
}
.aFeaturedContentBox:hover a, .aContentBox:hover a {
  color: #31a288;
}

#contactBanner {
  -webkit-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: auto;
  background: white;
  width: 100%;
}

#getNewsletter {
  margin-top: 0.9375em;
}
#getNewsletter input#email {
  width: 100%;
  max-width: none;
  position: relative;
  float: none;
  height: 47px;
  line-height: 47px;
}
#getNewsletter #submit-button {
  width: 100%;
  position: relative;
  float: none;
  min-height: 39px;
  margin-bottom: 20px;
}
#getNewsletter .heading.justText h2 {
  display: none;
}

.page-template-page-landingpage-php #signUpBanner #getNewsletter.firstthing {
  padding-top: 30px;
}

aside #getNewsletter {
  margin: 1.875em 0;
  overflow: auto;
}
aside #getNewsletter input#email {
  background: #fff;
}

#bigSocialLinks {
  display: none;
}

#exploreLinks {
  padding-top: 20px;
  background: #f4f1ee;
}
#exploreLinks h2 {
  font-size: 1.375em;
  padding: 10px 0px 10px 0px;
  margin: 0px;
  font-weight: 100;
}

.aExploareLinks {
  border-bottom: 1px solid #e1e6e7;
  padding-bottom: 0.625em;
  padding-top: 0.625em;
}
.aExploareLinks a {
  display: block;
  width: 100%;
  position: relative;
}
.aExploareLinks a:after {
  font-family: 'icomoon';
  content: "\e602";
  line-height: 0px;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 1.25em;
}
.aExploareLinks h3 {
  font-size: 0.8125em;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.1875em;
  width: 87%;
}
.aExploareLinks p {
  font-size: 0.75em;
  padding: 2px 0px;
  margin: 0px;
  width: 87%;
}
.aExploareLinks:first-child {
  /* border-top: 1px solid $border-color; */
}
.aExploareLinks .textLink {
  display: none;
}

#eventsBanner {
  background: #fff;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  /*
  	.eventsBannerText,  .anEvent, .eventButton {
  		border-bottom: 1px solid $border-color;
  	}
  */
}
#eventsBanner h3.h4 {
  font-size: 0.8125em;
}
#eventsBanner .event-date {
  color: #7D8891;
  font-size: 0.8125em;
  padding-bottom: 0.9375em;
}
#eventsBanner .event-date a {
  color: #7D8891;
}
#eventsBanner .sideArea {
  border-top: 1px solid #e1e6e7;
  margin-top: 1.25em;
  padding-top: 0.9375em;
}

.textLink {
  font-weight: 600;
  font-size: 0.8125em;
}

p .textLink {
  font-weight: 600;
  font-size: 1em;
}

input[type="submit"].full {
  width: 100%;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
#outerHeader {
  position: relative;
  width: 100%;
  z-index: 99999;
  background: #fff;
  margin-bottom: 0px;
}
#outerHeader .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}

#inner-header.wrap {
  width: 100%;
}

#menuHolder {
  display: none;
}

#mainMenu {
  	/*
  display: none;
  	&.active {
  		display: block;
  	}
  */
}
#mainMenu li {
  border-top: 1px solid #e1e6e7;
}

#submenu {
  border-top: 2px solid #e1e6e7;
  background: #f4f1ee;
  	/*
  display: none;
  	&.active {
  		display: block;
  	}
  */
}
#submenu li {
  border-top: 1px solid #e1e6e7;
  		/*

  		&.hasChildren a {
  		margin-right: em(50px, 13px);
  		}
  		*/
}
#submenu li .sub-menu {
  background: #fff;
}
#submenu .expander {
  /*
  top: 25px;
  right: -16px;
  */
  /*
  top: 32px;
  right: -26px;
  font-size: em(16px, 13px);
  */
}

.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
.nav .expander {
  font-family: 'icomoon';
  display: block;
  position: absolute;
  top: 6px;
  right: -46px;
  cursor: pointer;
}
.nav .expander a.closed {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: .2s;
}
.nav .expander a.open {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: .2s;
}
.nav li {
  position: relative;
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
.nav li a {
  display: block;
  color: #2a3133;
  text-decoration: none;
  padding: 0.75em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
.nav li.hasChildren a {
  margin-right: 3.125em;
  border-right: 1px solid #e1e6e7;
}
.nav li.hasChildren a.icon-alone {
  border: 0px none;
}
.nav li ul.sub-menu,
.nav li ul.children {
  display: none;
  background: #f4f1ee;
}
.nav li ul.sub-menu.active,
.nav li ul.children.active {
  display: block;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  border-right: 0px none;
}
.nav li ul.sub-menu li a:after,
.nav li ul.children li a:after {
  content: " ";
}
.nav li ul.sub-menu {
  -moz-box-shadow: inset 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: inset 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  box-shadow: inset 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  filter: progid:DXImageTransform.Microsoft.Shadow(strength = 5, direction = 180, color = '#000000');
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength = 5, Direction = 180, Color = '#000000')";
}
.nav .menu-item-146, .nav .menu-item-147, .nav .menu-item-74 {
  display: none;
}

/* end .nav */
.guideList {
  font-size: 0.91em;
}
.guideList li {
  font-weight: 600;
  margin: 1.25em 0 0.3125em 0;
}
.guideList li a {
  color: #2a3133;
}
.guideList li a:hover {
  color: #2a3133;
  cursor: default;
}
.guideList ul.children li {
  margin: 0em;
  font-weight: normal;
}
.guideList ul.children li a {
  padding-left: 30px;
}
.guideList ul.children li a:hover, .guideList ul.children li a:focus {
  color: #31a288;
        cursor: pointer; }

.skip-main.screenreader {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

/*********************
POSTS & CONTENT STYLES
*********************/
#main {
  /* padding-top: em(-15px); */
  /* padding-bottom: em(20px); */
}

#content {
  /* padding-top: 1.5em; */
  background: #f4f1ee;
  overflow: auto;
}

img.size-full {
  max-width: 100%;
  height: auto;
}

#inner-content {
  overflow: auto;
  clear: both;
}

.hentry {
  			/*
  background-color: $white;
  			border-radius: 3px;
  			margin-bottom: 1.5em;
  			border: 1px solid $border-color;
  */
}
.hentry header {
  				/*
  border-bottom: 1px solid $light-grey;
  				padding: 1.5em;
  */
}
.hentry footer {
  				/*
  padding: 1.5em;
  				border-top: 1px solid $light-grey;
  */
}
.hentry footer p {
  color: #666;
  margin: 0;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
  text-transform: uppercase;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}

/* entry content */
.entry-content {
  /* padding: 1.5em 1.5em 0; */
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content table {
  width: 100%;
  border: 1px solid #2a3133;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #2a3133;
}
.entry-content tr:nth-child(even) {
  background-color: #e1e6e7;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #2a3133;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #e1e6e7;
  border-bottom: 1px solid #2a3133;
  border-right: 1px solid #2a3133;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #2a3133;
  color: #e1e6e7;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}

.single-post .entry-content ul {
  list-style: disc;
}
.single-post .entry-content ul li {
  margin: 0 0 1.5em 1.25em;
  font-size: 0.8125em;
  color: #666;
}

.fullSubFeature {
  background: #fff;
  padding: 0 0 1.25em 0;
}
.fullSubFeature img {
  display: none;
}
.fullSubFeature h1, .fullSubFeature .h1, .fullSubFeature h2, .fullSubFeature .h2, .fullSubFeature h3, .fullSubFeature .h3, .fullSubFeature h4, .fullSubFeature .h4, .fullSubFeature h5, .fullSubFeature .h5 {
  margin-bottom: 0.25em;
}
.fullSubFeature .text {
  padding-top: 1.25em;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  border: 1px solid #e1e6e7;
  border-radius: 0.375em;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  border-radius: 0.375em;
}

.slides {
  position: relative;
  margin: 1.4375em 0;
}

.rslides_nav.next, .rslides_nav.prev {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

.rslides_nav.prev:after {
  font-family: 'icomoon';
  content: "\e608";
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
}

.rslides_nav.next:after {
  font-family: 'icomoon';
  content: "\e608";
}

.rslides_nav.prev {
  z-index: 9999;
  position: absolute;
  top: 50%;
  left: -15px;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
}

.rslides_nav.next {
  z-index: 9999;
  position: absolute;
  top: 50%;
  right: -15px;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
}

.rslides_nav span {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

#timeline dt {
  float: left;
  width: 10%;
}
#timeline dd {
  margin-left: 20%;
}

.aTextChunk.divided {
  border-top: 1px solid #e1e6e7;
}

/*********************
	DIFFERENCE
*********************/
.articlehead {
  background: #fff;
}

.page-template-page-difference-php .subfeature, .page-template-page-difference-php #subFeaturedBoxes, .page-template-page-holiday-php .subfeature, .page-template-page-holiday-php #subFeaturedBoxes {
  background-color: #fff;
  overflow: auto;
}
.page-template-page-difference-php .fullSubFeature, .page-template-page-holiday-php .fullSubFeature {
  margin-bottom: 30px;
}
.page-template-page-difference-php #featuredBoxes .heading, .page-template-page-holiday-php #featuredBoxes .heading {
  margin-top: 0px;
}
.page-template-page-difference-php .aFeaturedContentBox.box1, .page-template-page-difference-php .aContentBox.box1, .page-template-page-holiday-php .aFeaturedContentBox.box1, .page-template-page-holiday-php .aContentBox.box1 {
  border-top: 1px solid #e1e6e7;
}

.page-template-page-holiday-php #featuredBoxes .aContentBox.pastLimit {
  display: block;
}

.page-template-page-differencecontent-php.page-child .h3,
.page-template-page-nourishcontent-php.page-child .h3,
.page-template-page-genericinfocomplex-php .h3 {
  text-transform: none;
}
.page-template-page-differencecontent-php.page-child #simpleSideArea,
.page-template-page-nourishcontent-php.page-child #simpleSideArea,
.page-template-page-genericinfocomplex-php #simpleSideArea {
  padding: 0.75em 0 0.9375em 0;
}
.page-template-page-differencecontent-php.page-child #simpleSideArea .subTitle,
.page-template-page-nourishcontent-php.page-child #simpleSideArea .subTitle,
.page-template-page-genericinfocomplex-php #simpleSideArea .subTitle {
  padding-top: 1.25em;
}
.page-template-page-differencecontent-php.page-child #simpleSideArea img,
.page-template-page-nourishcontent-php.page-child #simpleSideArea img,
.page-template-page-genericinfocomplex-php #simpleSideArea img {
  float: left;
  padding-right: 3%;
}
.page-template-page-differencecontent-php.page-child .aListOfLinks li,
.page-template-page-nourishcontent-php.page-child .aListOfLinks li,
.page-template-page-genericinfocomplex-php .aListOfLinks li {
  margin-top: 1.25em;
}
.page-template-page-differencecontent-php.page-child .aListOfLinks .textLink,
.page-template-page-nourishcontent-php.page-child .aListOfLinks .textLink,
.page-template-page-genericinfocomplex-php .aListOfLinks .textLink {
  font-size: 1em;
}
.page-template-page-differencecontent-php.page-child #textChunks img,
.page-template-page-nourishcontent-php.page-child #textChunks img,
.page-template-page-genericinfocomplex-php #textChunks img {
  border-radius: 0.3125em;
  max-width: 100%;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk,
.page-template-page-genericinfocomplex-php #main .aTextChunk {
  max-width: 100%;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk p,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk p,
.page-template-page-genericinfocomplex-php #main .aTextChunk p {
  max-width: 500px;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk.divided,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk.divided,
.page-template-page-genericinfocomplex-php #main .aTextChunk.divided {
  border-top: 1px solid #e1e6e7;
  padding-top: 1.25em;
  margin-top: 0em;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk.first,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk.first,
.page-template-page-genericinfocomplex-php #main .aTextChunk.first {
  border-top: 0px none;
  padding-top: 0em;
  margin-top: 0em;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk .h3,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk .h3,
.page-template-page-genericinfocomplex-php #main .aTextChunk .h3 {
  margin-top: 0px;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk.hasImage .h3,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk.hasImage .h3,
.page-template-page-genericinfocomplex-php #main .aTextChunk.hasImage .h3 {
  margin-top: 1.25em;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk ul,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk ul,
.page-template-page-genericinfocomplex-php #main .aTextChunk ul {
  list-style: disc;
  padding-left: 1em;
  color: #666;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk ul p,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk ul p,
.page-template-page-genericinfocomplex-php #main .aTextChunk ul p {
  top: 2px;
  position: relative;
  padding: 0 0 0.3125em 0.3125em;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk ul li,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk ul li,
.page-template-page-genericinfocomplex-php #main .aTextChunk ul li {
  font-size: 0.8125em;
  padding-bottom: 0.625em;
}
.page-template-page-differencecontent-php.page-child #main .aTextChunk ul li:last-child,
.page-template-page-nourishcontent-php.page-child #main .aTextChunk ul li:last-child,
.page-template-page-genericinfocomplex-php #main .aTextChunk ul li:last-child {
  padding-bottom: 1.25em;
}
.page-template-page-differencecontent-php.page-child aside #featuredBoxes.magazine,
.page-template-page-nourishcontent-php.page-child aside #featuredBoxes.magazine,
.page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine {
  margin-top: -0.9375em;
}
.page-template-page-differencecontent-php.page-child aside #featuredBoxes.magazine .aContentBox:last-child,
.page-template-page-nourishcontent-php.page-child aside #featuredBoxes.magazine .aContentBox:last-child,
.page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .aContentBox:last-child {
  border-bottom: 0px none;
}
.page-template-page-differencecontent-php.page-child .aContentBox.box1,
.page-template-page-nourishcontent-php.page-child .aContentBox.box1,
.page-template-page-genericinfocomplex-php .aContentBox.box1 {
  border-top: 1px solid #e1e6e7;
}
/*********************
	Nourish Content
*********************/
.page-template-page-nourishcontent-php .wrapper {
  background: #fff;
  padding-bottom: 40px;
}
.page-template-page-nourishcontent-php .headerIcon {
  padding-top: 28px;
  float: left;
  padding-left: 3.125%;
}
.page-template-page-nourishcontent-php .pageTitle {
  width: 48.5714286%;
  position: relative;
  float: left;
  margin-left: 2.8571429%;
}
.page-template-page-nourishcontent-php #simpleContentArea {
  clear: both;
}
.page-template-page-nourishcontent-php #simpleContentArea p {
  font-size: 1.25em;
}
.page-template-page-nourishcontent-php #aside1 {
  background: #fff;
}
.page-template-page-nourishcontent-php #aside1 #getNewsletter {
  background: #f4f1ee;
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-template-page-nourishcontent-php #aside1 #featuredBoxes {
  background: #fff;
  border-top: 1px solid #e1e6e7;
  padding-bottom: 20px;
}
.page-template-page-nourishcontent-php #infoBlocks h3 {
  padding-left: 3.125%;
  margin-bottom: 10px;
  margin-top: 15px;
}
.page-template-page-nourishcontent-php #infoBlocks .infoBlock {
  background: #f4f1ee;
  padding: 15px;
  margin-bottom: 10px;
}
.page-template-page-nourishcontent-php #infoBlocks .infoBlock p {
  padding-bottom: 0px;
}
.page-template-page-nourishcontent-php #infoBlocks .infoBlock .theLink {
  color: #31a288;
  font-weight: 600;
}
.page-template-page-nourishcontent-php #rainbowBlocks {
  border-top: 1px solid #e1e6e7;
  padding-top: 20px;
  margin-left: 3.125%;
  margin-right: 3.125%;
  margin-top: 20px;
}
.page-template-page-nourishcontent-php #rainbowBlocks .rainbowHeader p {
  color: #7d8891;
}
.page-template-page-nourishcontent-php #rainbowBlocks .nutrients p {
  padding-bottom: 0px;
}
.page-template-page-nourishcontent-php #rainbowBlocks .supports p {
  padding-bottom: 0px;
}
.page-template-page-nourishcontent-php .boxArea {
  border-top: 1px solid #e1e6e7;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.page-template-page-nourishcontent-php .subsection {
  background: #fff;
  clear: both;
}
.page-template-page-nourishcontent-php .subsection .rainbowTitle {
  margin: 0px;
  padding: 15px;
  color: #fff;
  font-size: 20px;
}
.page-template-page-nourishcontent-php .subsection .rainbowBlock {
  background: #f4f1ee;
  margin-bottom: 10px;
  padding: 15px;
}
.page-template-page-nourishcontent-php .aFeaturedContentBox h3.h4 {
  font-size: 13px;
}

#charity {
  text-align: center;
}
#charity .button {
  margin-bottom: 1.25em;
}

.acharity {
  text-align: center;
  padding: 0 12%;
}
.acharity img {
  max-width: 100%;
}

.page-id-2322 .simpleContentArea p {
  font-size: 1.25em;
}

.fullSubFeature.simpleContentAreawImage {
  margin-bottom: 0px;
  border-bottom: 1px solid #e1e6e7;
}
.fullSubFeature.simpleContentAreawImage img {
  padding: 0px;
  border-radius: 0.375em;
  margin-top: 20px;
  display: inline-block;
  max-width: 100%;
}

/************** Farm **************/
.page-template-page-farm-php #main {
  padding-bottom: 1.25em;
  margin-bottom: 1.875em;
  background: #fff;
}
.page-template-page-farm-php #main img {
  max-width: 100%;
  border-radius: 0.25em;
}
.page-template-page-farm-php .articlehead {
  background-repeat: no-repeat;
  background-position: right bottom;
}
.page-template-page-farm-php #farmInfo {
  background: #f4f1ee;
  text-align: center;
}
.page-template-page-farm-php #farmInfo .subTitle {
  padding-top: 0.625em;
  color: #2a3133;
}
.page-template-page-farm-php #farmInfo strong {
  color: #2a3133;
}
.page-template-page-farm-php #farmInfo .location, .page-template-page-farm-php #farmInfo .family {
  border-bottom: 1px solid #e1e6e7;
}
.page-template-page-farm-php #farmInfo .location, .page-template-page-farm-php #farmInfo .family, .page-template-page-farm-php #farmInfo .products {
  padding-bottom: 0.75em;
}
.page-template-page-farm-php #farmInfo .location h3, .page-template-page-farm-php #farmInfo .family h3, .page-template-page-farm-php #farmInfo .products h3 {
  font-size: 1.25em;
  margin-bottom: 0.25em;
  margin-top: 0.75em;
}

/*********************
	Shop Online
*********************/
#shopOnlineDD {
  display: none; }

.js .page-template-page-shoponline-php {
  /*
  	#drivethru {
  		border-top: 1px solid $border-color;
  		padding-top: 15px;
  	}
  */
}
.js .page-template-page-shoponline-php #delivery-submit {
  display: none;
}
.js .page-template-page-shoponline-php #drivethru .submitWrap {
  width: 100%;
}
.js .page-template-page-shoponline-php #pickup-submit {
  width: 100%;
  margin-top: 5px;
}

.page-template-page-shoponline-php #no_zip_msg {
  position: relative;
  background: white;
  z-index: 9999;
  width: 100%;
  padding: 10px;
  border: 2px solid #f0d6d3;
  margin-bottom: 20px;
}
.page-template-page-shoponline-php #no_zip_msg:after, .page-template-page-shoponline-php #no_zip_msg:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.page-template-page-shoponline-php #no_zip_msg:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 30px;
  margin-left: -30px;
}
.page-template-page-shoponline-php #no_zip_msg:before {
  border-bottom-color: #f0d6d3;
  border-width: 33px;
  margin-left: -33px;
}
.page-template-page-shoponline-php .dropdown .blockthing {
  background: #31a288;
}
.page-template-page-shoponline-php #inner-content .wrap {
  width: 100%;
}
.page-template-page-shoponline-php .or {
  display: none;
}
.page-template-page-shoponline-php .fullSubFeature .innerWrap {
  width: 93.75%;
  margin: 0 auto; }
  .page-template-page-shoponline-php .fullSubFeature .innerWrap h2 {
    padding-top: 1.25em;
    margin-bottom: 1.25em;
    padding-bottom: 0px; }
  .page-template-page-shoponline-php .fullSubFeature .innerWrap p {
   font-size: 20px;
   margin: 0 auto;}
.page-template-page-shoponline-php #zipcodeWrap {
  width: 83.3333333%;
  position: relative;
  float: left;
  margin-left: 0%;
}
.page-template-page-shoponline-php #drivethru {
  margin-bottom: 20px;
}
.page-template-page-shoponline-php #homeDelivery {
  display: table;
  width: 100%;
}
.page-template-page-shoponline-php #homeDelivery #zipcodeWrap {
  display: table-cell;
  width: 100%;
}
.page-template-page-shoponline-php #homeDelivery .submitWrap {
  display: table-cell;
  vertical-align: top;
}
.page-template-page-shoponline-php #zipcode {
  border-radius: 4px 0px 0px 4px;
}
.page-template-page-shoponline-php .submitWrap {
  padding: 0px;
  width: 40px;
  margin-left: 0%;
}
.page-template-page-shoponline-php .submitWrap .button {
  padding: 0px;
  width: 40px;
  margin-top: 25px;
  height: 44px;
  border-radius: 0px 4px 4px 0px;
}
.page-template-page-shoponline-php .submitWrap .icon-next {
  position: relative;
  top: 2px;
  left: 14px;
  color: #fff;
}
.page-template-page-shoponline-php .submitcarrot {
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -6px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #fff;
  z-index: 1;
}
.page-template-page-shoponline-php .aContentBox.pastLimit {
  display: block;
}
.page-template-page-shoponline-php #featuredBoxes .heading, .page-template-page-shoponline-php #subFeaturedBoxes .heading {
  margin-top: 1.25em;
}
.page-template-page-shoponline-php #featuredBoxes .h3, .page-template-page-shoponline-php #subFeaturedBoxes .h3 {
  font-size: 1.375em;
  margin-bottom: 1.25em;
}
.page-template-page-shoponline-php #featuredBoxes h3.h4, .page-template-page-shoponline-php #subFeaturedBoxes h3.h4 {
  padding-right: 30px;
}

.page-template-page-shoponline-old-php .menu-item-146, .page-template-page-shoponline-old-php .menu-item-147 {
  display: block;
}
.page-template-page-shoponline-old-php .wrap {
  width: 100%;
}
.page-template-page-shoponline-old-php .fullSubFeature .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}
.page-template-page-shoponline-old-php .forms h2 {
  padding-top: 0.9375em;
}
.page-template-page-shoponline-old-php .pastLimit {
  display: block;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes .aFeaturedContentBox p, .page-template-page-shoponline-old-php #subFeaturedBoxes .aContentBox p, .page-template-page-shoponline-old-php #subFeaturedBoxes .textLink {
  display: block;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes h1, .page-template-page-shoponline-old-php #subFeaturedBoxes .h1, .page-template-page-shoponline-old-php #subFeaturedBoxes h2, .page-template-page-shoponline-old-php #subFeaturedBoxes .h2, .page-template-page-shoponline-old-php #subFeaturedBoxes h3, .page-template-page-shoponline-old-php #subFeaturedBoxes .h3, .page-template-page-shoponline-old-php #subFeaturedBoxes h4, .page-template-page-shoponline-old-php #subFeaturedBoxes .h4, .page-template-page-shoponline-old-php #subFeaturedBoxes h5, .page-template-page-shoponline-old-php #subFeaturedBoxes .h5 {
  width: 100%;
  display: block;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes h1:after, .page-template-page-shoponline-old-php #subFeaturedBoxes .h1:after, .page-template-page-shoponline-old-php #subFeaturedBoxes h2:after, .page-template-page-shoponline-old-php #subFeaturedBoxes .h2:after, .page-template-page-shoponline-old-php #subFeaturedBoxes h3:after, .page-template-page-shoponline-old-php #subFeaturedBoxes .h3:after, .page-template-page-shoponline-old-php #subFeaturedBoxes h4:after, .page-template-page-shoponline-old-php #subFeaturedBoxes .h4:after, .page-template-page-shoponline-old-php #subFeaturedBoxes h5:after, .page-template-page-shoponline-old-php #subFeaturedBoxes .h5:after {
  content: ' ';
}
.page-template-page-shoponline-old-php #subFeaturedBoxes .aFeaturedContentBox img {
  display: none;
}
.page-template-page-shoponline-old-php .or {
  display: none;
}
.page-template-page-shoponline-old-php input[type="text"], .page-template-page-shoponline-old-php input[type="password"], .page-template-page-shoponline-old-php input[type="datetime"], .page-template-page-shoponline-old-php input[type="datetime-local"], .page-template-page-shoponline-old-php input[type="date"], .page-template-page-shoponline-old-php input[type="month"], .page-template-page-shoponline-old-php input[type="time"], .page-template-page-shoponline-old-php input[type="week"], .page-template-page-shoponline-old-php input[type="number"], .page-template-page-shoponline-old-php input[type="email"], .page-template-page-shoponline-old-php input[type="url"], .page-template-page-shoponline-old-php input[type="search"], .page-template-page-shoponline-old-php input[type="tel"], .page-template-page-shoponline-old-php input[type="color"], .page-template-page-shoponline-old-php select, .page-template-page-shoponline-old-php textarea, .page-template-page-shoponline-old-php .field {
  max-width: none;
  min-height: 40px;
  height: 46px;
  line-height: 46px;
}
.page-template-page-shoponline-old-php .dropdown {
  margin-bottom: 1.25em;
}
.page-template-page-shoponline-old-php #drivethru {
  margin-top: 0.625em;
  margin-bottom: 0.9375em;
}
.page-template-page-shoponline-old-php #zipcodeWrap label, .page-template-page-shoponline-old-php #select-choiceWrap label {
  display: block;
  margin-bottom: 0.625em;
}
.page-template-page-shoponline-old-php #homeDelivery {
  clear: both;
}
.page-template-page-shoponline-old-php #homeDelivery input[type="text"] {
  width: 50.833333333%;
  position: relative;
  float: left;
  margin-left: 0;
  border-radius: 4px 0 0 4px;
}
.page-template-page-shoponline-old-php #homeDelivery input[type="submit"] {
  border-radius: 0 4px 4px 0;
  width: 49.166666667%;
  position: relative;
  float: right;
  margin-left: 0%;
}
.page-template-page-shoponline-old-php .formwrap {
  border-bottom: 1px solid #e1e6e7;
}
.page-template-page-shoponline-old-php .groupHomeLink {
  margin-top: 1.25em;
  clear: both;
  display: block;
  text-align: center;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes {
  background: #fff;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes .aFeaturedContentBox div {
  width: 93.75%;
  margin: 0 auto;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes .aFeaturedContentBox div p {
  width: 60%;
}
.page-template-page-shoponline-old-php #subFeaturedBoxes .aFeaturedContentBox div .h4 {
  padding-left: 0px;
  font-size: 1.125em;
  font-weight: normal;
  text-transform: none;
}

/*********************
	OUR STORES
*********************/
.page-template-page-ourstores-php .aFeaturedContentBox.box1, .page-template-page-ourstores-php .aContentBox.box1 {
  border-top: 1px solid #e1e6e7;
}
.page-template-page-ourstores-php #featuredBoxes {
  margin-bottom: 1.25em;
}

.page-template-page-child-php #simpleContentArea {
  padding-bottom: 0.75em;
  border-bottom: 1px solid #e1e6e7;
  margin-bottom: 1.25em;
}
.page-template-page-child-php #getNewsletter {
  width: 93.75%;
  margin: 0.9375em auto 0;
}

.findAStore h2.h3, #featuredBoxes h2.h3 {
  line-height: 1.4em;
  margin-bottom: 0.375em;
}
.findAStore #zipSearch h3, #featuredBoxes #zipSearch h3 {
  margin-bottom: 0.625em;
}
.findAStore #submit-button, #featuredBoxes #submit-button {
  float: left;
}
.findAStore .allStoresLink, #featuredBoxes .allStoresLink {
  padding-left: 0px;
  float: left;
  position: relative;
  margin-left: 2.8571429%;
  padding-top: 6px;
}

.findAStore h2.h3 {
  font-size: 1.375em; }
  
#wpsl-stores .wpsl-hours {
   display: none; }

.page-child.page-template-page-findstore-php #main {
  background: #f4f1ee;
}

/************** Store Detail **************/
.page-template-page-storedetail-php #contentArea img, .page-template-page-kitchen-php #contentArea img {
  max-width: 100%;
  border-radius: 0.3125em;
}
.page-template-page-storedetail-php #inner-content .wrap, .page-template-page-kitchen-php #inner-content .wrap {
  width: 100%;
}
.page-template-page-storedetail-php .inner-wrap, .page-template-page-kitchen-php .inner-wrap {
  width: 93.75%;
  margin: 0 auto;
}
.page-template-page-storedetail-php #location h3, .page-template-page-kitchen-php #location h3 {
  margin-bottom: 0.0625em;
}
.page-template-page-storedetail-php #location p, .page-template-page-kitchen-php #location p {
  padding-bottom: 0em;
}
.page-template-page-storedetail-php .shop, .page-template-page-kitchen-php .shop {
  padding-bottom: 1.1875em;
}
.page-template-page-storedetail-php #hours, .page-template-page-kitchen-php #hours {
  border-bottom: 1px solid #e1e6e7;
  margin-bottom: 0.9375em; }
.page-template-page-storedetail-php .storeHoursNotes {
  font-size: 12px;
  font-style: italic;
  padding-right: 15%;
  max-width: 300px;
  padding-top: 5px; }
  .page-template-page-storedetail-php #hours .dtgroup, .page-template-page-kitchen-php #hours .dtgroup {
    display: block;
    padding: 0px;
    margin: 0px;
    margin-top: -0.3125em; }
.page-template-page-storedetail-php .specialHours, .page-template-page-kitchen-php .specialHours {
  margin-bottom: 0.9375em;
  background: #f4f1ee;
  padding: 0.625em;
}
.page-template-page-storedetail-php .days, .page-template-page-kitchen-php .days {
  display: inline;
  font-size: 0.8125em;
  line-height: 1em;
  color: #666;
  font-weight: 900;
  padding: 0px;
  margin: 0px;
}
.page-template-page-storedetail-php .days:after, .page-template-page-kitchen-php .days:after {
  content: ' ';
}
.page-template-page-storedetail-php .time, .page-template-page-kitchen-php .time {
  display: inline;
  padding: 0px;
  margin: 0px;
}
.page-template-page-storedetail-php #driveThrough, .page-template-page-storedetail-php #thePhoneNumber, .page-template-page-kitchen-php #driveThrough, .page-template-page-kitchen-php #thePhoneNumber {
  margin-top: 0.3125em;
  margin-bottom: 1.875em;
}
.page-template-page-storedetail-php #socialLinks, .page-template-page-kitchen-php #socialLinks {
  margin-bottom: 1.875em;
}
.page-template-page-storedetail-php #reserveRoom p, .page-template-page-kitchen-php #reserveRoom p {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.page-template-page-storedetail-php #textclub .area, .page-template-page-kitchen-php #textclub .area {
  background: #f4f1ee;
  padding: 1.25em 1.25em 0.625em;
}
.page-template-page-storedetail-php #textclub .finePrint, .page-template-page-kitchen-php #textclub .finePrint {
  padding-top: 1.5em;
}
.page-template-page-storedetail-php #textclub .finePrint p, .page-template-page-kitchen-php #textclub .finePrint p {
  padding-bottom: 0px;
}

.page-template-page-kitchen-php #contentArea .chunk2 img {
  margin-bottom: 0.9375em;
}
.page-template-page-kitchen-php #contentArea .chunk3 img {
  margin-top: 1.25em;
  margin-bottom: 0px;
  clear: both;
}
.page-template-page-kitchen-php #contentArea .chunk3 .textLink {
  display: block;
}
.page-template-page-kitchen-php #contentArea .chunk p {
  max-width: 500px;
}
.page-template-page-kitchen-php #contentArea .quote {
  max-width: 500px;
}
.page-template-page-kitchen-php #contentArea #menubuttonwrap .inner-wrap {
  width: 100%;
}
.page-template-page-kitchen-php #contentArea #getNewsletter {
  overflow: visible;
}

.parent-pageid-1164 #CareerOverviews {
  padding-bottom: 1.875em;
}
.parent-pageid-1164 #CareerOverviews li {
  font-size: 0.8125em;
}

.page-id-2629 #main .aTextChunk, .page-id-2631 #main .aTextChunk {
  max-width: 100%;
}
.page-id-2629 #main .aTextChunk p, .page-id-2631 #main .aTextChunk p {
  max-width: 500px;
}
.page-id-2629 #main .aTextChunk.divided, .page-id-2631 #main .aTextChunk.divided {
  border-top: 1px solid #e1e6e7;
  padding-top: 1.25em;
  margin-top: 0em;
}
.page-id-2629 #main .aTextChunk.first, .page-id-2631 #main .aTextChunk.first {
  border-top: 0px none;
  padding-top: 0em;
  margin-top: 0em;
}
.page-id-2629 #main .aTextChunk .h3, .page-id-2631 #main .aTextChunk .h3 {
  margin-top: 0px;
}
.page-id-2629 #main .aTextChunk.hasImage .h3, .page-id-2631 #main .aTextChunk.hasImage .h3 {
  margin-top: 1.25em;
}
.page-id-2629 #main .aTextChunk ul p, .page-id-2631 #main .aTextChunk ul p {
  top: 2px;
  position: relative;
  padding: 0 0 0.3125em 0.3125em;
}
.page-id-2629 #main .aTextChunk ul li, .page-id-2631 #main .aTextChunk ul li {
  padding-bottom: 0.625em;
}
.page-id-2629 #main .aTextChunk ul li:last-child, .page-id-2631 #main .aTextChunk ul li:last-child {
  padding-bottom: 1.25em;
}

/************** Kitchen **************/
.page-template-page-kitchen-php .wrapper {
  background: #fff;
}
.page-template-page-kitchen-php #aside1 {
  margin-top: 1.25em;
  padding-top: 1.25em;
  border-top: 1px solid #e1e6e7;
}
.page-template-page-kitchen-php #eventsBanner {
  border-top: 1px solid #e1e6e7;
}
.page-template-page-kitchen-php #eventsBanner .pageTitle {
  padding-top: 0px;
}
.page-template-page-kitchen-php #getNewsletter #submit-button {
  margin-bottom: 0px;
}
.page-template-page-kitchen-php #getNewsletter {
  margin-top: 0px;
}
.page-template-page-kitchen-php #hours {
  border-bottom: 0px;
}

.quote {
  border-top: 1px solid #e1e6e7;
  border-bottom: 1px solid #e1e6e7;
  padding: 1.125em 1.5625em;
  margin-bottom: 1.25em;
  position: relative;
}
.quote blockquote p {
  display: inline;
  font-size: 0.8125em;
}
.quote blockquote:before {
  text-indent: -9999px;
  display: inline-block;
  margin-left: -25px;
  content: '"';
  color: #31a288;
  background: url(../images/quotel.png) no-repeat;
  height: 18px;
  width: 22px;
}
.quote blockquote:after {
  text-indent: -9999px;
  display: inline-block;
  content: '"';
  color: #31a288;
  background: url(../images/quoter.png) no-repeat;
  height: 18px;
  width: 22px;
}
.quote .attribution {
  font-size: 0.625em;
  color: #b9c2c8;
  background: #fff;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  right: 0px;
  bottom: -0.5625em;
  padding: 0px 0.625em;
}
.quote .attribution:before {
  content: '-';
}

aside #socialLinks ul li {
  display: inline-block;
}
aside #socialLinks ul li a {
  font-size: 1.5625em;
  margin: 0.1875em;
}

#subNavigation {
  /*
  .backLink {
  	display: none;
  }
  */
  /* end .menu ul li */
  /* highlight current page */
}
#subNavigation ul.menu {
  display: block;
}
#subNavigation li {
  padding: 0.5em 0px;
  border-top: 1px solid #e1e6e7;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
#subNavigation li a {
  font-size: 0.8125em;
  font-weight: 600;
}
#subNavigation li:first-child {
  border-top: 0px none;
}
#subNavigation li ul.sub-menu,
#subNavigation li ul.children {
  margin-top: 0.5em;
  display: none;
  border-top: 1px solid #e1e6e7;
  /* highlight sub-menu current page */
}
#subNavigation li ul.sub-menu li,
#subNavigation li ul.children li {
  padding-left: 30px;
}
#subNavigation li ul.sub-menu li a:hover, #subNavigation li ul.sub-menu li a:focus,
#subNavigation li ul.children li a:hover,
#subNavigation li ul.children li a:focus {
  color: #31a288;
}
#subNavigation li:hover > ul {
  top: auto;
  visibility: visible;
}
#subNavigation li.current-menu-item ul.children,
#subNavigation li.current_page_item ul.children,
#subNavigation li.current_page_ancestor ul.children {
  display: block;
}
#subNavigation li.current-menu-item a,
#subNavigation li.current_page_item a {
  color: #31a288;
}
#subNavigation li.current-menu-item li a,
#subNavigation li.current_page_item li a {
  color: #2a3133;
}

/************** Events **************/
.classFullAlert p {
  font-weight: 600;
  margin-bottom: 0.9375em;
}
.classFullAlert p:before {
  content: "!";
  border: 2px solid #31a288;
  border-radius: 50%;
  display: inline-block;
  padding: 6px;
  line-height: 3px;
  color: #31a288;
  margin-right: 5px;
}

.tribe-filter-live #subNavigation {
  padding: 0.5625em 2% 0.6875em;
}
.tribe-filter-live #subNavigation .menu {
  display: none;
}
.tribe-filter-live .byline.vcard {
  display: none;
}
.tribe-filter-live .wrap {
  width: 100%;
}
.tribe-filter-live #main {
  background: #fff;
}
.tribe-filter-live #main .entry-content {
  width: 100%;
}
.tribe-filter-live #main .hentry {
  padding-left: 3.125%;
  padding-right: 3.125%;
  border-bottom: 1px solid #e1e6e7;
}
.tribe-filter-live #tribe_events_filters_wrapper {
  width: 93.75%;
  margin: 0 auto;
}
.tribe-filter-live .dropdown {
  max-width: none;
}
.tribe-filter-live .dropdown .selected, .tribe-filter-live .dropdown li {
  font-size: 0.8125em;
}
.tribe-filter-live .tribe-events-before-html {
  width: 93.75%;
  margin: 0 auto;
  padding-top: 1.25em;
}
.tribe-filter-live .tribe-events-before-html p {
  font-size: 1.125em;
  color: #666;
  line-height: 1.5em;
  padding-bottom: 0em;
  margin-bottom: 0em;
}
.tribe-filter-live .tribe-events-filters-group-heading {
  font-size: 1.125em;
  margin-top: 1.11111em;
  margin-bottom: 0.27778em;
}
.tribe-filter-live .tribe-events-page-title {
  display: none;
}
.tribe-filter-live .tribe-events-filters-label,
.tribe-filter-live #tribe_events_filters_toggle,
.tribe-filter-live #tribe_events_filters_toggle,
.tribe-filter-live #tribe_events_filter_control {
  display: none;
}
.tribe-filter-live .tribe-events-list-event-description {
  display: none;
}
.tribe-filter-live #tribe_events_filter_control {
  display: none;
}
.tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls {
  display: block;
  margin-top: 1.25em;
}
.tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls a#tribe_events_filters_reset {
  display: inline-block;
  position: relative;
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  text-decoration: none;
  /* color: $white; */
  /* font-size: 0.9em; */
  font-size: 0.8125em;
  line-height: 40px;
  font-weight: 600;
  padding: 0 24px 0 14px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #31a288;
}
.tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls a#tribe_events_filters_reset:hover, .tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls a#tribe_events_filters_reset:focus {
  color: #fff;
  text-decoration: none;
  background-color: #2c927b;
}
.tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls a#tribe_events_filters_reset:active {
  top: 1px;
  background-color: #2b8e78;
}
.tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls a#tribe_events_filters_reset:before {
  font-family: 'icomoon';
  content: "\e601";
  font-size: 1.23077em;
  padding-right: 0.5em;
  position: relative;
  top: 3px;
  font-weight: 100;
}
.tribe-filter-live .tribe-events-loop {
  border-top: 1px solid #e1e6e7;
  margin-top: 1.25em;
}
.tribe-filter-live .event-text {
  width: 100%;
  position: relative;
  float: left;
  padding-right: 10%;
}
.tribe-filter-live .event-text .street-address, .tribe-filter-live .event-text .locality, .tribe-filter-live .event-text .delimiter, .tribe-filter-live .event-text .region, .tribe-filter-live .event-text .postal-code, .tribe-filter-live .event-text .country-name, .tribe-filter-live .event-text .tribe-events-gmap {
  display: none;
}
.tribe-filter-live .event-text:after {
  font-family: 'icomoon';
  content: "\e602";
  line-height: 0px;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 1.53846em;
}
.tribe-filter-live .event-text .date b {
  font-weight: normal;
}
.tribe-filter-live .event-text.event-text.classFull .time-details,
.tribe-filter-live .event-text.event-text.classFull .tribe-events-event-meta {
  display: none;
}
.tribe-filter-live .event-text.event-text.classFull .classFullAlert p {
  margin-top: 0.9375em;
  margin-bottom: 0em;
}
.tribe-filter-live .tribe-events-event-cost {
  		/*
  display: inline;
  		padding-left: 15px;

  		&:before {
  			content: "|";
  			padding-right: 15px;
  		}
  */
}
.tribe-filter-live .tribe-events-list-event-title {
  margin-top: 20px;
  font-size: 0.8125em;
  margin-bottom: 0.15385em;
}
.tribe-filter-live .time-details {
  font-size: 0.8125em;
  margin-bottom: 0.15385em;
}
.tribe-filter-live .tribe-events-venue-details {
  font-size: 0.67708em;
}
.tribe-filter-live #tribe-bar-views {
  display: none;
}
.tribe-filter-live #tribe_events_filter_item_venues .tribe-events-filter-checkboxes {
  display: none;
}
.tribe-filter-live .newVeiwLinks {
  display: none;
}
.tribe-filter-live.events-list .tribe-events-nav-previous,
.tribe-filter-live.events-list .tribe-events-nav-next {
  display: inline-block;
  position: relative;
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  text-decoration: none;
  /* color: $white; */
  /* font-size: 0.9em; */
  font-size: 0.8125em;
  line-height: 40px;
  font-weight: 600;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #31a288;
}
.tribe-filter-live.events-list .tribe-events-nav-previous a,
.tribe-filter-live.events-list .tribe-events-nav-next a {
  color: #fff;
}
.tribe-filter-live.events-list .tribe-events-nav-previous:hover, .tribe-filter-live.events-list .tribe-events-nav-previous:focus,
.tribe-filter-live.events-list .tribe-events-nav-next:hover,
.tribe-filter-live.events-list .tribe-events-nav-next:focus {
  color: #fff;
  text-decoration: none;
  background-color: #2c927b;
}
.tribe-filter-live.events-list .tribe-events-nav-previous:active,
.tribe-filter-live.events-list .tribe-events-nav-next:active {
  top: 1px;
  background-color: #2b8e78;
}

.tribe-bar-filters, .tribe_events_filters_toggle {
  display: none;
}

.tribe-filter-live.events-list .tribe-events-list-separator-month {
  display: none;
}

#tribe-events-content-wrapper .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}

#tribe-events-content.tribe-events-list {
  margin-bottom: 0px;
}

.tribe-bar-filters input[type="text"],
.tribe-bar-filters input[type="password"],
.tribe-bar-filters input[type="datetime"],
.tribe-bar-filters input[type="datetime-local"],
.tribe-bar-filters input[type="date"],
.tribe-bar-filters input[type="month"],
.tribe-bar-filters input[type="time"],
.tribe-bar-filters input[type="week"],
.tribe-bar-filters input[type="number"],
.tribe-bar-filters input[type="email"],
.tribe-bar-filters input[type="url"],
.tribe-bar-filters input[type="search"],
.tribe-bar-filters input[type="tel"],
.tribe-bar-filters input[type="color"],
.tribe-bar-filters select,
.tribe-bar-filters textarea,
.tribe-bar-filters .field {
  width: 100%;
  max-width: none;
}

.single-tribe_events .tribe-events-before-html,
.single-tribe_events .meta-venue-Website,
.single-tribe_events .meta-venue-Phone,
.single-tribe_events .tribe-events-event-cost,
.single-tribe_events .meta-Cost,
.single-tribe_events .tribe-events-cal-links,
.single-tribe_events .tribe-events-sub-nav,
.single-tribe_events .meta-Categories,
.single-tribe_events .tribe-events-event-categories,
.single-tribe_events dd.location,
.single-tribe_events .tribe-events-notices,
.single-tribe_events .tribe-events-related-events-title,
.single-tribe_events .tribe-related-events {
  display: none;
}
.single-tribe_events #main #tribe-events-content {
  margin-bottom: 0px;
  border-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
.single-tribe_events .tribe-events-single-event-title.entry-title {
  font-size: 40px;
  padding-bottom: 10px;
}
.single-tribe_events .tribe-events-single-section-title,
.single-tribe_events .meta-Date,
.single-tribe_events .meta-Time {
  font-family: TradeGothicNextLTPro-Cn, "tablet-gothic-condensed", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0px;
}
.single-tribe_events .sidebarEventStuff {
  width: 93.75%;
  margin: 0 auto;
}
.single-tribe_events .sidebarEventStuff h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
}
.single-tribe_events .wrapper {
  background: white;
  overflow: hidden;
}
.single-tribe_events .dateMetaGroup dd,
.single-tribe_events .timeMetaGroup dd {
  color: #2a3133;
}
.single-tribe_events dd.author {
  color: #2a3133;
}
.single-tribe_events img.ssba {
  width: 48px !important;
}

/************** Community Room **************/
.aListOfLinks {
  padding-bottom: 1.25em;
  font-size: 0.8125em;
}
.aListOfLinks li a, .aListOfLinks li a:visited {
  color: #666;
}
.aListOfLinks li a:hover {
  color: #31a288;
}

.page-id-784 .h4, .page-id-1518 .h4 {
  font-size: 18px;
  margin-top: 22.5px;
  margin-bottom: 16.8833px;
  text-rendering: optimizelegibility;
  font-weight: 500;
  letter-spacing: 0.633333px;
}

.page-id-784 .bottomText ul {
  font-size: 13px;
  max-width: 480px;
}

/*********************
	SAVINGS AND DEALS
*********************/
.page-template-page-savingsanddeals-php .fullSubFeature, .page-template-page-circular-php .fullSubFeature {
  clear: both;
  overflow: auto;
}
.page-template-page-savingsanddeals-php .fullSubFeature .wrap, .page-template-page-circular-php .fullSubFeature .wrap {
  width: 100%;
}
.page-template-page-savingsanddeals-php .fullSubFeature .wrap .innerWrap, .page-template-page-circular-php .fullSubFeature .wrap .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}
.page-template-page-savingsanddeals-php .fullSubFeature #thisWeekDeals .textLink, .page-template-page-circular-php .fullSubFeature #thisWeekDeals .textLink {
  display: none;
}
.page-template-page-savingsanddeals-php .fullSubFeature .gotoweb, .page-template-page-circular-php .fullSubFeature .gotoweb {
  display: none;
}
.page-template-page-savingsanddeals-php .fullSubFeature .aBox, .page-template-page-circular-php .fullSubFeature .aBox {
  clear: both;
  overflow: auto;
  border-bottom: 1px solid #e1e6e7;
  padding: 0.625em 0;
}
.page-template-page-savingsanddeals-php .fullSubFeature .aBox:last-child, .page-template-page-circular-php .fullSubFeature .aBox:last-child {
  border-bottom: 0px none;
  padding-bottom: 0px;
}
.page-template-page-savingsanddeals-php .fullSubFeature img, .page-template-page-circular-php .fullSubFeature img {
  display: block;
  width: 50%;
  border-radius: 0.25em;
  position: relative;
  float: left;
}
.page-template-page-savingsanddeals-php .fullSubFeature .text, .page-template-page-circular-php .fullSubFeature .text {
  width: 46.666666667%;
  position: relative;
  float: right;
  padding-top: 0px;
}
.page-template-page-savingsanddeals-php .fullSubFeature .text .h4, .page-template-page-circular-php .fullSubFeature .text .h4 {
  font-size: 22px;
  font-family: TradeGothicNextLTPro-Cn, "tablet-gothic-condensed", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  line-height: 1.2em;
}
.page-template-page-savingsanddeals-php .fullSubFeature .text p, .page-template-page-circular-php .fullSubFeature .text p {
  padding-bottom: 5px;
}
.page-template-page-savingsanddeals-php #contactBanner, .page-template-page-circular-php #contactBanner {
  clear: both;
  position: inherit;
  background: transparent;
}
.page-template-page-savingsanddeals-php #getNewsletter, .page-template-page-circular-php #getNewsletter {
  width: 100%;
  position: relative;
  float: left;
  margin: 1.375em 0% 0.625em 0%;
}
.page-template-page-savingsanddeals-php #getNewsletter input#email, .page-template-page-circular-php #getNewsletter input#email {
  width: auto;
  position: inherit;
  float: none;
  height: 47px;
  line-height: 47px;
}
.page-template-page-savingsanddeals-php #getNewsletter #submit-button, .page-template-page-circular-php #getNewsletter #submit-button {
  width: auto;
  position: inherit;
  float: none;
  min-height: 39px;
}
.page-template-page-savingsanddeals-php #getNewsletter h2, .page-template-page-circular-php #getNewsletter h2 {
  display: block;
  padding-right: 0.625em;
  text-transform: none;
  font-size: 1.25em;
  font-weight: 500;
  position: relative;
  top: -5px;
}
.page-template-page-savingsanddeals-php #getNewsletter form#signUpForm, .page-template-page-circular-php #getNewsletter form#signUpForm {
  display: inline;
}
.page-template-page-savingsanddeals-php #getNewsletter div#senderInfo, .page-template-page-circular-php #getNewsletter div#senderInfo {
  display: inline-block;
  width: 70%;
}
.page-template-page-savingsanddeals-php #getNewsletter input#email, .page-template-page-circular-php #getNewsletter input#email {
  display: inline;
  width: 100%;
  background: #fff;
}
.page-template-page-savingsanddeals-php #getNewsletter input#submit-button, .page-template-page-circular-php #getNewsletter input#submit-button {
  position: relative;
  top: -3px;
  /* -6 was wonky on homepage and savings and deals */
  left: -7px;
  padding: 3px 10px;
  width: 28%;
  border-radius: 0 4px 4px 0;
}
.page-template-page-savingsanddeals-php #featuredBoxes, .page-template-page-circular-php #featuredBoxes {
  padding-top: 2.5em;
  background: #fff;
  clear: both;
}
.page-template-page-savingsanddeals-php .finePrint, .page-template-page-circular-php .finePrint {
  font-size: 0.625em;
  background: #fff;
  margin-top: 0px;
  padding-top: 1em;
}

.page-template-page-circular-php .fullSubFeature img {
  width: inherit;
}

.page-template-page-dealsgrid-php.page-child .wrapper #main #dealsGrid .innerWrap {
  width: 100%;
}

#dealsGrid .aContentBox .h4.price {
  text-transform: none;
}
#dealsGrid .price span {
  display: none;
  padding: 0px;
}
#dealsGrid .aContentBox {
  overflow: auto;
  border-bottom: 1px solid #e1e6e7;
  padding-top: 10px;
  padding-bottom: 10px;
  		/*
  p {
  			display: none;
  		}
  */
}
#dealsGrid .aContentBox .dealwrap {
  display: table;
  width: 100%;
  vertical-align: middle;
}
#dealsGrid .aContentBox .imageWrap {
  position: relative;
  padding: 0em 1.25em;
  display: table-cell;
  vertical-align: middle;
  min-width: 100px;
}
#dealsGrid .aContentBox .text {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  padding-left: 0em;
  position: relative;
}
#dealsGrid .aContentBox .h4 {
  font-size: 0.8125em;
  line-height: 1em;
  width: auto;
  display: block;
  padding: 0em;
  margin: 0em;
  position: inherit;
}
#dealsGrid .aContentBox .h4:after {
  content: "";
}
#dealsGrid .aContentBox .h4 sup {
  top: -0.25em;
}
#dealsGrid .aContentBox img {
  margin-left: 0%;
  width: 100%;
}
#dealsGrid .aContentBox .productName {
  font-size: 0.8125em;
}
#dealsGrid .aContentBox .productSize {
  font-size: 0.625em;
}
#dealsGrid .aContentBox .badge {
  height: 30px;
  width: 30px;
  background: url(../images/iamahugedeal.png) right top no-repeat;
  background-size: contain;
  text-indent: -9999px;
  position: absolute;
  right: 10px;
  top: 0;
}

.page-template-page-savingscontent-php #simpleContentArea p {
  font-size: 1.125em;
}
.page-template-page-savingscontent-php .wrapper {
  background: #fff;
}
.page-template-page-savingscontent-php .articlehead .pageTitle {
  margin-bottom: 0px;
}
.page-template-page-savingscontent-php #main {
  position: relative;
  margin-bottom: 0px;
}
.page-template-page-savingscontent-php #main img {
  max-width: 100%;
}

/************** mobile deals **************/
.page-id-2567 #main {
  padding-bottom: 1.25em;
  background: #fff;
}
.page-id-2567 .articlehead {
  background-repeat: no-repeat;
  background-position: right bottom;
}
.page-id-2567 #appDownloads {
  border-top: 1px solid #e1e6e7;
  border-bottom: 1px solid #e1e6e7;
  overflow: auto;
  width: 93.75%;
  margin: 0px auto 1.25em auto;
}
.page-id-2567 #appDownloads .text {
  display: none;
}
.page-id-2567 #appDownloads .innerWrap {
  width: 100%;
}
.page-id-2567 #appDownloads .iphoneApp, .page-id-2567 #appDownloads .androindApp {
  width: 48.5714286%;
  position: relative;
  float: right;
  margin-left: 2.8571429%;
  margin-top: 0.625em;
  margin-bottom: 0.625em;
}
.page-id-2567 #appDownloads .iphoneApp a, .page-id-2567 #appDownloads .androindApp a {
  display: block;
  padding: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  line-height: 0px;
}
.page-id-2567 #appDownloads .iphoneApp img, .page-id-2567 #appDownloads .androindApp img {
  width: 100%;
}
.page-id-2567 #appDownloads .iphoneApp img:hover, .page-id-2567 #appDownloads .androindApp img:hover {
  opacity: 50%;
}
.page-id-2567 #appDownloads .iphoneApp {
  float: left;
  margin-left: 0%;
}
.page-id-2567 #simpleSideArea {
  padding-top: 1.25em;
  background: #f4f1ee;
}
.page-id-2567 #simpleSideArea .subTitle {
  padding-top: 0.625em;
  color: #2a3133;
}
.page-id-2567 #simpleSideArea strong {
  color: #2a3133;
}
.page-id-2567 .finePrint {
  background: #fff;
  font-size: 0.625em;
  line-height: 1.5em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.page-id-2567 .finePrint .wrap {
  width: 93.75%;
}
.page-id-2567 .finePrint p {
  padding-bottom: 0px;
}

/*********************
	Circular
*********************/

.page-template-page-circular-php .button {
  text-align: center;
}

.page-template-page-circular-php .circular-close {
	display: block;
}

.page-template-page-circular-php .text-center {
  text-align: center;
}

.page-template-page-circular-php .button.active {
  /* 	background: red; */
}

.page-template-page-circular-php .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  background: white;
  box-shadow: none;
}

.page-template-page-circular-php .pagination > li {
  display: inline;
  border-color: white;
}

.page-template-page-circular-php .pagination > li > a, .page-template-page-circular-php .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #ffffff;
  text-decoration: none;
  background-color: #31a288;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: none;
}

.page-template-page-circular-php .pagination span {
  color: #ffffff;
  padding: 3px;
}

.page-template-page-circular-php .pagination span:hover {
  background-color: #008168;
}

.page-template-page-circular-php .pagination > .active {
  background: white;
  border: 0px none;
}

.page-template-page-circular-php .pagination > li:first-child > a, .page-template-page-circular-php .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: none;
}

.page-template-page-circular-php .pagination > li:last-child > a, .page-template-page-circular-php .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: none;
}

.page-template-page-circular-php .pagination > li > a:focus, .page-template-page-circular-php .pagination > li > a:hover, .page-template-page-circular-php .pagination > li > span:focus,
.page-template-page-circular-php .pagination > li > span:hover {
  /*   color: #23527c; */
  background-color: #008168;
  /*   border-color: #ddd; */
  box-shadow: none;
  color: white;
}

.page-template-page-circular-php .pagination > .active > a, .page-template-page-circular-php .pagination > .active > a:focus, .page-template-page-circular-php .pagination > .active > a:hover,
.page-template-page-circular-php .pagination > .active > span, .page-template-page-circular-php .pagination > .active > span:focus, .page-template-page-circular-php .pagination > .active > span:hover {
  z-index: 2;
  color: #2a3133;
  cursor: default;
  background-color: transparent;
  border: 0px;
  box-shadow: none;
}

.page-template-page-circular-php .pagination > .disabled > a, .page-template-page-circular-php .pagination > .disabled > a:focus, .page-template-page-circular-php .pagination > .disabled > a:hover,
.page-template-page-circular-php .pagination > .disabled > span, .page-template-page-circular-php .pagination > .disabled > span:focus, .page-template-page-circular-php .pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.page-template-page-circular-php .pagination-lg > li > a, .page-template-page-circular-php .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.page-template-page-circular-php .pagination-lg > li:first-child > a, .page-template-page-circular-php .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.page-template-page-circular-php .pagination-lg > li:last-child > a, .page-template-page-circular-php .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.page-template-page-circular-php .pagination-sm > li > a, .page-template-page-circular-php .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.page-template-page-circular-php .pagination-sm > li:first-child > a, .page-template-page-circular-php .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.page-template-page-circular-php .pagination-sm > li:last-child > a, .page-template-page-circular-php .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.page-template-page-circular-php .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.page-template-page-circular-php .pager li {
  display: inline;
}

.page-template-page-circular-php .pager li > a, .page-template-page-circular-php .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.page-template-page-circular-php .pager li > a:focus, .page-template-page-circular-php .pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.page-template-page-circular-php .pager .next > a, .page-template-page-circular-php .pager .next > span {
  float: right;
}

.page-template-page-circular-php .pager .previous > a, .page-template-page-circular-php .pager .previous > span {
  float: left;
}

.page-template-page-circular-php .pager .disabled > a, .page-template-page-circular-php .pager .disabled > a:focus, .page-template-page-circular-php .pager .disabled > a:hover,
.page-template-page-circular-php .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

.page-template-page-circular-php .shoppinglistCol img {
  display: none;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(../fonts/glyphicons-halflings-regular.eot);
  src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/glyphicons-halflings-regular.woff) format("woff"), url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}
.page-template-page-circular-php .glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  /*   font-family: 'Glyphicons Halflings'; */
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-template-page-circular-php .glyphicon-plus:before {
  content: "+";
}

.page-template-page-circular-php .glyphicon-remove:before {
  font-family: 'icomoon';
  content: "\e601";
}

.page-template-page-circular-php .btn-group .button {
  padding: 15px 15px 10px 15px;
  margin: 3px;
  width: 29.5%;
  background-color: #31a288;
}

.page-template-page-circular-php .btn-group .button:hover {
  background-color: #008168;
}

.page-template-page-circular-php .btn-group .button span {
  font-size: 10px;
}

.page-template-page-circular-php .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.page-template-page-circular-php .input-group-addon {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  top: 0px;
}

.page-template-page-circular-php .input-group .form-control:first-child {
  display: table-cell;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.page-template-page-circular-php .shoppinglistCol .btn.btn-default {
  background: white;
  margin: 0px !important;
  position: absolute;
  top: 2px;
  right: 0px;
}

.page-template-page-circular-php .mainFlyerContentCol .btn.btn-default,
.page-template-page-circular-php .itemDesc .btn.btn-default {
  border: 1px solid #ccc;
  padding: 6px;
  background: #fff; }

.page-template-page-circular-php .mainFlyerContentCol .btn.btn-default.circInfoButton {
/*
  padding: 0px;
  border: 0px;
  background: transparent;
  border-radius: 200px;
*/
}

.page-template-page-circular-php .shoppinglistCol .row {
  padding-bottom: 10px;
  position: relative;
}

.page-template-page-circular-php .shoppinglistCol .row:last-child {
  border-bottom: 1px solid #ccc;
}

.page-template-page-circular-php .hidden {
  display: none;
}

/* modal-content */
.gmodal .modal-open {
  overflow: hidden;
}

.gmodal .modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.gmodal .modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.gmodal .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.gmodal .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.gmodal .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.gmodal .modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.gmodal .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.gmodal .modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.gmodal .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.gmodal .modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.gmodal .modal-header .close {
  margin-top: -2px;
}

.gmodal .modal-title {
  margin: 0;
  line-height: 1.42857;
}

.gmodal .modal-body {
  position: relative;
  padding: 15px;
}

.gmodal .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.gmodal .modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.gmodal .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.gmodal .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.gmodal .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal-content .col-md-5 {
  width: 41.66666667%;
  float: left;
  padding-right: 13px;
}
.modal-content .col-md-7 {
  width: 58.33333333%;
  float: left;
}

.modal-content button {
  line-height: 25px;
  background-color: #31a288;
  display: inline-block;
  position: relative;
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  text-decoration: none;
  /* font-size: 0.9em; */
  font-size: 0.8125em;
  line-height: 40px;
  font-weight: 600;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.page-template-page-circular-php .manageListSection {
  width: 93.75%;
  margin: 0 auto;
}
.page-template-page-circular-php .manageListSection .btn-group .button {
  color: white;
}
.page-template-page-circular-php .manageListSection .removeUpdate .button {
  background-color: #31a288;
  border-radius: 4px;
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.page-template-page-circular-php .manageListSection .removeUpdate .button:hover {
  background-color: #008168;
}
.page-template-page-circular-php .manageListSection .thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
}
.page-template-page-circular-php .manageListSection .QuantityThing {
  margin-bottom: 10px;
}
.page-template-page-circular-php .manageListSection .QuantityThing .row {
  margin-bottom: 10px;
}
.page-template-page-circular-php .manageListSection .QuantityThing .itemDesc input {
  padding: 12px;
}
.page-template-page-circular-php .manageListSection .removeUpdate input {
  padding: 5px;
  margin-right: 10%;
}
.page-template-page-circular-php .manageListSection .removeUpdate .button {
  padding: 6px 14px;
}
.page-template-page-circular-php .manageListSection .printEmailNewgroup {
  padding-bottom: 30px;
}
.page-template-page-circular-php .manageListSection .input-group-btn {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  top: 0px;
  padding: 0px;
  background-color: #31a288;
  color: white;
}
.page-template-page-circular-php .manageListSection .input-group-btn:hover {
  background-color: #008168;
}
.page-template-page-circular-php .manageListSection .input-group-btn .btn-default {
  background: #31a288;
  border: 0px;
  color: white;
}
.page-template-page-circular-php .manageListSection .input-group-btn .btn-default:hover {
  background-color: #008168;
}

.emailMyShoppingList {
  width: 93.75%;
  margin: 0 auto;
  max-width: 510px;
}
.emailMyShoppingList .toForm, .emailMyShoppingList .fromForm {
  padding-top: 20px;
}
.emailMyShoppingList span.required {
  position: relative;
  top: -10px;
  font-size: 12px;
}
.emailMyShoppingList .cancelAndSend .button {
  background-color: #31a288;
  color: white;
  padding: 6px 14px;
  width: 100%;
  margin-bottom: 10px;
}

.printMyList {
  width: 93.75%;
  margin: 0 auto;
  max-width: 510px;
}
.printMyList .printMyListBody {
  clear: both;
}
.printMyList .pull-right {
  float: right;
}
.printMyList .printMyListHeader {
  position: relative;
  padding-bottom: 20px;
}
.printMyList .printButton {
  background: #31a288;
  border: 0px;
  color: white;
  margin-right: 0px !important;
  height: 40px;
  width: 100%;
  margin-bottom: 20px;
}
.printMyList .printCouponCategory {
  padding-bottom: 10px;
}
/* 	mine */
/*********************
	ABOUT US
*********************/
#simpleContentArea img, #photoGallery img {
  max-width: 100%;
  border-radius: 0.3125em;
}

#partners div {
  margin-bottom: 0.9375em;
}

/*********************
	Nourish homepage
*********************/
.page-template-page-nourish-php .fullSubFeature img {
  display: none;
  /*
  display: block;
  margin: 0 auto;
  padding-top: 20px;
  max-width: 100%;
  */
}
.page-template-page-nourish-php .fullSubFeature .text {
  padding-top: 20px;
}
.page-template-page-nourish-php .fullSubFeature .text h3 {
  margin-bottom: 15px;
}
.page-template-page-nourish-php #featuredContent ul {
  border-top: 1px solid #e1e6e7;
}
.page-template-page-nourish-php .aFeaturedContentBox.pastLimit, .page-template-page-nourish-php .aContentBox.pastLimit {
  display: list-item;
}
.page-template-page-nourish-php #contentLinksAndNewsletter {
  background: #fff;
}
.page-template-page-nourish-php #contentLinksAndNewsletter .wrap {
  width: auto;
}
.page-template-page-nourish-php #contentLinksAndNewsletter .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}
.page-template-page-nourish-php #contentLinksAndNewsletter .contentLinks .textLink {
  display: none;
}
.page-template-page-nourish-php #eventsBanner {
  background: #f4f1ee;
}
.page-template-page-nourish-php #featuredContent {
  background: #fff;
}
.page-template-page-nourish-php #featuredContent.noevents {
  padding-top: 0px;
}
.page-template-page-nourish-php #featuredContent.noevents .wrap {
  border-top: 1px solid #e1e6e7;
}
.page-template-page-nourish-php .aContentBox:last-child {
  border-bottom: 0px;
}
.page-template-page-nourish-php .aContentBox .notaLink {
  display: block;
}
.page-template-page-nourish-php .aContentBox .notaLink img {
  margin: 0 auto;
  width: initial;
  max-width: 100%;
}
.page-template-page-nourish-php .aContentBox .notaLink .h4 {
  width: 100%;
  display: block;
  text-align: center;
}
.page-template-page-nourish-php .aContentBox .notaLink p {
  display: block;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.page-template-page-nourish-php #subFeaturedBoxes .heading {
  text-align: center;
}
.page-template-page-nourish-php .buttonarea {
  margin: 20px 0px;
  text-align: center;
}
.page-template-page-nourish-php #getNewsletter img {
  display: none;
}
.page-template-page-nourish-php .anEvent {
  display: none;
}
.page-template-page-nourish-php .anEvent:first-child {
  display: block;
}
.page-template-page-nourish-php .anEvent:nth-child(2) {
  display: block;
}

/*********************
	Careers
*********************/
.page-template-page-careers-php #inner-content, .page-template-page-extras-php #inner-content {
  overflow: hidden; }
.page-template-page-careers-php #subNavigation, .page-template-page-extras-php #subNavigation {
  background: #f4f1ee; }
.page-template-page-careers-php section, .page-template-page-extras-php section {
  padding-top: 20px; }
.page-template-page-careers-php img, .page-template-page-extras-php img {
  max-width: 100%;
  width: 100%; }
.page-template-page-careers-php .wrap, .page-template-page-extras-php .wrap {
  width: 93.75%;
  margin: 0 auto; }
.page-template-page-careers-php .careersFeature, .page-template-page-extras-php .careersFeature {
  padding-top: 20px; }
  .page-template-page-careers-php .careersFeature h2, .page-template-page-extras-php .careersFeature h2 {
    font-size: 30px;
    line-height: 30px;
    padding: 15px 0 10px 0; }
  .page-template-page-careers-php .careersFeature a, .page-template-page-extras-php .careersFeature a {
    margin-bottom: 10px; }
  .page-template-page-careers-php .careersFeature.noCTABanner .wrap, .page-template-page-extras-php .careersFeature.noCTABanner .wrap {
    border-bottom: 1px solid #e1e6e7;
    padding-bottom: 15px; }
.page-template-page-careers-php #ctaBanner .wrap, .page-template-page-extras-php #ctaBanner .wrap {
  background: #2a3133; }
  .page-template-page-careers-php #ctaBanner .wrap a, .page-template-page-extras-php #ctaBanner .wrap a {
    display: block;
    padding: 12px; }
  .page-template-page-careers-php #ctaBanner .wrap p, .page-template-page-extras-php #ctaBanner .wrap p {
    color: #8f9ba3; }
    .page-template-page-careers-php #ctaBanner .wrap p strong, .page-template-page-extras-php #ctaBanner .wrap p strong {
      color: #fff; }
.page-template-page-careers-php #ctaBanner.hasLink .innerCTA, .page-template-page-extras-php #ctaBanner.hasLink .innerCTA {
  display: table; }
  .page-template-page-careers-php #ctaBanner.hasLink .innerCTA span, .page-template-page-extras-php #ctaBanner.hasLink .innerCTA span {
    padding: 0px;
    display: table-cell;
    vertical-align: top;
    width: 100%; }
  .page-template-page-careers-php #ctaBanner.hasLink .innerCTA:after, .page-template-page-extras-php #ctaBanner.hasLink .innerCTA:after {
    font-family: 'icomoon';
    content: "\e602";
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-size: 1.4375em;
    padding-left: 20px; }
.page-template-page-careers-php #ctaBanner.noLink .wrap, .page-template-page-extras-php #ctaBanner.noLink .wrap {
  padding: 12px; }
.page-template-page-careers-php #expandableBoxes .h2, .page-template-page-extras-php #expandableBoxes .h2 {
  font-size: 20px; }
.page-template-page-careers-php #expandableBoxes .anExpandableBox, .page-template-page-extras-php #expandableBoxes .anExpandableBox {
  cursor: pointer;
  padding-bottom: 20px; }
  .page-template-page-careers-php #expandableBoxes .anExpandableBox:hover, .page-template-page-extras-php #expandableBoxes .anExpandableBox:hover {
    color: #31a288; }
  .page-template-page-careers-php #expandableBoxes .anExpandableBox.open .textLink, .page-template-page-extras-php #expandableBoxes .anExpandableBox.open .textLink {
    display: none; }
  .page-template-page-careers-php #expandableBoxes .anExpandableBox .introText p, .page-template-page-extras-php #expandableBoxes .anExpandableBox .introText p {
    padding-bottom: 0px; }
.page-template-page-careers-php #expandableBoxes .fullText, .page-template-page-extras-php #expandableBoxes .fullText {
  display: none; }
.page-template-page-careers-php #expandableBoxes .fullText, .page-template-page-extras-php #expandableBoxes .fullText {
  border-top: 1px solid #cfcfcf;
  padding-top: 20px;
  margin-top: 25px;
  padding-bottom: 30px;
  position: relative; }
  .page-template-page-careers-php #expandableBoxes .fullText .bioImage, .page-template-page-extras-php #expandableBoxes .fullText .bioImage {
    display: none; }
  .page-template-page-careers-php #expandableBoxes .fullText .bioHeader, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader {
    clear: both; }
    .page-template-page-careers-php #expandableBoxes .fullText .bioHeader .fullName, .page-template-page-careers-php #expandableBoxes .fullText .bioHeader .position, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader .fullName, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader .position {
      width: 82.8571429%;
      position: relative;
      float: left;
      margin-left: 0%; }
    .page-template-page-careers-php #expandableBoxes .fullText .bioHeader .closeIcon, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader .closeIcon {
      width: 14.2857143%;
      position: relative;
      float: right;
      margin-left: 2.8571429%;
      color: #666; }
      .page-template-page-careers-php #expandableBoxes .fullText .bioHeader .closeIcon:hover, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader .closeIcon:hover {
        cursor: pointer;
        color: #31a288; }
      .page-template-page-careers-php #expandableBoxes .fullText .bioHeader .closeIcon span, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader .closeIcon span {
        float: right; }
    .page-template-page-careers-php #expandableBoxes .fullText .bioHeader .position, .page-template-page-extras-php #expandableBoxes .fullText .bioHeader .position {
      text-transform: capitalize;
      font-size: 13px; }
  .page-template-page-careers-php #expandableBoxes .fullText .bioText, .page-template-page-extras-php #expandableBoxes .fullText .bioText {
    clear: both;
    padding-top: 10px; }
.page-template-page-careers-php #expandableBoxes .fullText:after, .page-template-page-extras-php #expandableBoxes .fullText:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: white transparent;
  display: block;
  width: 0px;
  top: -19px;
  bottom: auto;
  left: auto;
  right: 50%;
  border-width: 0px 20px 20px; }
.page-template-page-careers-php #expandableBoxes .fullText:before, .page-template-page-extras-php #expandableBoxes .fullText:before {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: #cfcfcf transparent;
  display: block;
  width: 0px;
  top: -20px;
  bottom: auto;
  left: auto;
  right: 50%;
  border-width: 0px 20px 20px; }
.page-template-page-careers-php #expandableBoxes .loadBox, .page-template-page-extras-php #expandableBoxes .loadBox {
  display: none; }
.page-template-page-careers-php #benefits, .page-template-page-extras-php #benefits {
  padding-top: 0px; }
.page-template-page-careers-php #benefits .wrap, .page-template-page-extras-php #benefits .wrap {
  background: #2a3133;
  color: #fff;
  padding: 12px; }
  .page-template-page-careers-php #benefits .wrap strong, .page-template-page-extras-php #benefits .wrap strong {
    color: #31a288; }
  .page-template-page-careers-php #benefits .wrap h2, .page-template-page-extras-php #benefits .wrap h2 {
    border-bottom: 1px solid #fff; }
    .page-template-page-careers-php #benefits .wrap h2 p, .page-template-page-extras-php #benefits .wrap h2 p {
      color: #fff; }
      .page-template-page-careers-php #benefits .wrap h2 p strong, .page-template-page-extras-php #benefits .wrap h2 p strong {
        color: #31a288; }
  .page-template-page-careers-php #benefits .wrap ul li, .page-template-page-extras-php #benefits .wrap ul li {
    font-weight: 600;
    padding-top: 10px;
    clear: both; }
    .page-template-page-careers-php #benefits .wrap ul li p, .page-template-page-extras-php #benefits .wrap ul li p {
      color: #fff;
      text-transform: uppercase; }
    .page-template-page-careers-php #benefits .wrap ul li:before, .page-template-page-extras-php #benefits .wrap ul li:before {
      float: left;
      font-family: 'icomoon';
      content: "\e607";
      color: #31a288;
      width: 30px;
      position: relative;
      top: -2px; }
  .page-template-page-careers-php #benefits .wrap .moreText, .page-template-page-extras-php #benefits .wrap .moreText {
    color: #8f9ba3;
    padding-left: 28px; }
.page-template-page-careers-php #quotes, .page-template-page-extras-php #quotes {
  padding-bottom: 20px; }
  .page-template-page-careers-php #quotes .quotesLogo, .page-template-page-extras-php #quotes .quotesLogo {
    float: right;
    max-width: 48px; }
  .page-template-page-careers-php #quotes .text, .page-template-page-extras-php #quotes .text {
    clear: both;
    padding-top: 5px; }
  .page-template-page-careers-php #quotes .aQuote, .page-template-page-extras-php #quotes .aQuote {
    border: 1px solid #e1e6e7;
    padding: 10px;
    margin-bottom: 10px; }
    .page-template-page-careers-php #quotes .aQuote p, .page-template-page-extras-php #quotes .aQuote p {
      padding-bottom: 0px; }
    .page-template-page-careers-php #quotes .aQuote:last-child, .page-template-page-extras-php #quotes .aQuote:last-child {
      margin-bottom: 0px; }
    .page-template-page-careers-php #quotes .aQuote:before, .page-template-page-extras-php #quotes .aQuote:before {
      text-indent: -9999px;
      display: inline-block;
      content: '"';
      color: #31a288;
      background: url(../images/quotel.png) no-repeat;
      height: 18px;
      width: 22px; }
.page-template-page-careers-php #social, .page-template-page-extras-php #social {
  padding-bottom: 20px; }
  .page-template-page-careers-php #social .socailWrap, .page-template-page-extras-php #social .socailWrap {
    background: #f4f1ee;
    padding: 12px; }
    .page-template-page-careers-php #social .socailWrap h2, .page-template-page-extras-php #social .socailWrap h2 {
      text-transform: initial; }
    .page-template-page-careers-php #social .socailWrap ul li, .page-template-page-extras-php #social .socailWrap ul li {
      display: inline-block; }
      .page-template-page-careers-php #social .socailWrap ul li a, .page-template-page-extras-php #social .socailWrap ul li a {
        color: #31a288;
        font-size: 33px;
        padding-right: 10px; }
        .page-template-page-careers-php #social .socailWrap ul li a:hover, .page-template-page-extras-php #social .socailWrap ul li a:hover {
          color: #31a288; }
.page-template-page-careers-php #searchJobsApply, .page-template-page-extras-php #searchJobsApply {
  -moz-box-shadow: inset 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: inset 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  box-shadow: inset 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
  background: #f4f1ee;
  text-align: center;
  padding-bottom: 20px; }
  .page-template-page-careers-php #searchJobsApply a, .page-template-page-extras-php #searchJobsApply a {
    margin-bottom: 0px; }
.page-template-page-careers-php #locations, .page-template-page-extras-php #locations {
  display: none; }
  .page-template-page-careers-php #locations img, .page-template-page-extras-php #locations img {
    border: 1px solid #e1e6e7;
    max-width: 780px; }
    .page-template-page-careers-php #locations img.sideMap, .page-template-page-extras-php #locations img.sideMap {
      max-width: 240px; }
.page-template-page-careers-php #faqs .qaBlock, .page-template-page-extras-php #faqs .qaBlock {
  border-bottom: 1px solid #e1e6e7;
  padding-top: 10px;
  padding-bottom: 10px; }
  .page-template-page-careers-php #faqs .qaBlock:last-child, .page-template-page-extras-php #faqs .qaBlock:last-child {
    border-bottom: 0px none; }
.page-template-page-careers-php #faqs .question, .page-template-page-extras-php #faqs .question {
  cursor: pointer;
  display: table;
  width: 100%;
  vertical-align: middle; }
  .page-template-page-careers-php #faqs .question span, .page-template-page-extras-php #faqs .question span {
    vertical-align: middle;
    width: 100%;
    padding-right: 20px; }
  .page-template-page-careers-php #faqs .question:after, .page-template-page-extras-php #faqs .question:after {
    font-family: 'icomoon';
    content: "\e601";
    color: #31a288;
    vertical-align: middle;
    font-size: 1.4375em;
    float: right;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .page-template-page-careers-php #faqs .question:focus, .page-template-page-extras-php #faqs .question:focus {
    outline: none; }
    .page-template-page-careers-php #faqs .question:focus span, .page-template-page-extras-php #faqs .question:focus span {
      font-weight: bold; }
.page-template-page-careers-php #faqs .open .question:after, .page-template-page-extras-php #faqs .open .question:after {
  color: #2a3133;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }
.page-template-page-careers-php #faqs .answer, .page-template-page-extras-php #faqs .answer {
  display: none;
  max-width: 780px;
  padding-top: 10px;
  color: #7d8891; }
  .page-template-page-careers-php #faqs .answer p, .page-template-page-extras-php #faqs .answer p {
    font-size: 1em; }
  .page-template-page-careers-php #faqs .answer ul, .page-template-page-extras-php #faqs .answer ul {
    list-style: disc;
    margin-left: 20px; }
.page-template-page-careers-php #footerImage, .page-template-page-extras-php #footerImage {
  margin: 0px;
  padding: 0px;
  margin-top: 20px; }
  .page-template-page-careers-php #footerImage .wrap, .page-template-page-extras-php #footerImage .wrap {
    width: 100%;
    padding: 0px; }
    .page-template-page-careers-php #footerImage .wrap img, .page-template-page-extras-php #footerImage .wrap img {
      display: block;
      vertical-align: text-bottom;
      margin-bottom: -1px; }

/*********************
	EXTRAS
*********************/
.page-template-page-extras-php #content {
  background: #fff; }
.page-template-page-extras-php .extrasFeature {
	padding-top: 15px;
}
.page-template-page-extras-php .featureImg {
	display: none; }
.page-template-page-extras-php .extrasFeature .ctas {
	display: none;
}
.page-template-page-extras-php #appDownloads {
	padding: 18px 0px 15px;
	border-top: #e1e6e7 1px solid;
/* 	max-width: 310px; */
	margin: 20px auto 0;
}
.page-template-page-extras-php #appDownloads h3 {
	font-size: 13px;
}
.page-template-page-extras-php #appDownloads .appDownloadsText {
	max-width: 380px;
	    margin: 0 auto;
    text-align: center;
}
.page-template-page-extras-php #appDownloads .appDownloadsbtns {
	max-width: 400px;
	margin: 0 auto;
	
}
.page-template-page-extras-php #appDownloads .iphoneApp {
	width: 48.5714286%;
	position: relative;
	float: left;
	margin-left: 0%;
	
}
.page-template-page-extras-php #appDownloads .androindApp {
	width: 48.5714286%;
	position: relative;
	float: left;
	margin-left: 2.8571429%;
	
}

.page-template-page-extras-php #appDownloads .iphoneApp a, .page-template-page-extras-php #appDownloads .androindApp a {
	display: block;
	text-align: center;
	margin-right: 0px;
}
.page-template-page-extras-php #appDownloads .iphoneApp img, .page-template-page-extras-php #appDownloads .androindApp img {
	max-width: 291px;
}
.page-template-page-extras-php .extrasFeature .featureImg {
  
  max-width: 421px; }
.page-template-page-extras-php .extrasFeature p {
  font-size: 19px; }
.page-template-page-extras-php .extrasFeature ul {
  list-style: none; }
.page-template-page-extras-php .extrasFeature li {
  font-size: 17px;
  padding-left: 38px;
  background-image: url("data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QOPaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzMiA3OS4xNTkyODQsIDIwMTYvMDQvMTktMTM6MTM6NDAgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6Y2Q3MDM4YTktYzQ4ZC00OTczLTk0MGQtM2Y1NzUxODY3YmY5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjFBRjEyNTBDMjkzNzExRTc4OEYzQ0Q4NkREMTVENUNDIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjFBRjEyNTBCMjkzNzExRTc4OEYzQ0Q4NkREMTVENUNDIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ZTA0OTYzNWYtMTAwZi00ZWU5LWI5ZWItYzdmZWY2OTZhZWNmIiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZmQ2NGEwZDAtNDFlNy0xMTdhLThmOTAtYTU0ZjIwYjI4Njg0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEQAUAwERAAIRAQMRAf/EAIAAAAEFAAAAAAAAAAAAAAAAAAYFBwgJCgEAAwEBAAAAAAAAAAAAAAAAAQIDAAQQAAEDAgQDBgcBAAAAAAAAAAMEBQYCBwEUCAkAFRYREyMXGBkltXa2N3c4ChEAAQMCBQIHAAAAAAAAAAAAAQACAxES8CExMhNBcVFhobHRIgT/2gAMAwEAAhEDEQA/AN6EanEKmZZGCHy+Lys8PkKyIy0Mbf2p8LF5W3CTncIzIhtitVWyyBAFWKsyJTgNSKklONVGGFWHbqFAEHRU1bje7KqsZcyMaH9FkTQagdf12FqOPMERDVguh1mqnlNmgSO5Rk5hDI6JGjGtypa6zAEibhVODmZOjpFQsqyOoudkwKEs1p4485D6JW9qa4HkFz71ZXa9yDnPmx6yeq33K+bHKsn0D0B3nSXptyXwfprleW5f4+X73wOByCtKfTwx1R4TbW48utfP4VTG5ZoV1VbWVwrk7h+1ZL5JC7XzZC8qNSNl2NIGRssEI6DXEVXCboW7JnNnfIA3rnAq3CkicimIK6qjJ6sGshRoaMc2QWSaqEsb4SZYdvUYwFKj/Ovt7OFrbTOm4Bf0TlI9SGqtMtkEWeZadQ6yKOWlka6l6pkKpe4VGWGlV5HDseFiwhCFI1YoqcKh1GWUEWZ9TYNoT/lio3kdvPstM3EV1oNuL+Pp19Gyf5Iu4yB0KDtO38/WL/Tlsfspk4J1PdBu0dk8fATL/9k=");
  background-repeat: no-repeat;
  background-position: 0% 5px; }
.page-template-page-extras-php .extrasFeature li.highlighted {
  color: #31a288;
  background-image: url("data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QOPaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzMiA3OS4xNTkyODQsIDIwMTYvMDQvMTktMTM6MTM6NDAgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6Y2Q3MDM4YTktYzQ4ZC00OTczLTk0MGQtM2Y1NzUxODY3YmY5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjFBRjEyNTEwMjkzNzExRTc4OEYzQ0Q4NkREMTVENUNDIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjFBRjEyNTBGMjkzNzExRTc4OEYzQ0Q4NkREMTVENUNDIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ZTA0OTYzNWYtMTAwZi00ZWU5LWI5ZWItYzdmZWY2OTZhZWNmIiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZmQ2NGEwZDAtNDFlNy0xMTdhLThmOTAtYTU0ZjIwYjI4Njg0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEQAUAwERAAIRAQMRAf/EAJUAAAEFAQAAAAAAAAAAAAAAAAUEBgcICQoBAAEFAQEAAAAAAAAAAAAAAAQBAgMFBwYIEAAABgAEBAQHAQAAAAAAAAABAgMEBQYAFAcIExUWFxESIxgkdbU2drY3CREAAQIEAgQJCwUAAAAAAAAAAQIDABESBAUHcRMUBiExUWGxIjIjM/BBoeFCcrJzsxUXdDUWNgj/2gAMAwEAAhEDEQA/AO9+IsdesB5ZKBnYabUgZVxBzicRJspI8NNtCJKOoeVKzXWNHyjZNchlG63kVIBwESh4hhSlSe0CJwJa39jel1Nk808plwtuBC0qocTIlC6SaVgETSqShMTEUC3Y731tN7fD7c9vcI21R3P3Zw3ioyDTEHMBQBfo8ZOWtx0lCFM9QYiZ2DMyiZG7Qgunh0kAIVcy3ta0l940sD06PLmEYtmVm6vAcUa3E3IZTiOYd4oIQ2OFu2qEwt+XtBM10TASgFx0pRILXeyi0dseZ977x7tM/wBb9/edyXB63yWX6Y6Y83I+0mX+A5Rk+DlfU4Xn9PCbUmuVI2bip5uWfL55xL+JcR/j20fd7z8l17R9y1i5bRTLVanw9il3epopo61M+rFH93e23WrZfabdup2WTstX6bYm0grq3p9HIJy0fWjPSuDLWlpXnyTxhJVhq5dHcABkjLQS4iokIMjnK2Ltn2rpIt7oAqHEeXm09OmMhzO3C3syoxG6zHymedYwp9Kje2yRWlqqc3g0oKSplJJVwgqt1TUnuiQ3NP8AlNtZdUyjvd0GpxHctq1rWi4lIWQnFVXsrE0eWcBIBKLOXQqLqTV+deD9wuYxzmZZcAEplFymixC4qXqG/DR0+rijrP8AN+XTmFYQvMPeEKd3mxYFbanCVLRbrNVZJmS5cnvFKJJLer4QSsHX/FbHqGAFr+17J8gmPpzjDk9oaYCxL9uuPkL+EwA0q/l+m/4DT/16OwrniK949MBbt/12w/RMfSTD+wyLqP/Z"); }
.page-template-page-extras-php .extrasFeature .ctas {
  padding-top: 30px;
  padding-bottom: 30px; }
  .page-template-page-extras-php .extrasFeature .ctas a {
    margin-right: 10px; }
  .page-template-page-extras-php .extrasFeature .ctas .textlink {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.33em;
    padding-top: 10px;
    display: block;
    text-align: center;
    margin: 0 auto; }
.page-template-page-extras-php #steps {
  background: #f4f1ee;
  text-align: center; }
  .page-template-page-extras-php #steps h2 {
    font-size: 24px; }
  .page-template-page-extras-php #steps .step {
    max-width: 330px;
    display: block;
    margin: 0 auto;
    text-align: center; }
    .page-template-page-extras-php #steps .step img {
      max-width: 141px;
      display: block;
      margin: 0 auto; }
    .page-template-page-extras-php #steps .step p {
      font-size: 20px;
      padding-left: 10px;
      padding-right: 10px; }
    .page-template-page-extras-php #steps .step a:focus, .page-template-page-extras-php #steps .step a:hover {
      text-decoration: underline; }
.page-template-page-extras-php #becomeAMember {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 40px;
  padding-top: 0px; }
  .page-template-page-extras-php #becomeAMember .wrap {
    padding-top: 50px;
    border-top: #e1e6e7 1px solid; }
  .page-template-page-extras-php #becomeAMember .button {
    margin-top: 10px;
    font-weight: bold; }
.page-template-page-extras-php #fineprint {
  text-align: center;
  font-size: 12px;
  color: #2a3133;
  margin-bottom: 10px; }

/*********************
	recipes and expertise
*********************/
.page-template-page-recipesandexpertise-php #featuredContent {
  padding-bottom: 1.25em;
  background: #fff;
  margin-bottom: 0;
  position: relative;
}
.page-template-page-recipesandexpertise-php #featuredContent h4 {
  margin-top: 0.625em;
  text-transform: capitalize;
  letter-spacing: inherit;
}
.page-template-page-recipesandexpertise-php #featuredContent .button {
  margin-top: 20px;
}
.page-template-page-recipesandexpertise-php #howtoVideos .contentHeader,
.page-template-page-recipesandexpertise-php #AskOurExperts .contentHeader {
  display: none;
}
.page-template-page-recipesandexpertise-php #howToAndAsk .wrap,
.page-template-page-recipesandexpertise-php #magazinesAndGuides .wrap {
  width: 100%;
}
.page-template-page-recipesandexpertise-php #howToAndAsk .wrap #magazines,
.page-template-page-recipesandexpertise-php #magazinesAndGuides .wrap #magazines {
  background: #fff;
}
.page-template-page-recipesandexpertise-php a.video {
  display: block;
  position: relative;
}
.page-template-page-recipesandexpertise-php a.video .playicon {
  display: block;
  width: 74px;
  height: 74px;
  background: url(../images/videoplayicon.png) right top repeat-y;
  line-height: 0;
  position: absolute;
  top: -89px;
  left: 79px;
}
.page-template-page-recipesandexpertise-php #magazinesAndGuides {
  background: #fff;
  overflow: auto;
  clear: both;
}
.page-template-page-recipesandexpertise-php #magazinesAndGuides #magazines .aContentBox {
  padding: 3.125% 0% 3.125% 3.125%;
}
.page-template-page-recipesandexpertise-php #magazinesAndGuides #listofGuides {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}
.page-template-page-recipesandexpertise-php #magazinesAndGuides #listofGuides .wrap {
  width: 93.75%;
}
.page-template-page-recipesandexpertise-php .aFeaturedContentBox.box1, .page-template-page-recipesandexpertise-php .aContentBox.box1 {
  border-top: 1px solid #e1e6e7;
}

#listofGuides .h4 {
  text-transform: capitalize;
}
#listofGuides a.button {
  margin-top: 0.76923em;
}

/************** ask an expert **************/
.page-template-page-askexpert-php .articlehead img {
  display: none;
}
.page-template-page-askexpert-php #thePhoneNumber {
  border-bottom: 1px solid #e1e6e7;
  margin-bottom: 0.9375em;
  padding-bottom: 0.625em;
}
.page-template-page-askexpert-php .days {
  display: inline;
  font-size: 0.8125em;
  line-height: 1em;
  color: #666;
  font-weight: 900;
  padding: 0px;
  margin: 0px;
}
.page-template-page-askexpert-php .days:after {
  content: ' ';
}
.page-template-page-askexpert-php .time {
  display: inline;
  padding: 0px;
  margin: 0px;
}
.page-template-page-askexpert-php .wpcf7-form label {
  display: none;
}
.page-template-page-askexpert-php #aside1 {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

/************** magazines **************/
.page-id-1606 .aContentBox, .page-id-5532 .aContentBox, .page-template-page-magazines-php .aContentBox {
  padding: 3.125% 0% 3.125% 3.125%;
}
.page-id-1606 #listsOfLinks, .page-id-5532 #listsOfLinks, .page-template-page-magazines-php #listsOfLinks {
  padding-top: 1.25em;
}
.page-id-1606 .aListOfLinks .h4, .page-id-5532 .aListOfLinks .h4, .page-template-page-magazines-php .aListOfLinks .h4 {
  font-weight: normal;
  font-size: 1.53846em;
  margin-top: 0.25em;
}
.page-id-1606 .aListOfLinks ul li, .page-id-5532 .aListOfLinks ul li, .page-template-page-magazines-php .aListOfLinks ul li {
  padding: 0.9375em 0px;
  border-bottom: 1px solid #e1e6e7;
}
.page-id-1606 .aListOfLinks ul li a, .page-id-5532 .aListOfLinks ul li a, .page-template-page-magazines-php .aListOfLinks ul li a {
  display: block;
  color: #2a3133;
  font-weight: 600;
}
.page-id-1606 .aListOfLinks ul li a:hover, .page-id-5532 .aListOfLinks ul li a:hover, .page-template-page-magazines-php .aListOfLinks ul li a:hover {
  color: #31a288;
}
.page-id-1606 .aListOfLinks ul li a:after, .page-id-5532 .aListOfLinks ul li a:after, .page-template-page-magazines-php .aListOfLinks ul li a:after {
  font-family: 'icomoon';
  content: "\e602";
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.page-id-1606 .aListOfLinks ul li:last-child, .page-id-5532 .aListOfLinks ul li:last-child, .page-template-page-magazines-php .aListOfLinks ul li:last-child {
  border-bottom: 0px none;
}

/************** How-to Videos **************/
#newVideoList {
  background: #fff;
  padding: 1.25em 0px;
}
#newVideoList .newestWithVideos li {
  margin-bottom: 0.9375em;
  line-height: 1.21875em;
}
#newVideoList .newestWithVideos li a {
  font-weight: 600;
  font-size: 0.8125em;
}
#newVideoList .newestWithVideos li:last-child {
  margin-bottom: 0px;
}

/************** Graphs **************/
.page-template-page-graphs-php h1, .page-template-page-graphs-php .h1, .page-template-page-graphs-php h2, .page-template-page-graphs-php .h2, .page-template-page-graphs-php h3, .page-template-page-graphs-php .h3, .page-template-page-graphs-php h4, .page-template-page-graphs-php .h4, .page-template-page-graphs-php h5, .page-template-page-graphs-php .h5 {
  padding: 0px 8px;
}
.page-template-page-graphs-php .additionalText {
  padding: 10px 0.61538em;
}
.page-template-page-graphs-php .atablegroup {
  padding-bottom: 1.875em;
}
.page-template-page-graphs-php .tableChunk {
  border: 1px solid #e1e6e7;
  margin: 1.25em 0px;
}
.page-template-page-graphs-php .tableHeader {
  background: #f4f1ee;
  padding-top: 8px;
  padding-bottom: 8px;
}
.page-template-page-graphs-php .tableHeader .h5 {
  font-size: 0.8125em;
}
.page-template-page-graphs-php #textChunks p {
  padding-left: 0.5625em;
}
.page-template-page-graphs-php table, .page-template-page-graphs-php thead, .page-template-page-graphs-php tbody, .page-template-page-graphs-php th, .page-template-page-graphs-php td, .page-template-page-graphs-php tr {
  display: block;
}
.page-template-page-graphs-php thead {
  display: none;
}
.page-template-page-graphs-php table {
  width: 100%;
}
.page-template-page-graphs-php table p {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -ms-word-break: inherit;
  -ms-word-wrap: inherit;
  word-break: inherit;
  word-break: inherit;
}
.page-template-page-graphs-php table tbody td {
  border: 1px solid #f4f1ee;
  vertical-align: top;
  padding: 0.5em;
}
.page-template-page-graphs-php table tbody td p {
  -moz-hyphens: none;
}
.page-template-page-graphs-php table tbody td.hidden {
  display: none;
}
.page-template-page-graphs-php table tbody .hasImage {
  background: #fff;
}
@media (max-width: 480px) {
  .page-template-page-graphs-php table {
    padding-bottom: 1.25em;
  }
  .page-template-page-graphs-php table tr {
    border: 2px solid #e1e6e7;
    margin-top: 1.25em;
  }
  .page-template-page-graphs-php table tbody td.hidden {
    display: block;
  }
  .page-template-page-graphs-php #twocolGraphSecs tr, .page-template-page-graphs-php #twocolGraph tr {
    margin-top: 0px;
  }
  .page-template-page-graphs-php #fourgrouped tr:nth-child(2n) {
    background: #f4f1ee;
  }
  .page-template-page-graphs-php #fourgrouped tr:nth-child(2n) td {
    border: 1px solid #fff;
  }
  .page-template-page-graphs-php #fourgrouped tbody:nth-child(2n-1) tr:nth-child(2n-1) {
    background: #f4f1ee;
  }
  .page-template-page-graphs-php #fourgrouped tbody:nth-child(2n-1) tr:nth-child(2n-1) td {
    border: 1px solid #fff;
  }
  .page-template-page-graphs-php #fourgrouped tbody:nth-child(2n-1) tr:nth-child(2n) {
    background: #fff;
  }
  .page-template-page-graphs-php #fourgrouped tbody:nth-child(2n-1) tr:nth-child(2n) td {
    border: 1px solid #fff;
  }
  .page-template-page-graphs-php #threesidebyGraph tr {
    border-left: 0px;
    border-right: 0px;
    background: #fff;
  }
  .page-template-page-graphs-php #threesidebyGraph tr td {
    border-left: 2px solid #e1e6e7;
    border-right: 2px solid #e1e6e7;
  }
  .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(3) {
    margin-bottom: 20px;
    border-bottom: 2px solid #e1e6e7;
  }
  .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(4) {
    border-top: 2px solid #e1e6e7;
  }
  .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(4), .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(5), .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(6) {
    background: #f4f1ee;
    border-bottom: 1px solid #fff;
  }
  .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(1), .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(2), .page-template-page-graphs-php #threesidebyGraph tr td:nth-child(3) {
    border-bottom: 1px solid #e1e6e7;
  }
}
.page-template-page-graphs-php #topLink {
  margin-bottom: 0.625em;
  margin-left: 0.5625em;
}
.page-template-page-graphs-php #textChunks {
  margin-bottom: 0.625em;
}
.page-template-page-graphs-php #textChunks p {
  max-width: 37.5em;
}
.page-template-page-graphs-php #main .aTextChunk {
  max-width: 100%;
}
.page-template-page-graphs-php #main .aTextChunk p {
  max-width: 500px;
}
.page-template-page-graphs-php #main .aTextChunk.divided {
  border-top: 1px solid #e1e6e7;
  padding-top: 1.25em;
  margin-top: 0em;
}
.page-template-page-graphs-php #main .aTextChunk.first {
  border-top: 0px none;
  padding-top: 0em;
  margin-top: 0em;
}
.page-template-page-graphs-php #main .aTextChunk .h3 {
  margin-top: 0px;
}
.page-template-page-graphs-php #main .aTextChunk.hasImage .h3 {
  margin-top: 1.25em;
}
.page-template-page-graphs-php #main .aTextChunk ul {
  list-style: disc;
  padding-left: 1em;
  color: #666;
}
.page-template-page-graphs-php #main .aTextChunk ul p {
  top: 2px;
  position: relative;
  padding: 0 0 0.3125em 0.3125em;
}
.page-template-page-graphs-php #main .aTextChunk ul li {
  font-size: 0.8125em;
  padding-bottom: 0.625em;
}
.page-template-page-graphs-php #main .aTextChunk ul li:last-child {
  padding-bottom: 1.25em;
}

/************** recipes list **************/
.page-template-page-recipes-php .pageTitle {
  padding-left: 3.125%;
  padding-right: 3.125%;
}

.wpurp-recipe-grid-container .recipe-card {
  padding: 1.375em 3.125%;
  border-bottom: 1px solid #e1e6e7;
  overflow: auto;
}
.wpurp-recipe-grid-container .recipe-card:nth-child(n+12) {
  display: none;
}
.wpurp-recipe-grid-container .recipe-card img {
  border-radius: 0.3125em;
  float: right;
}
.wpurp-recipe-grid-container .recipe-card.no-image img {
  display: none;
}
.wpurp-recipe-grid-container .recipe-card a {
  font-weight: 600;
  font-size: 0.8125em;
  display: table;
  width: 100%;
}
.wpurp-recipe-grid-container .recipe-card .recipe-title {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

/* I didn't do this.... */
.wpurp-recipe-grid-filter-box {
  letter-spacing: -.31em;
  padding: 0 3.125%;
}

.wpurp-recipe-grid-filter-box {
  vertical-align: top;
  margin: 0;
  letter-spacing: normal;
}
.wpurp-recipe-grid-filter-box .select2-container {
  width: 100%;
  background: url(../images/drop.png) right center repeat-y;
  margin-bottom: 0.625em;
  border-radius: 0.3125em;
}
.wpurp-recipe-grid-filter-box .select2-search-field input {
  background: transparent;
}
.wpurp-recipe-grid-filter-box ul.select2-choices {
  background: transparent;
  padding-right: 40px;
  border-radius: 0.3125em;
  cursor: pointer;
  border-color: #e1e6e7;
}
.wpurp-recipe-grid-filter-box .select2-container-multi .select2-choices .select2-search-choice {
  padding: 10px 10px 10px 18px;
}
.wpurp-recipe-grid-filter-box .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close {
  top: 12px;
  left: 5px;
  color: #31a288;
}
.wpurp-recipe-grid-filter-box .search {
  /* padding-right: em(20px); */
  padding-bottom: 1.875em;
  border-bottom: 1px solid #e1e6e7;
}
.wpurp-recipe-grid-filter-box .search .search-field {
  box-sizing: border-box;
}
.wpurp-recipe-grid-filter-box .search .search-submit {
  width: 100%;
}
.wpurp-recipe-grid-filter-box .or {
  margin-top: -14px;
  display: block;
  text-align: center;
  margin-bottom: 1.25em;
}
.wpurp-recipe-grid-filter-box .or p {
  color: #fff;
  background: #7d8891;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-transform: uppercase;
  padding: 7px;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  margin: 0 auto;
}

.select2-container-multi .select2-choices .select2-search-field input {
  color: #666;
}

.wpurp-recipe-grid-container .no-recipes-found {
  display: none;
}

/************** recipes list NEW **************/
/* need this if delete the above recipes list section
.page-template-page-recipes-php {
	.pageTitle {
		padding-left: 3.125%;
		padding-right: 3.125%;
	}
}
*/
.wpupg-grid span.wpupg-post-title.recipeTitle {
  padding-right: 10px;
}
.wpupg-grid a {
  /*
  		&:nth-child(n+12){
  			display: none;
  		}
  */
}
.wpupg-grid a:first-child .wpupg-item {
  padding-top: 0px;
}
.wpupg-grid a:after {
  content: '';
  display: block;
  clear: both;
}
.wpupg-grid a .wpupg-container {
  width: 100%;
  clear: both;
  position: inherit !important;
}
.wpupg-grid a .wpupg-item {
  padding: 1.375em 3.125%;
  border-bottom: 1px solid #e1e6e7;
  width: 100%;
}
.wpupg-grid a .wpupg-item img {
  border-radius: 0.3125em;
  float: right;
  max-width: 150px;
}
.wpupg-grid a .wpupg-item.no-image img {
  display: none;
}
.wpupg-grid a .wpupg-item .wpupg-box {
  display: table;
  width: 100%;
}
.wpupg-grid a .wpupg-item .recipeTitle {
  font-weight: 600;
  font-size: 13px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.wpupg-filter {
  vertical-align: top;
  margin: 0;
  letter-spacing: normal;
}
.wpupg-filter .select2-container {
  width: 100%;
  background: url(../images/drop.png) right center repeat-y;
  margin-bottom: 0.625em;
  border-radius: 0.3125em;
}
.wpupg-filter .select2-search-field input {
  background: transparent;
}
.wpupg-filter ul.select2-choices {
  background: transparent;
  padding-right: 40px;
  border-radius: 0.3125em;
  cursor: pointer;
  border-color: #e1e6e7;
}
.wpupg-filter .select2-container-multi .select2-choices .select2-search-choice {
  padding: 10px 10px 10px 18px;
}
.wpupg-filter .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close {
  top: 12px;
  left: 5px;
  color: #31a288;
}
.wpupg-filter .search {
  /* padding-right: em(20px); */
  padding-bottom: 1.875em;
  border-bottom: 1px solid #e1e6e7;
}
.wpupg-filter .search .search-field {
  box-sizing: border-box;
}
.wpupg-filter .search .search-submit {
  width: 100%;
}
.wpupg-filter .or {
  margin-top: -14px;
  display: block;
  text-align: center;
  margin-bottom: 1.25em;
}
.wpupg-filter .or p {
  color: #fff;
  background: #7d8891;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-transform: uppercase;
  padding: 7px;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  margin: 0 auto;
}

/************** recipes single **************/
.recipe-header-image img {
  border-radius: 6px;
}

.single-recipe #subNavigation, .single-post #subNavigation {
  padding: 0.5625em 2% 0.6875em;
}
.single-recipe #subNavigation ul.menu, .single-post #subNavigation ul.menu {
  display: none;
}
.single-recipe #main, .single-post #main {
  background: #fff;
}
.single-recipe .wrap, .single-post .wrap {
  width: 100%;
}
.single-recipe article, .single-post article {
  width: 93.75%;
  margin: 0 auto;
}
.single-recipe #banner, .single-post #banner {
  display: none;
}
.single-recipe .finePrint, .single-post .finePrint {
  clear: both;
  overflow: auto;
  border-top: 1px solid #e1e6e7;
  width: 100%;
}
.single-recipe .finePrint .recipe-notes, .single-post .finePrint .recipe-notes {
  width: 62.962963%;
}
.single-recipe .finePrint, .single-post .finePrint {
  padding: 1em 0;
}

.post.type-recipe .article-header {
  border-bottom: none;
  margin-bottom: 0.9375em;
}
.post.type-recipe .entry-content {
  padding-top: 0px;
}
.post.type-recipe .recipe-instructions {
  padding-left: 0px;
  list-style: none;
}
.post.type-recipe .recipe-instructions li {
  font-size: 13px;
  color: #666;
}
.post.type-recipe .print-recipe {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  float: left;
}
.post.type-recipe .recipe-sharing-header {
  display: none;
}
.post.type-recipe .ssba {
  padding-top: 0.625em;
  float: right;
}
.post.type-recipe .recipe-sharing-buttons {
  clear: both;
  overflow: auto;
}
.post.type-recipe .recipe-sharing-buttons li {
  float: left;
  padding-left: 0.625em;
}
.post.type-recipe .recipe-sharing-buttons li:first-child {
  padding: 0px;
}
.post.type-recipe .recipe-ingredients-servings {
  clear: both;
}
.post.type-recipe .recipe-ingredients-servings .advanced-adjust-recipe-servings {
  max-width: 60px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
}

.single-recipe #main .h3 {
  font-size: 1.25em;
  margin: 0.75em 0;
}
.single-recipe #main .instruction-group {
  font-size: 0.8125em;
  color: #2a3133;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1.25em 0 0.3125em 0;
}
.single-recipe #main .recipe-header-image img {
  margin-bottom: 20px;
}
.single-recipe #main .recipe-ingredients li {
  background: transparent;
  font-size: 13px;
  color: #666;
  margin-bottom: 0.625em;
}
.single-recipe #main .recipe-ingredients li a {
  color: #666;
}
.single-recipe #main .recipe-ingredients li a:hover {
  color: #31a288;
}

/************** search results **************/
.search-results #content, .search-no-results #content, .page-template-archive-php #content {
  overflow: inherit;
  padding-top: 30px;
}
.search-results #oss-search-form, .search-no-results #oss-search-form, .page-template-archive-php #oss-search-form {
  max-width: 330px;
  margin: 0 auto;
}
.search-results #oss-searchform, .search-no-results #oss-searchform, .page-template-archive-php #oss-searchform {
  width: 93.75%;
  margin: 0 auto;
  padding-bottom: 1.25em;
}
.search-results .oss-search, .search-no-results .oss-search, .page-template-archive-php .oss-search {
  width: 100%;
  margin: 0 auto;
}
.search-results .resultsFound, .search-no-results .resultsFound, .page-template-archive-php .resultsFound {
  display: none;
  padding: 10px 3.125%;
  clear: both;
  text-align: center;
}
.search-results #oss-did-you-mean, .search-no-results #oss-did-you-mean, .page-template-archive-php #oss-did-you-mean {
  padding: 0px 3.125%;
  clear: both;
}
.search-results .resultsFoundTime, .search-no-results .resultsFoundTime, .page-template-archive-php .resultsFoundTime {
  display: none;
}
.search-results .resultImage, .search-no-results .resultImage, .page-template-archive-php .resultImage {
  width: 31%;
  position: relative;
  float: left;
  margin-left: 0%;
}
.search-results .resultImage img, .search-no-results .resultImage img, .page-template-archive-php .resultImage img {
  width: 100%;
  border-radius: 0.25em;
  max-width: none;
  margin-bottom: 1.125em;
}
.search-results .hasImage .resultText, .search-no-results .hasImage .resultText, .page-template-archive-php .hasImage .resultText {
  width: 64.333333333%;
  position: relative;
  float: right;
  margin-left: 0%;
}
.search-results .hasImage .resultLink, .search-no-results .hasImage .resultLink, .page-template-archive-php .hasImage .resultLink {
  width: 64.333333333%;
  position: relative;
  float: right;
  margin-left: 0%;
}
.search-results .oss-title, .search-no-results .oss-title, .page-template-archive-php .oss-title {
  font-size: 1em;
  margin-bottom: 0px;
  margin-top: -0.3125em;
}
.search-results .oss-title .search-title, .search-no-results .oss-title .search-title, .page-template-archive-php .oss-title .search-title {
  font-size: 1.125em;
  margin-bottom: 0.625em;
}
.search-results .resultLink, .search-no-results .resultLink, .page-template-archive-php .resultLink {
  margin-bottom: 0.9375em;
}
.search-results #oss-results, .search-no-results #oss-results, .page-template-archive-php #oss-results {
  clear: both;
}
.search-results #oss-results .oss-result, .search-no-results #oss-results .oss-result, .page-template-archive-php #oss-results .oss-result {
  border-top: 1px solid #e1e6e7;
  padding: 20px 3.125% 0px 3.125%;
  margin-top: 0px;
  clear: both;
  overflow: hidden;
}
.search-results #oss-results .oss-result .oss-url, .search-no-results #oss-results .oss-result .oss-url, .page-template-archive-php #oss-results .oss-result .oss-url {
  display: none;
}
.search-results .oss-paging, .search-no-results .oss-paging, .page-template-archive-php .oss-paging {
  margin: 0 auto;
  text-align: center;
}

.page-template-archive-php #main {
  padding-top: 0px;
}
.page-template-archive-php #main .archive-title {
  padding-left: 3.125%;
  padding-right: 3.125%;
  padding-bottom: 1.125em;
  border-bottom: 1px solid #b9c2c8;
  margin-bottom: 0px;
}
.page-template-archive-php .tagRecipeTitle {
  font-weight: 600;
}
.page-template-archive-php .article-footer {
  clear: both;
}
.page-template-archive-php .result {
  display: table;
  width: 100%;
}
.page-template-archive-php .resultText {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  padding: 0px;
}
.page-template-archive-php .resultText .tagRecipeTitle {
  font-size: 0.8125em;
  padding-right: 1.25em;
  margin: 0px;
}
.page-template-archive-php .resultImage {
  width: 150px;
  height: 90px;
  position: relative;
  float: right;
  margin-left: 5%;
}
.page-template-archive-php .resultImage img {
  width: 100%;
  border-radius: 0.25em;
  max-width: none;
  margin-bottom: 1.125em;
  height: auto;
}
.page-template-archive-php .entry-content {
  display: none;
}

div#oss-paging {
  display: block;
  text-align: center;
  margin: 0px auto;
  padding: 20px 0px 30px 0px;
  clear: both;
}
div#oss-paging a, div#oss-paging span {
  padding: 7px 10px;
  background: #31a288;
  font-size: 0.8125em;
  border-radius: 4px;
  color: #fff;
}
div#oss-paging a:hover, div#oss-paging a:focus, div#oss-paging span:hover, div#oss-paging span:focus {
  color: #fff;
  background: #31a288;
}
div#oss-paging span#oss-page {
  color: #2a3133;
  background: transparent;
}

/********** Just recipes */
.search-results.category-recipes .oss-content {
  display: none;
}
.search-results.category-recipes .resultLink {
  display: none;
}
.search-results.category-recipes article {
  display: table;
  border-top: 0px none;
  clear: both;
  padding-top: 0px;
  width: 100%;
}
.search-results.category-recipes article .article-header {
  width: auto;
}
.search-results.category-recipes article .entry-content {
  width: auto;
  position: relative;
  float: none;
  margin-left: 0%;
}
.search-results.category-recipes article .entry-content img {
  width: 100%;
}

/*********************
	Contest
*********************/

#contestForm #birthdayWrap label {
	display: block;
}
#contestForm #birthdayWrap .selectDrop {
	width: 31.4285714%;
	position: relative;
	float: left;
	margin-left: 2.8571429%;
}
#contestForm #birthdayWrap .selectDrop.bdayMonthWrap {
	margin-left: 0%;
}
#contestForm #birthdayWrap .selectDrop:bdayYearWrap {
	float: right;
}

.page-template-page-emailpreferences-php .textinptWrap label, .page-template-page-emailpreferences-php .selectDrop label, .page-template-page-contest-php .textinptWrap label, .page-template-page-contest-php .selectDrop label {
  display: none;
}

.page-template-page-emailpreferences-php,
.page-template-page-contest-php {
  	/*
  #banner {
  		display: none;
  	}
  */
}
.page-template-page-emailpreferences-php #main,
.page-template-page-contest-php #main {
  margin: 3.125em 0;
  clear: both;
}
.page-template-page-emailpreferences-php #contest,
.page-template-page-contest-php #contest {
  clear: both;
}
.page-template-page-emailpreferences-php #contestImage img,
.page-template-page-contest-php #contestImage img {
  border-radius: 0.25em;
  max-width: 100%;
}
.page-template-page-emailpreferences-php #contestForm .thankyou, .page-template-page-emailpreferences-php #emailPrefForm .thankyou,
.page-template-page-contest-php #contestForm .thankyou,
.page-template-page-contest-php #emailPrefForm .thankyou {
  background: #2a3133;
  color: #fff;
  border: 1px solid #e1e6e7;
  border-radius: 4px;
  padding: 15px 0px;
  text-align: center;
  margin-bottom: 1.25em;
}
.page-template-page-emailpreferences-php #contestForm,
.page-template-page-contest-php #contestForm {
  margin-bottom: 3.125em;
}
.page-template-page-emailpreferences-php .dropdown,
.page-template-page-contest-php .dropdown {
  margin-bottom: 14px;
}
.page-template-page-emailpreferences-php .option-wrap,
.page-template-page-contest-php .option-wrap {
  margin-bottom: 0.625em;
  font-size: 0.8125em;
}
.page-template-page-emailpreferences-php .allFieldsRequired,
.page-template-page-contest-php .allFieldsRequired {
  font-size: 0.76923em;
  font-weight: bold;
  color: #666;
  clear: both;
}
.page-template-page-emailpreferences-php #finePrint,
.page-template-page-contest-php #finePrint {
  font-size: 0.76923em;
  color: #666;
  clear: both;
  max-width: 470px;
}

/************** contest rules **************/
.page-template-page-contestrules-php.page-child #main {
  width: 100%;
  float: none;
}

#contestRules, #genericInfo, #stayConnected {
  padding: 1.25em 0;
  max-width: 510px;
  margin: 0 auto;
}
#contestRules img, #genericInfo img, #stayConnected img {
  max-width: 100%;
}

#stayConnected h2 {
  text-align: center;
}
#stayConnected .socialStuff {
  border-top: 1px solid #e1e6e7;
  border-bottom: 1px solid #e1e6e7;
  margin-top: 2.5em;
  padding-bottom: 1.25em;
}
#stayConnected .socialIcon {
  text-align: center;
  padding-top: 1.875em;
}
#stayConnected .socialIcon h3 {
  font-size: 0.8125em;
}
#stayConnected .socialIcon img {
  margin: 0 auto;
}

/************** email pref **************/
.page-template-page-emailpreferences-php #main .wrap {
  max-width: 510px;
}
.page-template-page-emailpreferences-php #formatWrap, .page-template-page-emailpreferences-php #myForm, .page-template-page-emailpreferences-php #newslettersWrap, .page-template-page-emailpreferences-php #select-choiceWrap1, .page-template-page-emailpreferences-php #select-choiceWrap2, .page-template-page-emailpreferences-php #select-choiceWrap3, .page-template-page-emailpreferences-php #interestsWrap, .page-template-page-emailpreferences-php #finePrint, .page-template-page-emailpreferences-php #updateWrap, .page-template-page-emailpreferences-php #select-birthday-month {
  clear: both;
}
.page-template-page-emailpreferences-php #newslettersWrap .subbuttons {
  clear: both;
  display: block;
  margin-top: -0.625em;
}
.page-template-page-emailpreferences-php #newslettersWrap .suboptions {
  clear: both;
  padding-top: 1.25em;
  overflow: auto;
}
.page-template-page-emailpreferences-php #newslettersWrap input[type="submit"] {
  display: block;
  width: 48.5714286%;
  position: relative;
  float: left;
  margin-left: 0%;
}
.page-template-page-emailpreferences-php #newslettersWrap input[type="submit"]:nth-child(2n) {
  margin-left: 2.8571429%;
}
.page-template-page-emailpreferences-php .interestsoptions {
  clear: both;
}
.page-template-page-emailpreferences-php h3 {
  padding-top: 0.625em;
  font-size: 1.25em;
}
.page-template-page-emailpreferences-php #finePrint {
  padding-top: 1.5em;
  font-size: 0.76923em;
  color: #7d8891;
}
.page-template-page-emailpreferences-php #updateWrap {
  padding-top: 0.9375em;
}
.page-template-page-emailpreferences-php .birthdayMonthWrap {
  width: 48.5714286%;
  position: relative;
  float: left;
  margin-left: 0%;
}
.page-template-page-emailpreferences-php .birthdayDayWrap {
  width: 48.5714286%;
  position: relative;
  float: left;
  margin-left: 2.8571429%;
}

/************** Thanks **************/
.page-template-page-thanks-php.page-child #main {
  float: none;
  min-height: 0px;
  width: inherit;
  width: 100%;
}
.page-template-page-thanks-php.page-child #main .wrap {
  max-width: 780px;
}
.page-template-page-thanks-php.page-child #main .h2 {
  margin-bottom: 0.625em;
}

/*********************
	Landing Page
*********************/
.page-template-page-landingpage-php .fullSubFeature {
  padding-top: 30px;
}
.page-template-page-landingpage-php .fullSubFeature p {
  font-size: 20px;
}
.page-template-page-landingpage-php #signUpBanner {
  background: #f4f1ee;
}
.page-template-page-landingpage-php #signUpBanner h2 {
  font-family: "open-sans", Verdana, Helvetica, sans-serif;
  font-weight: 500;
}
.page-template-page-landingpage-php #signUpBanner #getNewsletter {
  width: 100%;
  float: none;
}
.page-template-page-landingpage-php #signUpBanner p {
  font-size: 20px;
}
.page-template-page-landingpage-php #thanksAndMore {
  padding-top: 20px;
  padding-bottom: 20px;
}
.page-template-page-landingpage-php #thanksAndMore .options {
  padding-bottom: 20px;
}
.page-template-page-landingpage-php #thanksAndMore .option-wrap {
  padding: 10px 0;
}
.page-template-page-landingpage-php #thanksAndMore h3 {
  font-size: 20px;
}
.page-template-page-landingpage-php #thanksAndMore p {
  font-size: 20px;
}
.page-template-page-landingpage-php #thanksAndMore label {
  font-size: 13px;
  font-weight: 900;
}
.page-template-page-landingpage-php #thanksAndMore p.thankyou {
  font-size: 13px;
  background: #2a3133;
  color: #fff;
  border: 1px solid #e1e6e7;
  border-radius: 4px;
  padding: 15px 0px;
  text-align: center;
  margin-bottom: 0px;
  line-height: 14px;
}
.page-template-page-landingpage-php #thanksAndMore #ans-submit-button {
  margin-bottom: 1.25em;
}
.page-template-page-landingpage-php #thanksAndMore #newsletters .thanksAndMoreAgain {
  width: 100%;
  text-align: center;
}
.page-template-page-landingpage-php #featuredBoxes {
  background: #fff;
}

/*********************
	Web-Only Special
*********************/
.page-template-page-webonlycoupon-php #main {
  float: none;
  padding-top: 1.25em;
  min-height: 0px;
  width: inherit;
  width: 100%;
}
.page-template-page-webonlycoupon-php #main .wrap {
  max-width: 780px;
}
.page-template-page-webonlycoupon-php #main .h2 {
  margin-bottom: 0.625em;
}
.page-template-page-webonlycoupon-php #simpleContentArea {
  border-bottom: 1px solid #e1e6e7;
}
.page-template-page-webonlycoupon-php #CouponArea {
  clear: both;
}
.page-template-page-webonlycoupon-php #CouponArea .number {
  color: #f4f1ee;
  display: inline-block;
  font-size: 0.625em;
  height: 30px;
  width: 30px;
  padding: 6px 11px;
  background: #2a3133;
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 0.3em;
}
.page-template-page-webonlycoupon-php #CouponArea img {
  max-width: 100%;
}
.page-template-page-webonlycoupon-php #CouponArea .innerWrap {
  width: 93.75%;
  margin: 0 auto;
}
.page-template-page-webonlycoupon-php #CouponArea .inStores {
  padding: 1.25em 0;
  margin-bottom: 1.25em;
  border-bottom: 1px solid #e1e6e7;
}
.page-template-page-webonlycoupon-php #CouponArea .shopOnline {
  border-bottom: 1px solid #e1e6e7;
}
.page-template-page-webonlycoupon-php #CouponArea .shopOnline #listsOfLinks {
  margin-top: 1.25em;
}
.page-template-page-webonlycoupon-php #CouponArea .shopOnline #listsOfLinks .innerWrap {
  width: 100%;
}
.page-template-page-webonlycoupon-php #CouponArea .shopOnline #listsOfLinks .aListOfLinks li {
  margin-bottom: 0.61538em;
}
.page-template-page-webonlycoupon-php #CouponArea .shopOnline #listsOfLinks .aListOfLinks li a {
  font-size: 1em;
  color: #2a3133;
}
.page-template-page-webonlycoupon-php #banner {
  display: none;
}

/*********************
	Connect With Us
*********************/
.page-template-page-connectwithus-php .fullSubFeature {
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-top: 0.625em;
}
.page-template-page-connectwithus-php #getNewsletter {
  margin-top: 0px;
}
.page-template-page-connectwithus-php .textLink {
  display: none;
}
.page-template-page-connectwithus-php #socialBanner {
  padding: 0px;
  width: 100%;
}
.page-template-page-connectwithus-php #socialBanner .wrap {
  width: 100%;
}

/*********************
	Genaric page
*********************/
.page-template-page-genericinfo-php #simpleContentArea p {
  font-size: 1.25em;
}
.page-template-page-genericinfo-php .h3 {
  font-size: 1.125em;
  text-transform: none;
}
.page-template-page-genericinfo-php #textChunks img {
  border-radius: 0.3125em;
  max-width: 100%;
}
.page-template-page-genericinfo-php #main .aTextChunk {
  max-width: 100%;
}
.page-template-page-genericinfo-php #main .aTextChunk p {
  max-width: 500px;
}
.page-template-page-genericinfo-php #main .aTextChunk.divided {
  border-top: 1px solid #e1e6e7;
  padding-top: 1.25em;
  margin-top: 0em;
}
.page-template-page-genericinfo-php #main .aTextChunk.first {
  border-top: 0px none;
  padding-top: 0em;
  margin-top: 0em;
}
.page-template-page-genericinfo-php #main .aTextChunk .h3 {
  margin-top: 0px;
}
.page-template-page-genericinfo-php #main .aTextChunk.hasImage .h3 {
  margin-top: 1.25em;
}
.page-template-page-genericinfo-php #main .aTextChunk ul {
  list-style: disc;
  padding-left: 1em;
  color: #666;
}
.page-template-page-genericinfo-php #main .aTextChunk ul p {
  top: 2px;
  position: relative;
  padding: 0 0 0.3125em 0.3125em;
}
.page-template-page-genericinfo-php #main .aTextChunk ul li {
  font-size: 0.8125em;
  padding-bottom: 0.625em;
}
.page-template-page-genericinfo-php #main .aTextChunk ul li:last-child {
  padding-bottom: 1.25em;
}

/*********************
	Monger Madness
*********************/
#tournamentImage {
  /*Some CSS*/
  /*Lets create the magnifying glass*/
  /*To solve overlap bug at the edges during magnification*/
}
#tournamentImage * {
  margin: 0;
  padding: 0;
}
#tournamentImage .magnify {
  /* width: 200px; margin: 50px auto; */
  margin: 10px;
  position: relative;
  cursor: none;
}
#tournamentImage .large {
  background-size: 600px;
  width: 175px;
  height: 175px;
  position: absolute;
  border-radius: 100%;
  /*Multiple box shadows to achieve the glass effect*/
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  /*hide the glass by default*/
  display: block;
  left: -69px;
  top: -65px;
}
#tournamentImage .small {
  display: block;
}

#tournamentImage img {
  max-width: 100%;
  padding-bottom: 2.5em;
}

.fullsize#tournamentImage {
  overflow: scroll;
  height: 200px;
  border: 1px solid #e1e6e7;
}
.fullsize#tournamentImage img {
  max-width: inherit;
}

.page-template-page-bigzoomableimage-php #content, .page-template-page-bigimage-php #content {
  background: #ffffff;
}
.page-template-page-bigzoomableimage-php #simpleContentArea, .page-template-page-bigimage-php #simpleContentArea {
  margin: 1.25em auto 0em;
  max-width: 797px;
}
.page-template-page-bigzoomableimage-php #simpleContentArea .subTitle, .page-template-page-bigimage-php #simpleContentArea .subTitle {
  text-align: center;
  text-transform: uppercase;
}
.page-template-page-bigzoomableimage-php #simpleContentArea p, .page-template-page-bigimage-php #simpleContentArea p {
  text-align: center;
}
.page-template-page-bigzoomableimage-php .finePrint, .page-template-page-bigimage-php .finePrint {
  border-top: 1px solid #e1e6e7;
  margin-top: 1em;
  padding-top: 2em;
  padding-bottom: 1em;
}
.page-template-page-bigzoomableimage-php .finePrint .wrap, .page-template-page-bigimage-php .finePrint .wrap {
  margin: 0px;
  width: 100%;
}

.page-template-page-bigimage-php .bigimage {
  max-width: 100%;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
  clear: both;
}
.pagination ul {
  display: inline-block;
  background-color: transparent;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #e1e6e7;
}
.pagination li:last-child {
  border-right: 0px none #e1e6e7;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #31a288;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #31a288;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #2a3133;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #2a3133;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #e1e6e7;
  /* number of comments span */
}

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

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #e1e6e7;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #e1e6e7;
}

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #e1e6e7;
}

#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #2a3133;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #e1e6e7;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widgettitle {
  text-transform: inherit;
  font-size: 1.25em;
}

.widget ul li {
  /* deep nesting */
}

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #e1e6e7;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #2a3133;
  text-align: center;
}
.footer .wrap {
  width: 100%;
}
.footer #footerbar {
  display: none;
  		/*
  a {
  			text-decoration: none;
  			color: $text-color-extra-light;
  			font-size: em(13px);
  			font-weight: bold;

  			&:hover {
  				text-decoration: none;
  				color: $text-color-light;
  			}
  		}
  */
}
.footer #footerbar .widgettitle {
  text-align: center;
  border-bottom: 0px;
}
.footer #footerbar .widgettitle a {
  color: #fff;
  font-size: 1.25em;
  font-weight: normal;
}
.footer .nav li {
    display: block;
  text-transform: uppercase;
  font-size: 0.8125em;
}
.footer .nav li a {
  text-decoration: none;
  display: block;
  color: #b9c2c8;
  font-weight: bold;
}
.footer .nav li a:hover {
  text-decoration: none;
  color: #666;
}
.footer #socialLinks ul {
  margin: 1.75em 0;
  text-align: center;
}
.footer #socialLinks ul li {
  display: inline-block;
}
.footer #socialLinks ul li a {
  font-size: 1.5625em;
  color: #b9c2c8;
  margin: 0.1875em;
}
.footer #socialLinks ul li a:hover {
  color: #666;
}
.footer #socialLinks ul li:last-child a {
  margin-right: 0em;
}

ul.tumblr {
  display: none;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
.copyright {
  color: #b9c2c8;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.8125em;
  font-weight: bold;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  #searchDrawer {
    	/*
    #oss-submit, #searchsubmit {

    	}

    	.oss-autocomplete {
    		max-width: 330px;
    		position: absolute;
    		margin: 0 auto;
    		top: 104px;
    		right: 0;
    	}

    	.oss-autocompletelist {
    		width: 75%;
    	}
    */
  }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  	SAVINGS AND DEALS
  *********************/
  /************** mobile deals **************/
  .page-id-2567 #appDownloads .text {
    display: block;
    width: 35.294117647%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-id-2567 #appDownloads .text h3 {
    font-size: 0.8125em;
    font-weight: bold;
    margin: 0.76923em 0px 0em 0px;
    max-width: 130px;
  }
  .page-id-2567 #appDownloads .text div p {
    font-size: 0.625em;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .page-id-2567 #appDownloads .iphoneApp, .page-id-2567 #appDownloads .androindApp {
    width: 30.588235294%;
    position: relative;
    float: left;
    margin-left: 1.37254902%;
  }
  .page-id-2567 #appDownloads .androindApp {
    position: relative;
    float: right;
    margin-left: 2.156862745%;
  }

  /*********************
  	Shop Online
  *********************/
  .page-template-page-shoponline-old-php #homeDelivery {
    clear: both;
  }
  .page-template-page-shoponline-old-php #homeDelivery input[type="text"] {
    width: 70.833333333%;
    position: relative;
    float: left;
    margin-left: 0;
    border-radius: 4px 0 0 4px;
  }
  .page-template-page-shoponline-old-php #homeDelivery input[type="submit"] {
    border-radius: 0 4px 4px 0;
    width: 29.166666667%;
    position: relative;
    float: right;
    margin-left: 0%;
  }

  /************** Graphs **************/
  .page-template-page-graphs-php table {
    display: table;
  }
  .page-template-page-graphs-php thead {
    display: table-header-group;
  }
  .page-template-page-graphs-php tbody {
    display: table-row-group;
  }
  .page-template-page-graphs-php th, .page-template-page-graphs-php td {
    display: table-cell;
  }
  .page-template-page-graphs-php tr {
    display: table-row;
  }
  .page-template-page-graphs-php table thead {
    background: #f4f1ee;
  }
  .page-template-page-graphs-php table thead th {
    text-transform: uppercase;
    font-size: 0.8125em;
    padding: 0.625em;
    text-align: left;
  }
  .page-template-page-graphs-php .twocolsecs tbody td {
    width: 50%;
  }
  .page-template-page-graphs-php .twocolsecs tbody td p {
    padding-top: 10px;
  }
  .page-template-page-graphs-php #fourgrouped table td {
    background: #fff;
  }
  .page-template-page-graphs-php #fourgrouped table tbody:nth-child(2n) td {
    background: #f4f1ee;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    /* max-width: 760px; */
  }

  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h1, .h1 {
    font-size: 2.5em;
  }

  h2, .h2 {
    font-size: 2.5em;
  }

  h3, .h3 {
    font-size: 2.125em;
  }

  h4, .h4 {
    font-size: 0.8125em;
  }

  h5, .h5 {
    font-size: 1.0625em;
  }

  p {
    font-size: 0.8125em;
  }

  p.umph {
    font-size: 1.25em;
  }

  .finePrint {
    color: #666;
    font-size: 0.625em;
  }

  a.button.full, a:visited.button.full {
    width: auto;
  }

  input#submit-button {
    border-radius: 0 4px 4px 0;
  }

  input[type="submit"].full {
    width: inherit;
  }

  /*********************
  HEADER STYLES
  *********************/
  .header {
    background: #2a3133;
  }

  #menuHolder {
    display: block;
  }

  #outerHeader {
    position: absolute;
    background: none;
    overflow: hidden;
    clear: both;
    top: 0px;
  }
  #outerHeader #utilityBar {
    display: block;
    background: none repeat scroll 0% 0% #2A3133;
    color: #2a3133;
    overflow: auto;
    clear: both;
  }
  #outerHeader #utilityBar #submenu {
    position: inherit;
    display: block;
    position: inherit;
    width: 93.75%;
    max-width: 1050px;
    margin: 0 auto;
    clear: both;
    overflow: auto;
  }
  #outerHeader #inner-header {
    display: block;
    -moz-box-orient: inherit;
    flex-direction: inherit;
    background: #fff;
    overflow: auto;
    clear: both;
    border-radius: 0px 0px 5px 5px;
    -moz-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
    box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.24);
    filter: progid:DXImageTransform.Microsoft.Shadow(strength = 5, direction = 180, color = '#000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength = 5, Direction = 180, Color = '#000000')";
  }
  #outerHeader #inner-header #logo {
    width: 25.5%;
    margin: 15px 0 15px;
    padding: 0 0 0 1.3333333%;
  }
  #outerHeader #inner-header #logo a img {
    vertical-align: top;
    padding-top: 6px;
  }
  #outerHeader #inner-header.wrap {
    width: 100%;
  }
  #outerHeader #inner-header #menu-main-menu {
    padding-right: 3.125%;
  }
  #outerHeader #appinfo {
    display: none;
  }
  #outerHeader #alertbanner {
    text-align: center;
  }
  #outerHeader #mobileNav {
    display: none;
  }
  #outerHeader #mainMenu {
    position: inherit;
    display: block;
  }

  #banner {
    padding-top: 185px;
    margin-top: 115px;
  }

  /*
  .smallheader {
  	height: 303px;
  }
  */
  #header.noContentBox {
    height: 120px;
  }
  #header.noContentBox #banner {
    height: 230px;
  }

  .adminTestBox {
    display: block;
  }

  #searchDrawer {
    padding-top: 0px;
    /*
    	.oss-autocomplete {
    		max-width: 330px;
    		position: absolute;
    		margin: 0 auto;
    		top: 66px;
    		right: 0;
    		left: inherit;
    	}

    	.oss-autocompletelist {
    		width: 248px;
    		margin-top: 0px;
    		max-height: 100px;
    		overflow: scroll;
    	}

    	.oss-autocomplete_link {
    		padding: 2px 6px;
    		&:hover {
    			padding: 2px 6px;
    		}
    	}
    */
  }
  #searchDrawer .innerWrap {
    width: 93.75%;
    max-width: 1050px;
  }
  #searchDrawer #oss-search-form, #searchDrawer #searchform {
    width: 330px;
    float: right;
    margin-top: 1.25em;
  }
  #searchDrawer #oss-search-form #oss-searchform, #searchDrawer #searchform #oss-searchform {
    padding-top: 0px;
  }
  #searchDrawer #oss-keyword, #searchDrawer input#s {
    margin-bottom: 0px;
  }
  #searchDrawer .oss-autocomplete {
    position: absolute;
    margin: 0 auto;
    max-width: 1050px;
    top: 66px;
  }
  #searchDrawer .oss-autocompletelist {
    		/*
    left: -50%;
    		width: 23.6%;
    */
    margin-left: 68.6%;
    right: 0px;
    width: 330px;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  #outerHeader {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 290px;
  }
  #outerHeader .innerWrap {
    width: 100%;
  }

  .noContentBox #outerHeader {
    height: 230px; }

  #shopOnlineDD {
    display: block;
    background: transparent;
    border: 0px;
    /*
        top: 90px;		
        right: 9%;	
    */
    max-width: 1050px;
    position: absolute;
    top: 130px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 99999;
    width: 100%; }
    #shopOnlineDD:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid white;
      position: absolute;
      right: 168px;
      top: -9px;
      z-index: 2; }
    #shopOnlineDD .themenu {
      background: white;
      width: 100%;
      max-width: 270px;
      padding: 15px 20px;
      position: absolute;
      right: 0px;
      border: 1px solid #e1e6e7;
      border-radius: 5px;
      -moz-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.25);
      -webkit-box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.25);
      box-shadow: 2px 9px 25px -9px rgba(0, 0, 0, 0.25);
      z-index: 1; }
    #shopOnlineDD li {
      border: 0px none;
      background: #fff;
      width: 100%;
      padding-top: 10px; }
    #shopOnlineDD li a {
      border: 0px none;
      text-align: left;
      width: 100%;
      display: block;
      font-size: 13px;
      font-weight: bold; }
    #shopOnlineDD li:first-child {
      padding-top: 0px; }
    #shopOnlineDD li:first-child a {
      width: 100%;
      margin: 0 auto;
      text-align: center;
      background-color: #31a288;
      text-decoration: none;
      font-size: 0.8125em;
      line-height: 40px;
      padding: 0 24px;
      border-radius: 4px;
      border: 0;
      cursor: pointer;
      -webkit-transition: background-color 0.14s ease-in-out;
      transition: background-color 0.14s ease-in-out;
      color: #fff;
      text-transform: uppercase;
      font-weight: 600; }
    #shopOnlineDD li:first-child a:hover,
    #shopOnlineDD li:first-child a:focus {
      background-color: #2c927b; }
    #shopOnlineDD li:nth-child(2) {
      padding-top: 15px;
      border-top: 1px solid #e1e6e7;
      margin-top: 20px; }
    #shopOnlineDD li:last-child {
      padding-bottom: 5px; }

  #mainMenu {
    clear: none;
    margin-top: 1.3125em;
    width: 74.2857143%;
    position: relative;
    float: left;
    margin-left: 0%;
    padding-right: 0.25em;
  }
  #mainMenu .expander {
    display: none;
  }
  #mainMenu ul#menu-main-menu {
    float: right;
    display: flex;
  }
  #mainMenu #menu-item-2547 a {
    /*
    line-height: 0px;
    		padding-top: 7px;
    */
    padding-left: 58px;
  }
  #mainMenu #menu-item-2547 a:before {
    text-rendering: geometricPrecision;
    font-family: 'icomoon';
    content: "\e60e";
    position: absolute;
    top: 0px;
    left: 16px;
    font-size: 2.30769em;
    padding-right: 0.25em;
    color: #31a288;
  }
  #mainMenu li {
    border-right: 1px solid #e1e6e7;
    border-top: 0px;
    display: flex;
    align-items: center;
  }
  #mainMenu li a {
    display: block;
    color: #2a3133;
    text-decoration: none;
    padding: 0.2em 0.5625em;
    font-weight: bold;
    font-size: 0.8125em;
    margin-right: 0px;
    border-right: 0px none;
    text-align: center;
  }
  #mainMenu li a:hover, #mainMenu li a:focus {
    color: #31a288;
  }
  #mainMenu li a span {
    display: block;
  }
  #mainMenu li:last-child {
    border-right: 0px;
  }
  #mainMenu li.current-menu-item a,
  #mainMenu li.current_page_item a,
  #mainMenu li.current_page_ancestor a {
    color: #31a288;
  }

  #submenu {
    background: transparent;
    border-top: 0px none;
    /* end .menu li */
  }
  #submenu .expander {
    display: none;
    border: 0px none;
  }
  #submenu ul#menu-top-menu {
    float: right;
    overflow: hidden;
    margin: 0.1875em 0;
  }
  #submenu li {
    font-size: 0.625em;
    border: 0px;
  }
  #submenu li a {
    color: #b9c2c8;
    text-decoration: none;
    font-weight: bold;
    /* font-size: em(10px); */
    text-transform: uppercase;
    padding: 0 0.625em;
    margin: .75em 0;
    border: 0px;
  }
  #submenu li a:hover, #submenu li a:focus {
    color: #666;
  }
  #submenu li#menu-item-68 a {
    border-left: 1px solid #666;
  }
  /*#submenu li#menu-item-755 a:before {*/
  #submenu li#menu-item-5064 a:before {
    text-rendering: geometricPrecision;
    font-family: 'icomoon';
    content: "\e604";
    margin-left: 5px;
    position: relative;
    top: 1px;
    padding-right: 3px;
  }
  #submenu li#menu-item-74 a:before {
    text-rendering: geometricPrecision;
    font-family: 'icomoon';
    content: "\e603";
    margin-left: 5px;
    position: relative;
    top: 1px;
    padding-right: 3px;
  }

  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav ul {
    background: #2a3133;
    margin-top: 0;
  }
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav li a {
    color: #31a288;
    border-bottom: 0;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav li a:hover, .nav li a:focus {
    color: #31a288;
    text-decoration: underline;
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    display: none;
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  .nav .menu-item-74 {
    display: block;
  }

  /* end .nav */
  .page-child #main, .page-child #subNavigation, .page-template-page-genericthreecolumn-php #main, .page-template-page-genericthreecolumn-php #subNavigation, .page-template-page-genericcontentlist-php #main, .page-template-page-genericcontentlist-php #subNavigation, .page-template-page-genericinfocomplex-php #main, .page-template-page-genericinfocomplex-php #subNavigation, .single-video #main, .single-video #subNavigation {
    padding-top: 3.4375em; }
  .page-child #main, .page-template-page-genericthreecolumn-php #main, .page-template-page-genericcontentlist-php #main, .page-template-page-genericinfocomplex-php #main, .single-video #main {
    padding-bottom: 3.125em;
    min-height: 37.5em; }
  .page-child #banner, .page-template-page-genericthreecolumn-php #banner, .page-template-page-genericcontentlist-php #banner, .page-template-page-genericinfocomplex-php #banner, .single-video #banner {
    display: block; }
  .page-child #subNavigation, .page-template-page-genericthreecolumn-php #subNavigation, .page-template-page-genericcontentlist-php #subNavigation, .page-template-page-genericinfocomplex-php #subNavigation, .single-video #subNavigation {
    padding-left: 2.85714%;
    /* end .menu ul li */
    /* highlight current page */ }
    .page-child #subNavigation ul.menu, .page-template-page-genericthreecolumn-php #subNavigation ul.menu, .page-template-page-genericcontentlist-php #subNavigation ul.menu, .page-template-page-genericinfocomplex-php #subNavigation ul.menu, .single-video #subNavigation ul.menu {
      display: block; }
    .page-child #subNavigation .backLink, .page-template-page-genericthreecolumn-php #subNavigation .backLink, .page-template-page-genericcontentlist-php #subNavigation .backLink, .page-template-page-genericinfocomplex-php #subNavigation .backLink, .single-video #subNavigation .backLink {
      display: none; }
    .page-child #subNavigation li, .page-template-page-genericthreecolumn-php #subNavigation li, .page-template-page-genericcontentlist-php #subNavigation li, .page-template-page-genericinfocomplex-php #subNavigation li, .single-video #subNavigation li {
      padding: 0.5em 0px;
      border-top: 1px solid #e1e6e7;
      /*
			plan your menus and drop-downs wisely.
			*/
      /* showing sub-menus */ }
      .page-child #subNavigation li a, .page-template-page-genericthreecolumn-php #subNavigation li a, .page-template-page-genericcontentlist-php #subNavigation li a, .page-template-page-genericinfocomplex-php #subNavigation li a, .single-video #subNavigation li a {
        font-size: 0.8125em;
        font-weight: 600; }
      .page-child #subNavigation li:first-child, .page-template-page-genericthreecolumn-php #subNavigation li:first-child, .page-template-page-genericcontentlist-php #subNavigation li:first-child, .page-template-page-genericinfocomplex-php #subNavigation li:first-child, .single-video #subNavigation li:first-child {
        border-top: 0px none; }
      .page-child #subNavigation li ul.sub-menu,
      .page-child #subNavigation li ul.children, .page-template-page-genericthreecolumn-php #subNavigation li ul.sub-menu,
      .page-template-page-genericthreecolumn-php #subNavigation li ul.children, .page-template-page-genericcontentlist-php #subNavigation li ul.sub-menu,
      .page-template-page-genericcontentlist-php #subNavigation li ul.children, .page-template-page-genericinfocomplex-php #subNavigation li ul.sub-menu,
      .page-template-page-genericinfocomplex-php #subNavigation li ul.children, .single-video #subNavigation li ul.sub-menu,
      .single-video #subNavigation li ul.children {
        margin-top: 0.5em;
        display: none;
        border-top: 1px solid #e1e6e7;
        /* highlight sub-menu current page */ }
        .page-child #subNavigation li ul.sub-menu li,
        .page-child #subNavigation li ul.children li, .page-template-page-genericthreecolumn-php #subNavigation li ul.sub-menu li,
        .page-template-page-genericthreecolumn-php #subNavigation li ul.children li, .page-template-page-genericcontentlist-php #subNavigation li ul.sub-menu li,
        .page-template-page-genericcontentlist-php #subNavigation li ul.children li, .page-template-page-genericinfocomplex-php #subNavigation li ul.sub-menu li,
        .page-template-page-genericinfocomplex-php #subNavigation li ul.children li, .single-video #subNavigation li ul.sub-menu li,
        .single-video #subNavigation li ul.children li {
          padding-left: 0.75em; }
          .page-child #subNavigation li ul.sub-menu li a:hover, .page-child #subNavigation li ul.sub-menu li a:focus,
          .page-child #subNavigation li ul.children li a:hover,
          .page-child #subNavigation li ul.children li a:focus, .page-template-page-genericthreecolumn-php #subNavigation li ul.sub-menu li a:hover, .page-template-page-genericthreecolumn-php #subNavigation li ul.sub-menu li a:focus,
          .page-template-page-genericthreecolumn-php #subNavigation li ul.children li a:hover,
          .page-template-page-genericthreecolumn-php #subNavigation li ul.children li a:focus, .page-template-page-genericcontentlist-php #subNavigation li ul.sub-menu li a:hover, .page-template-page-genericcontentlist-php #subNavigation li ul.sub-menu li a:focus,
          .page-template-page-genericcontentlist-php #subNavigation li ul.children li a:hover,
          .page-template-page-genericcontentlist-php #subNavigation li ul.children li a:focus, .page-template-page-genericinfocomplex-php #subNavigation li ul.sub-menu li a:hover, .page-template-page-genericinfocomplex-php #subNavigation li ul.sub-menu li a:focus,
          .page-template-page-genericinfocomplex-php #subNavigation li ul.children li a:hover,
          .page-template-page-genericinfocomplex-php #subNavigation li ul.children li a:focus, .single-video #subNavigation li ul.sub-menu li a:hover, .single-video #subNavigation li ul.sub-menu li a:focus,
          .single-video #subNavigation li ul.children li a:hover,
          .single-video #subNavigation li ul.children li a:focus {
            color: #31a288; }
          .page-child #subNavigation li ul.sub-menu li:last-child,
          .page-child #subNavigation li ul.children li:last-child, .page-template-page-genericthreecolumn-php #subNavigation li ul.sub-menu li:last-child,
          .page-template-page-genericthreecolumn-php #subNavigation li ul.children li:last-child, .page-template-page-genericcontentlist-php #subNavigation li ul.sub-menu li:last-child,
          .page-template-page-genericcontentlist-php #subNavigation li ul.children li:last-child, .page-template-page-genericinfocomplex-php #subNavigation li ul.sub-menu li:last-child,
          .page-template-page-genericinfocomplex-php #subNavigation li ul.children li:last-child, .single-video #subNavigation li ul.sub-menu li:last-child,
          .single-video #subNavigation li ul.children li:last-child {
            padding-bottom: 0px; }
      .page-child #subNavigation li:hover > ul, .page-template-page-genericthreecolumn-php #subNavigation li:hover > ul, .page-template-page-genericcontentlist-php #subNavigation li:hover > ul, .page-template-page-genericinfocomplex-php #subNavigation li:hover > ul, .single-video #subNavigation li:hover > ul {
        top: auto;
        visibility: visible; }
    .page-child #subNavigation li.current-menu-item ul.children,
    .page-child #subNavigation li.current_page_item ul.children,
    .page-child #subNavigation li.current_page_ancestor ul.children, .page-template-page-genericthreecolumn-php #subNavigation li.current-menu-item ul.children,
    .page-template-page-genericthreecolumn-php #subNavigation li.current_page_item ul.children,
    .page-template-page-genericthreecolumn-php #subNavigation li.current_page_ancestor ul.children, .page-template-page-genericcontentlist-php #subNavigation li.current-menu-item ul.children,
    .page-template-page-genericcontentlist-php #subNavigation li.current_page_item ul.children,
    .page-template-page-genericcontentlist-php #subNavigation li.current_page_ancestor ul.children, .page-template-page-genericinfocomplex-php #subNavigation li.current-menu-item ul.children,
    .page-template-page-genericinfocomplex-php #subNavigation li.current_page_item ul.children,
    .page-template-page-genericinfocomplex-php #subNavigation li.current_page_ancestor ul.children, .single-video #subNavigation li.current-menu-item ul.children,
    .single-video #subNavigation li.current_page_item ul.children,
    .single-video #subNavigation li.current_page_ancestor ul.children {
      display: block; }
    .page-child #subNavigation li.current_page_item ul.children, .page-template-page-genericthreecolumn-php #subNavigation li.current_page_item ul.children, .page-template-page-genericcontentlist-php #subNavigation li.current_page_item ul.children, .page-template-page-genericinfocomplex-php #subNavigation li.current_page_item ul.children, .single-video #subNavigation li.current_page_item ul.children {
      display: block; }
      .page-child #subNavigation li.current_page_item ul.children ul.children, .page-template-page-genericthreecolumn-php #subNavigation li.current_page_item ul.children ul.children, .page-template-page-genericcontentlist-php #subNavigation li.current_page_item ul.children ul.children, .page-template-page-genericinfocomplex-php #subNavigation li.current_page_item ul.children ul.children, .single-video #subNavigation li.current_page_item ul.children ul.children {
        display: none; }
    .page-child #subNavigation li.current-menu-item a,
    .page-child #subNavigation li.current_page_item a, .page-template-page-genericthreecolumn-php #subNavigation li.current-menu-item a,
    .page-template-page-genericthreecolumn-php #subNavigation li.current_page_item a, .page-template-page-genericcontentlist-php #subNavigation li.current-menu-item a,
    .page-template-page-genericcontentlist-php #subNavigation li.current_page_item a, .page-template-page-genericinfocomplex-php #subNavigation li.current-menu-item a,
    .page-template-page-genericinfocomplex-php #subNavigation li.current_page_item a, .single-video #subNavigation li.current-menu-item a,
    .single-video #subNavigation li.current_page_item a {
      color: #31a288; }
    .page-child #subNavigation li.current-menu-item li a,
    .page-child #subNavigation li.current_page_item li a, .page-template-page-genericthreecolumn-php #subNavigation li.current-menu-item li a,
    .page-template-page-genericthreecolumn-php #subNavigation li.current_page_item li a, .page-template-page-genericcontentlist-php #subNavigation li.current-menu-item li a,
    .page-template-page-genericcontentlist-php #subNavigation li.current_page_item li a, .page-template-page-genericinfocomplex-php #subNavigation li.current-menu-item li a,
    .page-template-page-genericinfocomplex-php #subNavigation li.current_page_item li a, .single-video #subNavigation li.current-menu-item li a,
    .single-video #subNavigation li.current_page_item li a {
      color: #2a3133; }
    .page-child #subNavigation li.page-item-712 ul.children li, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-712 ul.children li, .page-template-page-genericcontentlist-php #subNavigation li.page-item-712 ul.children li, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-712 ul.children li, .single-video #subNavigation li.page-item-712 ul.children li {
      display: none; }
      .page-child #subNavigation li.page-item-712 ul.children li.current_page_parent, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-712 ul.children li.current_page_parent, .page-template-page-genericcontentlist-php #subNavigation li.page-item-712 ul.children li.current_page_parent, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-712 ul.children li.current_page_parent, .single-video #subNavigation li.page-item-712 ul.children li.current_page_parent {
        display: block;
        border: 0px;
        padding-bottom: 0px; }
      .page-child #subNavigation li.page-item-712 ul.children li.current_page_item, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-712 ul.children li.current_page_item, .page-template-page-genericcontentlist-php #subNavigation li.page-item-712 ul.children li.current_page_item, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-712 ul.children li.current_page_item, .single-video #subNavigation li.page-item-712 ul.children li.current_page_item {
        display: block;
        border: 0px;
        padding-bottom: 0px; }
    .page-child #subNavigation li.page-item-2271 ul.children li ul.children, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li ul.children, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li ul.children, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li ul.children, .single-video #subNavigation li.page-item-2271 ul.children li ul.children {
      border-top: 0px none; }
      .page-child #subNavigation li.page-item-2271 ul.children li ul.children li, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li ul.children li, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li ul.children li, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li ul.children li, .single-video #subNavigation li.page-item-2271 ul.children li ul.children li {
        display: none; }
        .page-child #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_item, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_item, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_item, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_item, .single-video #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_item {
          display: block;
          /* not sure yet why this was added. hidden becuse third level menus looked messed up w/out border and padding. example: /difference/responsible-sourcing/sustainable-seafood/faqs/ 
						border: 0px;
						
						padding-bottom: 0px;
						*/ }
        .page-child #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_parent, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_parent, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_parent, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_parent, .single-video #subNavigation li.page-item-2271 ul.children li ul.children li.current_page_parent {
          background: red; }
    .page-child #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children,
    .page-child #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children,
    .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children,
    .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children,
    .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children, .single-video #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children,
    .single-video #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children {
      border-top: 1px solid #e1e6e7; }
      .page-child #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children li,
      .page-child #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children li, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children li,
      .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children li, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children li,
      .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children li, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children li,
      .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children li, .single-video #subNavigation li.page-item-2271 ul.children li.current_page_item ul.children li,
      .single-video #subNavigation li.page-item-2271 ul.children li.current_page_parent ul.children li {
        display: block; }
    .page-child #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children, .single-video #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children {
      display: none;
      border-top: 0px none; }
      .page-child #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li, .single-video #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li {
        display: none; }
        .page-child #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li.current_page_item, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li.current_page_item, .page-template-page-genericcontentlist-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li.current_page_item, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li.current_page_item, .single-video #subNavigation li.page-item-2271 li.page-item-2322.current_page_item ul.children li.current_page_item {
          display: block;
          border: 0px;
          padding-bottom: 0px; }
    .page-child #subNavigation li.page-item-3128, .page-template-page-genericthreecolumn-php #subNavigation li.page-item-3128, .page-template-page-genericcontentlist-php #subNavigation li.page-item-3128, .page-template-page-genericinfocomplex-php #subNavigation li.page-item-3128, .single-video #subNavigation li.page-item-3128 {
      display: none; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  #featuredBoxes, .featuredBoxes {
    background: transparent;
  }
  #featuredBoxes .wrap, .featuredBoxes .wrap {
    /* max-width: 760px; */
    width: 93.75%;
  }
  #featuredBoxes .wrap .innerWrap, .featuredBoxes .wrap .innerWrap {
    width: 100%;
  }
  #featuredBoxes .textLink, .featuredBoxes .textLink {
    display: block;
    font-size: 0.8125em;
  }
  #featuredBoxes .h4, .featuredBoxes .h4 {
    padding-left: 0px;
    padding-top: 0.625em;
  }

  #featuredContent .heading, #featuredBoxes .heading, .featuredBoxes .heading, #subFeaturedBoxes .heading {
    width: 100%;
    margin: 0;
  }

  #featuredContent {
    padding-top: 1.875em;
    clear: both;
    overflow: auto;
  }
  #featuredContent.withGallery {
    overflow: hidden;
  }
  #featuredContent .wrap {
    /* max-width: 760px; */
    overflow: hidden;
    position: relative;
    width: 93.75%;
  }
  #featuredContent .wrap .innerWrap {
    width: 100%;
  }
  #featuredContent .wrap {
    margin: 0 auto;
    overflow: hidden;
    /* width: 760px 94.594594595vw 732px */
  }
  #featuredContent .aFeaturedContentBox {
    float: left;
    list-style: none;
  }
  #featuredContent .aFeaturedContentBox.box5 {
    clear: left;
  }
  #featuredContent .gallery__img {
    display: block;
    border: 4px solid #40331b;
    height: 175px;
    width: 160px;
  }
  #featuredContent .clearfix:before, #featuredContent .clearfix:after {
    content: " ";
    display: table;
  }
  #featuredContent .clearfix:after {
    clear: both;
  }
  #featuredContent .clearfix {
    *zoom: 1;
  }
  #featuredContent .textLink {
    display: block;
    font-size: 0.8125em;
    font-weight: 600;
  }

  .page-template-page-recipesandexpertise-php #featuredContent .gallery__controls-next {
    background: #fff;
  }
  .page-template-page-recipesandexpertise-php #featuredContent .gallery__controls-prev {
    background: #fff;
  }

  .aFeaturedContentBox {
    width: 22.85714%;
    /* position: relative; */
    float: left;
    margin-right: 2.857142857%;
    padding-bottom: 0.3125em;
    border-bottom: 0px;
  }
  .aFeaturedContentBox a {
    display: block;
  }
  .aFeaturedContentBox img {
    width: 100%;
    height: auto;
    /* max-height: 143px; */
    float: none;
    margin-left: 0%;
    border-radius: 0.375em;
  }
  .aFeaturedContentBox .h4 {
    float: none;
    width: 59%;
    width: 100%;
    margin: 0px;
    padding-left: 0px;
    padding-top: 0.5em;
    padding-bottom: 0.125em;
  }
  .aFeaturedContentBox .h4:after {
    content: none;
  }
  .aFeaturedContentBox p {
    float: none;
    display: block;
    margin-top: 0em;
  }
  .aFeaturedContentBox:nth-child(4n) {
    margin-right: 0px;
  }
  .aFeaturedContentBox.pastLimit {
    display: block;
  }

  #featuredBoxes .row, .featuredBoxes .row {
    overflow: auto;
    margin-bottom: 1.25em;
  }

  .aContentBox {
    width: 22.8571429%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
    border-bottom: 0px;
    overflow: hidden;
    	/*
    &:first-child {
    		margin-left: 0px;
    	}
    */
  }
  .aContentBox a, .aContentBox .notaLink {
    display: block;
  }
  .aContentBox div {
    /* overflow: hidden; */
  }
  .aContentBox img {
    width: 100%;
    float: none;
    margin-left: 0%;
    border-radius: 0.375em;
  }
  .aContentBox .h4 {
    float: none;
    width: 59%;
    width: 100%;
    margin: 0px;
  }
  .aContentBox .h4:after {
    content: none;
  }
  .aContentBox p {
    float: none;
    display: block;
    margin-top: 0em;
  }
  .aContentBox:nth-child(4n-3) {
    margin-left: 0px;
  }
  .aContentBox:nth-child(4n) {
    float: right;
  }
  .aContentBox.pastLimit {
    display: block;
  }

  #getNewsletter input#email {
    width: 75%;
    position: relative;
    float: left;
  }
  #getNewsletter #submit-button {
    width: 25%;
    position: relative;
    float: left;
    min-height: 39px;
    margin-bottom: 0px;
  }

  #getNewsletter {
    width: 65.7142857%;
    position: relative;
    float: left;
    margin: 32px 0% 18px 0%;
  }
  #getNewsletter input#email {
    width: auto;
    position: inherit;
    float: none;
  }
  #getNewsletter #submit-button {
    width: auto;
    position: inherit;
    float: none;
    min-height: 39px;
  }
  #getNewsletter h2 {
    display: inline;
    padding-right: 0.625em;
    text-transform: none;
    font-size: 1.25em;
    font-weight: 500;
    position: relative;
    top: -5px;
  }
  #getNewsletter form#signUpForm {
    display: inline;
  }
  #getNewsletter div#senderInfo {
    display: inline-block;
  }
  #getNewsletter input#email {
    display: inline;
  }
  #getNewsletter input#submit-button {
    position: relative;
    /* top: -3px; */
    /* -6 was wonky on homepage and savings and deals */
    		/*
    left: -7px;
    		padding: 3px 10px;
    */
    top: -5px;
    left: -7px;
    padding: 1px 10px;
  }
  #getNewsletter .heading.justTitle {
    top: 36px;
  }

  aside #getNewsletter {
    width: 100%;
    margin: 1.875em 0 0 0;
    padding: 0px;
  }
  aside #getNewsletter input#email {
    width: 100%;
  }
  aside #getNewsletter #submit-button {
    position: inherit;
    top: 0;
    left: 0;
    border-radius: 4px;
  }

  #bigSocialLinks {
    display: block;
    width: 31.4285714%;
    position: relative;
    float: right;
    margin-left: 02.8571429%;
    padding-top: 1.875em;
  }
  #bigSocialLinks li {
    display: inline-block;
    font-size: 1.875em;
    padding-left: 0.3125em;
  }

  #contactBanner {
    position: absolute;
  }

  .theExploreLinks {
    padding-bottom: 12px;
  }

  #exploreLinks {
    padding-top: 105px;
    clear: both;
    overflow: auto;
    background: #f4f1ee;
  }
  #exploreLinks .textLink {
    display: inline;
  }
  #exploreLinks .textLink:after {
    font-family: 'icomoon';
    content: "\e602";
    margin-left: 5px;
    position: relative;
    top: 2px;
  }
  #exploreLinks .inner-exploreLinks {
    clear: both;
    overflow: auto;
  }
  #exploreLinks h2 {
    padding-top: 30px;
    font-size: 2.125em;
  }

  .row {
    overflow: auto;
    clear: both;
  }
  .row:last-child .aExploareLinks {
    border-bottom: 0px;
  }

  .inner-exploreLinks {
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right 22%;
  }

  .aExploareLinks {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 02.8571429%;
    border-bottom: 1px solid #e1e6e7;
    padding-top: 0.9375em;
    min-height: 7em;
  }
  .aExploareLinks a:after {
    content: none;
  }
  .aExploareLinks:nth-child(2n-1) {
    margin-left: 0px;
  }
  .aExploareLinks:nth-child(2n) {
    float: right;
    clear: right;
  }
  .aExploareLinks:first-child {
    border-top: 0px;
  }

  .fullSubFeature {
    clear: both;
    padding-bottom: 0px;
  }
  .fullSubFeature .text {
    padding-top: 3em;
    padding-bottom: 2.0625em;
    width: 45%;
    /* margin-left: 2.8571429%; */
    vertical-align: top;
    display: inline-block;
  }
  .fullSubFeature .text p {
    font-size: 1.25em;
  }
  .fullSubFeature .text .button {
    margin-bottom: 1.25em;
  }

  /*********************
  ABOUT US CHILD
  *********************/
  .page-template-page-healthandwellness-php #main,
  .page-template-page-nourish-php #main,
  .page-template-page-aboutus-php #main {
    padding-bottom: 3.125em;
  }

  .page-template-page-healthandwellness-php .fullSubFeature img,
  .page-template-page-nourish-php .fullSubFeature img {
    width: 40%;
    margin-bottom: 0px;
  }
  .page-template-page-healthandwellness-php .fullSubFeature .text,
  .page-template-page-nourish-php .fullSubFeature .text {
    width: 57.1428571%;
  }
  .page-template-page-healthandwellness-php .aFeaturedContentBox, .page-template-page-healthandwellness-php .aContentBox,
  .page-template-page-nourish-php .aFeaturedContentBox,
  .page-template-page-nourish-php .aContentBox {
    display: block;
  }
  .page-template-page-healthandwellness-php .aFeaturedContentBox h2, .page-template-page-healthandwellness-php .aContentBox h2,
  .page-template-page-nourish-php .aFeaturedContentBox h2,
  .page-template-page-nourish-php .aContentBox h2 {
    margin: 0.5em 0 0.1875em 0;
  }
  .page-template-page-healthandwellness-php .aFeaturedContentBox p, .page-template-page-healthandwellness-php .aContentBox p,
  .page-template-page-nourish-php .aFeaturedContentBox p,
  .page-template-page-nourish-php .aContentBox p {
    padding: 0 0 0.1875em 0;
  }
  .page-template-page-healthandwellness-php .threeOrLess,
  .page-template-page-nourish-php .threeOrLess {
    max-width: 780px;
    margin: 0 auto;
  }
  .page-template-page-healthandwellness-php .threeOrLess .aFeaturedContentBox,
  .page-template-page-nourish-php .threeOrLess .aFeaturedContentBox {
    width: 30.7692308%;
    margin-right: 3.8461538%;
  }
  .page-template-page-healthandwellness-php .threeOrLess .aFeaturedContentBox:last-child,
  .page-template-page-nourish-php .threeOrLess .aFeaturedContentBox:last-child {
    margin-right: 0;
  }

  .page-template-page-nourish-php {
    /*
    	#getNewsletter {
    		width: 100%;
    		padding: 0px;
    		.text {
    			width: 40.8045977%;
    			float: left;
    		}
    		form#signUpForm {
    			float: right;		
    			#senderInfo {
    				width: 300px;
    			}
    			input#email {
    				width: 100%;
    			}
    		}
    	}
    */
  }
  .page-template-page-nourish-php #content #inner-content #main {
    padding-bottom: 0px;
  }
  .page-template-page-nourish-php .fullSubFeature img {
    display: block;
    margin: 0px;
    width: 40%;
    position: relative;
    float: left;
    padding-top: 100px;
  }
  .page-template-page-nourish-php .fullSubFeature .text {
    margin-left: 2.8571429%;
    width: 57.1428571%;
    padding-bottom: 20px;
    padding-top: 55px;
  }
  .page-template-page-nourish-php .fullSubFeature h3 {
    font-size: 20px;
  }
  .page-template-page-nourish-php .fullSubFeature p {
    font-size: 13px;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 35px;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .wrap {
    width: 93.75%;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .innerWrap {
    width: 100%;
    margin: auto;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .contentLinks {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .contentLinks .textLink {
    display: block;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .contentLinks .aFeaturedContentBox {
    width: 47.0588235%;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .contentLinks .aFeaturedContentBox:nth-child(2n) {
    float: right;
    margin-right: 0px;
  }
  .page-template-page-nourish-php #contentLinksAndNewsletter .newsletterSignup {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-nourish-php #contactBanner {
    position: inherit;
  }
  .page-template-page-nourish-php #subFeaturedBoxes {
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .wrap {
    max-width: 880px;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .wrap .innerWrap {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .aContentBox {
    width: 18.1818182%;
    margin-left: 2.2727273%;
    text-align: center;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .aContentBox h3 {
    padding: 0px;
    display: block;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .aContentBox p {
    padding: 0 10px;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .aContentBox:first-child {
    margin-left: 0px;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .aContentBox:nth-child(4n) {
    float: left;
  }
  .page-template-page-nourish-php #subFeaturedBoxes .h4:after {
    font-family: 'icomoon';
    content: "\00a0\e602";
    margin-left: 0px;
    position: relative;
    top: 0px;
    font-size: 13px;
  }
  .page-template-page-nourish-php #contactBanner .wrap {
    max-width: 870px;
  }
  .page-template-page-nourish-php #eventsBanner {
    padding: 0px;
  }
  .page-template-page-nourish-php #eventsBanner .wrap {
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right 22%;
  }
  .page-template-page-nourish-php #eventsBanner #theEvents {
    padding: 60px 0 70px 0;
  }
  .page-template-page-nourish-php #eventsBanner .anEvent {
    width: 22.8571429%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-nourish-php #eventsBanner .anEvent:nth-child(2n-1) {
    margin-left: 0px;
  }
  .page-template-page-nourish-php #featuredContent.noevents .wrap {
    padding-top: 30px;
  }
  .page-template-page-nourish-php #getNewsletter {
    width: 100%;
    background: #f4f1ee;
    padding: 15px 0px 0px 0px;
    margin: 0px;
    overflow: hidden;
  }
  .page-template-page-nourish-php #getNewsletter input#email {
    width: 100%;
  }
  .page-template-page-nourish-php #getNewsletter input#submit-button {
    position: initial;
    top: 0px;
    left: 0px;
    border-radius: 4px;
  }
  .page-template-page-nourish-php #getNewsletter #signUpForm #senderInfo {
    display: block;
  }
  .page-template-page-nourish-php #getNewsletter .textandform {
    width: 43.1372549%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-nourish-php #getNewsletter img {
    display: block;
    width: 43.1372549%;
    position: relative;
    float: left;
    margin-left: 5%;
    -webkit-box-shadow: -2px 31px 24px 11px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -2px 31px 24px 11px rgba(0, 0, 0, 0.5);
    box-shadow: -2px 31px 24px 11px rgba(0, 0, 0, 0.5);
  }
  .page-template-page-nourish-php #featuredContent .h4 {
    display: none;
  }
  .page-template-page-nourish-php #featuredContent .textLink {
    padding-top: 10px;
  }
  .page-template-page-nourish-php #featuredContent ul {
    border-top: 0px none;
  }
  .page-template-page-nourish-php .buttonarea {
    padding-bottom: 50px;
  }

  .contentHeader {
    text-align: center;
  }
  .contentHeader p {
    font-size: 1.25em;
  }
  .contentHeader h2 {
    margin-bottom: 0;
  }

  .single-post section.entry-content {
    padding-left: 3.7037%;
    padding-right: 3.7037%;
    max-width: 600px;
  }

  /*********************
  	Careers
  *********************/
  .page-template-page-careers-php.page-child #main, .page-template-page-extras-php #main {
    width: 100%;
    padding: 0px;
    float: none; }
  .page-template-page-careers-php.page-child .careersFeature, .page-template-page-extras-php .careersFeature {
    padding-top: 60px; }
    .page-template-page-careers-php.page-child .careersFeature img, .page-template-page-extras-php .careersFeature img {
      width: 48.5714286%;
      position: relative;
      float: left;
      margin-left: 0; }
    .page-template-page-careers-php.page-child .careersFeature .videoArea, .page-template-page-extras-php .careersFeature .videoArea {
      width: 48.5714286%;
      position: relative;
      float: left;
      margin-left: 0; }
    .page-template-page-careers-php.page-child .careersFeature .text, .page-template-page-extras-php .careersFeature .text {
      width: 48.5714286%;
      position: relative;
      float: right;
      margin-left: 2.8571429%; }
    .page-template-page-careers-php.page-child .careersFeature h2, .page-template-page-extras-php .careersFeature h2 {
      font-size: 34px;
      width: 80%;
      line-height: 38px;
      padding: 4px 0 0 0; }
    .page-template-page-careers-php.page-child .careersFeature p, .page-template-page-extras-php .careersFeature p {
      font-size: 20px;
      line-height: 25px; }
    .page-template-page-careers-php.page-child .careersFeature.noCTABanner .wrap, .page-template-page-extras-php .careersFeature.noCTABanner .wrap {
      padding-bottom: 40px;
      margin-bottom: -20px; }
    .page-template-page-careers-php.page-child .careersFeature .button, .page-template-page-extras-php .careersFeature .button {
      margin-top: 2px; }
  .page-template-page-careers-php.page-child .rslides, .page-template-page-extras-php .rslides {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0; }
    .page-template-page-careers-php.page-child .rslides img, .page-template-page-extras-php .rslides img {
      width: 100%; }
  .page-template-page-careers-php.page-child #ctaBanner, .page-template-page-extras-php #ctaBanner {
    padding-top: 60px; }
    .page-template-page-careers-php.page-child #ctaBanner p, .page-template-page-extras-php #ctaBanner p {
      font-size: 20px;
      text-align: center;
      max-width: 690px;
      margin: 0 auto;
      padding-bottom: 0px; }
    .page-template-page-careers-php.page-child #ctaBanner .innerCTA:after, .page-template-page-extras-php #ctaBanner .innerCTA:after {
      font-size: 30px;
      padding-right: 10px; }
  .page-template-page-careers-php.page-child #expandableBoxes, .page-template-page-extras-php #expandableBoxes {
    /*
    		.bioImage{
    			display: block;
    			width: 48.5714286%;
    			position: relative;
    			float: left;
    			margin-left: 0%;
    	    }
    */ }
    .page-template-page-careers-php.page-child #expandableBoxes .wrap, .page-template-page-extras-php #expandableBoxes .wrap {
      max-width: 780px; }
    .page-template-page-careers-php.page-child #expandableBoxes h2, .page-template-page-extras-php #expandableBoxes h2 {
      text-align: center;
      font-size: 34px;
      border-top: 1px solid #cfcfcf;
      padding-top: 20px;
      margin-top: 20px; }
      .page-template-page-careers-php.page-child #expandableBoxes h2:first-child, .page-template-page-extras-php #expandableBoxes h2:first-child {
        border-top: 0px none; }
    .page-template-page-careers-php.page-child #expandableBoxes .loadBox, .page-template-page-extras-php #expandableBoxes .loadBox {
      display: block;
      clear: both; }
      .page-template-page-careers-php.page-child #expandableBoxes .loadBox .bioText p, .page-template-page-extras-php #expandableBoxes .loadBox .bioText p {
        font-size: 16px; }
    .page-template-page-careers-php.page-child #expandableBoxes .bioHeader .closeIcon, .page-template-page-extras-php #expandableBoxes .bioHeader .closeIcon {
      top: -5px;
      font-size: 22px; }
    .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox, .page-template-page-extras-php #expandableBoxes .anExpandableBox {
      width: 30.7692308%;
      position: relative;
      float: left;
      margin-left: 3.8461538%;
      	/*
      &:first-child {
      		margin-left: 0px;
      	}
      */ }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox .fullText, .page-template-page-extras-php #expandableBoxes .anExpandableBox .fullText {
        display: none; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox a, .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox .notaLink, .page-template-page-extras-php #expandableBoxes .anExpandableBox a, .page-template-page-extras-php #expandableBoxes .anExpandableBox .notaLink {
        display: block; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox img, .page-template-page-extras-php #expandableBoxes .anExpandableBox img {
        width: 100%;
        float: none;
        margin-left: 0%;
        border-radius: 0.375em; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox .h4, .page-template-page-extras-php #expandableBoxes .anExpandableBox .h4 {
        float: none;
        width: 59%;
        width: 100%;
        margin: 0px; }
        .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox .h4:after, .page-template-page-extras-php #expandableBoxes .anExpandableBox .h4:after {
          content: none; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox p, .page-template-page-extras-php #expandableBoxes .anExpandableBox p {
        float: none;
        display: block;
        margin-top: 0em; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox.col1, .page-template-page-extras-php #expandableBoxes .anExpandableBox.col1 {
        margin-left: 0px; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox.col3, .page-template-page-extras-php #expandableBoxes .anExpandableBox.col3 {
        float: right; }
      .page-template-page-careers-php.page-child #expandableBoxes .anExpandableBox.pastLimit, .page-template-page-extras-php #expandableBoxes .anExpandableBox.pastLimit {
        display: block; }
    .page-template-page-careers-php.page-child #expandableBoxes .fullText.col1:after, .page-template-page-extras-php #expandableBoxes .fullText.col1:after {
      right: 84%; }
    .page-template-page-careers-php.page-child #expandableBoxes .fullText.col1:before, .page-template-page-extras-php #expandableBoxes .fullText.col1:before {
      right: 84%; }
    .page-template-page-careers-php.page-child #expandableBoxes .fullText.col3:after, .page-template-page-extras-php #expandableBoxes .fullText.col3:after {
      right: 14%; }
    .page-template-page-careers-php.page-child #expandableBoxes .fullText.col3:before, .page-template-page-extras-php #expandableBoxes .fullText.col3:before {
      right: 14%; }
    .page-template-page-careers-php.page-child #expandableBoxes .innerFullText, .page-template-page-extras-php #expandableBoxes .innerFullText {
      max-width: 500px;
      margin: 0 auto;
      padding-top: 10px; }
  .page-template-page-careers-php.page-child #benefits, .page-template-page-extras-php #benefits {
    margin-top: 30px;
    margin-bottom: 30px; }
  .page-template-page-careers-php.page-child #benefits .wrap, .page-template-page-extras-php #benefits .wrap {
    padding: 0px; }
    .page-template-page-careers-php.page-child #benefits .wrap h2, .page-template-page-extras-php #benefits .wrap h2 {
      width: 22.8571429%;
      position: relative;
      float: left;
      margin-left: 0%;
      border: 0px;
      margin-top: 25px;
      margin-bottom: 25px; }
      .page-template-page-careers-php.page-child #benefits .wrap h2 p, .page-template-page-extras-php #benefits .wrap h2 p {
        margin: 20px;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        font-size: 34px;
        line-height: 36px;
        padding: 24px 0px;
        margin-top: 20px; }
    .page-template-page-careers-php.page-child #benefits .wrap ul, .page-template-page-extras-php #benefits .wrap ul {
      margin-top: 15px;
      width: 22.8571429%;
      position: relative;
      float: left;
      margin-left: 2.8571429%; }
    .page-template-page-careers-php.page-child #benefits .wrap .moreText, .page-template-page-extras-php #benefits .wrap .moreText {
      width: 22.8571429%;
      position: relative;
      float: right;
      margin-left: 2.8571429%;
      padding-right: 15px; }
  .page-template-page-careers-php.page-child #quotes, .page-template-page-extras-php #quotes {
    width: 74.2857143%;
    position: relative;
    float: left;
    margin-left: 0%; }
    .page-template-page-careers-php.page-child #quotes .quotesLogo, .page-template-page-extras-php #quotes .quotesLogo {
      max-width: 96px; }
    .page-template-page-careers-php.page-child #quotes .text, .page-template-page-extras-php #quotes .text {
      padding-top: 15px; }
    .page-template-page-careers-php.page-child #quotes h2, .page-template-page-extras-php #quotes h2 {
      width: 30.7692308%;
      position: relative;
      float: left;
      margin-left: 0%;
      margin-top: 20px;
      font-size: 34px;
      line-height: 36px; }
    .page-template-page-careers-php.page-child #quotes .aQuote, .page-template-page-extras-php #quotes .aQuote {
      width: 30.7692308%;
      position: relative;
      float: left;
      margin-left: 3.8461538%;
      padding: 18px; }
      .page-template-page-careers-php.page-child #quotes .aQuote:before, .page-template-page-extras-php #quotes .aQuote:before {
        margin-top: 10px; }
    .page-template-page-careers-php.page-child #quotes a.textLink, .page-template-page-extras-php #quotes a.textLink {
      clear: both;
      float: none;
      display: block;
      width: 30.7692308%;
      position: relative;
      top: -50px; }
  .page-template-page-careers-php.page-child #social, .page-template-page-extras-php #social {
    width: 22.8571429%;
    position: relative;
    float: right;
    margin-left: 2.8571429%; }
    .page-template-page-careers-php.page-child #social h2, .page-template-page-extras-php #social h2 {
      font-size: 20px;
      line-height: 24px;
      padding-bottom: 10px;
      padding-right: 30px; }
    .page-template-page-careers-php.page-child #social .socailWrap, .page-template-page-extras-php #social .socailWrap {
      padding: 20px;
      padding-bottom: 35px; }
  .page-template-page-careers-php.page-child #searchJobsApply, .page-template-page-extras-php #searchJobsApply {
    padding: 50px 0 60px; }
    .page-template-page-careers-php.page-child #searchJobsApply p, .page-template-page-extras-php #searchJobsApply p {
      font-size: 1.25em; }
  .page-template-page-careers-php.page-child #locations, .page-template-page-extras-php #locations {
    display: block;
    padding-top: 60px; }
    .page-template-page-careers-php.page-child #locations h2, .page-template-page-extras-php #locations h2 {
      text-align: center; }
    .page-template-page-careers-php.page-child #locations .mainMap, .page-template-page-extras-php #locations .mainMap {
      width: 74.2857143%;
      position: relative;
      float: left;
      margin-left: 0%; }
    .page-template-page-careers-php.page-child #locations .sideMaps, .page-template-page-extras-php #locations .sideMaps {
      width: 22.8571429%;
      position: relative;
      float: right;
      margin-left: 2.8571429%; }
      .page-template-page-careers-php.page-child #locations .sideMaps .sideMap1, .page-template-page-extras-php #locations .sideMaps .sideMap1 {
        margin-bottom: 30px; }
  .page-template-page-careers-php.page-child #faqs, .page-template-page-extras-php #faqs {
    padding-top: 60px; }
    .page-template-page-careers-php.page-child #faqs h2, .page-template-page-extras-php #faqs h2 {
      text-align: center; }

  /*********************
  	EXTRAS
  *********************/
  .page-template-page-extras-php .extrasFeature .wrap {
    display: -ms-flexbox;
    display: flex; }
  
  .page-template-page-extras-php .extrasFeature {
	padding-top: 0px; }
  .page-template-page-extras-php #appDownloads {
	display: none;}
  .page-template-page-extras-php .extrasFeature .ctas {
	display: block;
  }
  .page-template-page-extras-php .featureImg {
	display: block; 
    margin-left: 0;
    height: 100%;
    align-self: flex-end;
    max-height: 437px;
    max-width: 421px;
    min-width: 421px; }
  .page-template-page-extras-php .extrasFeature .videoArea {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0; }
  .page-template-page-extras-php .extrasFeature .text {
    padding-top: 60px;
    margin-left: 2.8571429%;
    max-width: 600px; }
  .page-template-page-extras-php .extrasFeature h2 {
    font-size: 34px;
    width: 80%;
    line-height: 38px;
    padding: 4px 0 0 0; }
  .page-template-page-extras-php .extrasFeature p {
    color: #2a3133;
    font-size: 20px;
    line-height: 25px; }
  .page-template-page-extras-php .extrasFeature .button {
    margin-top: 2px; }
  .page-template-page-extras-php .extrasFeature .ctas a {
    float: left; }
  .page-template-page-extras-php .extrasFeature .ctas .textlink {
    width: 150px;
    text-align: left;
    padding-top: 4px; }
  .page-template-page-extras-php #steps {
    padding-top: 60px;
    padding-bottom: 60px; }
    .page-template-page-extras-php #steps h2 {
      font-size: 34px;
      padding-bottom: 15px; }
  .page-template-page-extras-php #steps .step {
    max-width: none;
    width: 31.4285714%;
    position: relative;
    float: left;
    margin-left: 2.8571429%; }
    .page-template-page-extras-php #steps .step:after {
      content: "";
      display: block;
      width: 50%;
      height: 32px;
      background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJsAAAAgCAYAAAAFbAo6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjZDcwMzhhOS1jNDhkLTQ5NzMtOTQwZC0zZjU3NTE4NjdiZjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUFGMTI1MDgyOTM3MTFFNzg4RjNDRDg2REQxNUQ1Q0MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjlBRUY3MEUyOTM0MTFFNzg4RjNDRDg2REQxNUQ1Q0MiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDplMDQ5NjM1Zi0xMDBmLTRlZTktYjllYi1jN2ZlZjY5NmFlY2YiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpmZDY0YTBkMC00MWU3LTExN2EtOGY5MC1hNTRmMjBiMjg2ODQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5vdOA6AAACKUlEQVR42uybL0hDQRzH3/NP0TDTwKLYNa8IisEiotmBBoO6ICzpYMFg0KQMFBkYHMysiMUwFCwWQVyVgSAWwxZmEXn+Thge57nf3XvPW/l+4Djux777zbfP9u4UvSAIPHkA0GLiZOeARnfYvOpWFy4paEOaRimKcDKQDXAsxCUcZAPOhINswJlwkA04Ew6yAWfCQTYQVjjxaxEfsgEXrNA4tBEOsoEorNoIB9mAM+EgG3AmHGQDzoTz1T++T5Z2z7hnvVnanJfX1GCZplkmdky5CymTpKnIZJqUSSu9cjSlmFyBchUpM0LTHpOpUSar9NqmaZTJ5SlXlTLiteWYTJUyeaWXuBZJJpelXE3KTNG0zmQqlCkovco09TM5cd1faCQspTuikaGegepWj+bBcyGsHjPIXSvrPoNMQ1NLGeTUD0zCIPOgqY2L94bJ7SvrQYNeA5raNI1hJrelrIcMetU1tRkDiXojfMMJoTM0BZxsAMRxSxWsYc8GOgJkA//B975NLepuo+chnvzRIPekrN8NMk1N7c7g9Txr9n5cr5qmdvvHnkfmTVm/GvSqampXBgeEhubn5Hrda2qXBgeEjyiiiQOCt7jR/jTq+z4+l6B1aq1bnkZ/RPO8X/9mgNsoiPXW2RINezbQMdEgG3AmGmQDzkSDbCAKRRvRIBsIy6mtaJANhBVtkUT7tA1CNuBENMgGnIkG2YAz0SAbcCYaZAMc5bhEE3wJMABt3dAoOvBNMwAAAABJRU5ErkJggg==");
      background-position: 100%;
      background-repeat: no-repeat;
      position: absolute;
      top: 55px;
      right: -30%; }
    .page-template-page-extras-php #steps .step p {
      padding: 10px 0 0 0; }
    .page-template-page-extras-php #steps .step.narrow p {
      padding: 10px 30px 0; }
  .page-template-page-extras-php #steps .step:nth-child(3n-2) {
    margin-left: 0; }
  .page-template-page-extras-php #steps .step:nth-child(3n) {
    float: right; }
  .page-template-page-extras-php #steps .step:last-child:after {
    display: none; }
  .page-template-page-extras-php #becomeAMember {
    margin-bottom: 60px; }
    .page-template-page-extras-php #becomeAMember .wrap {
      padding-top: 70px; }
    .page-template-page-extras-php #becomeAMember h2 {
      font-size: 34px; }
  .page-template-page-extras-php #faqs h2 {
    font-size: 34px;
    margin-bottom: 22px; }

  /************** CHARITABLE GIVING **************/
  .page-child, .tribe-filter-live, .search-results.category-recipes, .search-no-results.category-recipes, .page-template-page-genericthreecolumn-php, .page-template-page-genericcontentlist-php, .page-template-page-genericinfocomplex-php, .page-template-archive-php.tag, .single-video {
    /*
	#main .wrap, #subNavigation .wrap {
		width: 100%;
	}
	
	#inner-content {
		background: $off-white;
	}
	
	#subNavigation {
		
		padding-top: em(60px);
		
		width: 22.8571429%;
		position: relative;
		float: left;
		margin-left: 0%;
		
		ul {
			float: right;
			width: 100%;
			max-width: em(174px);
			padding-right: 30px;
			
		}
		
	}
	
	#main {
		
		width: 77.1428572%;
		position: relative;
		float: left;
		padding-left: 2.8571429%;
		
		article{
			width: 65.3846154%;
			float: left;
			max-width: em(390px);
		}
		
		aside {
			margin-left: 3.8461538%;
			
			width: 30.7692308%;
			float: left;
			max-width: em(174px);
		}
		
	}
*/ }
    .page-child #content, .tribe-filter-live #content, .search-results.category-recipes #content, .search-no-results.category-recipes #content, .page-template-page-genericthreecolumn-php #content, .page-template-page-genericcontentlist-php #content, .page-template-page-genericinfocomplex-php #content, .page-template-archive-php.tag #content, .single-video #content {
      background: #f4f1ee;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZGZhZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
      background: -moz-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
      background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f4f1ee), color-stop(50%, #ffffff));
      background: -webkit-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
      background: -o-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
      background: -ms-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
      background: linear-gradient(to right, #f4f1ee 50%, #ffffff 50%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='f4f1ee', endColorstr='#ffffff',GradientType=1 ); }
    .page-child .wrap .innerWrap, .tribe-filter-live .wrap .innerWrap, .search-results.category-recipes .wrap .innerWrap, .search-no-results.category-recipes .wrap .innerWrap, .page-template-page-genericthreecolumn-php .wrap .innerWrap, .page-template-page-genericcontentlist-php .wrap .innerWrap, .page-template-page-genericinfocomplex-php .wrap .innerWrap, .page-template-archive-php.tag .wrap .innerWrap, .single-video .wrap .innerWrap {
      width: 100%; }
    .page-child .wrapper, .tribe-filter-live .wrapper, .search-results.category-recipes .wrapper, .search-no-results.category-recipes .wrapper, .page-template-page-genericthreecolumn-php .wrapper, .page-template-page-genericcontentlist-php .wrapper, .page-template-page-genericinfocomplex-php .wrapper, .page-template-archive-php.tag .wrapper, .single-video .wrapper {
      background: #fff;
      overflow: auto; }
      .page-child .wrapper #main, .tribe-filter-live .wrapper #main, .search-results.category-recipes .wrapper #main, .search-no-results.category-recipes .wrapper #main, .page-template-page-genericthreecolumn-php .wrapper #main, .page-template-page-genericcontentlist-php .wrapper #main, .page-template-page-genericinfocomplex-php .wrapper #main, .page-template-archive-php.tag .wrapper #main, .single-video .wrapper #main {
        width: 66.6666667%;
        /* padding-left: 0px; */
        padding-right: 2.8571429%; }
      .page-child .wrapper aside, .tribe-filter-live .wrapper aside, .search-results.category-recipes .wrapper aside, .search-no-results.category-recipes .wrapper aside, .page-template-page-genericthreecolumn-php .wrapper aside, .page-template-page-genericcontentlist-php .wrapper aside, .page-template-page-genericinfocomplex-php .wrapper aside, .page-template-archive-php.tag .wrapper aside, .single-video .wrapper aside {
        width: 32.4867725%; }
    .page-child #subNavigation, .tribe-filter-live #subNavigation, .search-results.category-recipes #subNavigation, .search-no-results.category-recipes #subNavigation, .page-template-page-genericthreecolumn-php #subNavigation, .page-template-page-genericcontentlist-php #subNavigation, .page-template-page-genericinfocomplex-php #subNavigation, .page-template-archive-php.tag #subNavigation, .single-video #subNavigation {
      width: 22.8571429%;
      position: relative;
      float: left;
      margin-left: 0;
      padding-right: 2.8571429%; }
    .page-child #main, .tribe-filter-live #main, .search-results.category-recipes #main, .search-no-results.category-recipes #main, .page-template-page-genericthreecolumn-php #main, .page-template-page-genericcontentlist-php #main, .page-template-page-genericinfocomplex-php #main, .page-template-archive-php.tag #main, .single-video #main {
      width: 51.4285714%;
      /* 48.5714286+2.8571429 */
      position: relative;
      float: left;
      padding-left: 2.8571429%;
      padding-right: 2.8571429%; }
      .page-child #main .subTitle, .tribe-filter-live #main .subTitle, .search-results.category-recipes #main .subTitle, .search-no-results.category-recipes #main .subTitle, .page-template-page-genericthreecolumn-php #main .subTitle, .page-template-page-genericcontentlist-php #main .subTitle, .page-template-page-genericinfocomplex-php #main .subTitle, .page-template-archive-php.tag #main .subTitle, .single-video #main .subTitle {
        margin-top: -15px; }
      .page-child #main .pageTitle, .page-child #main .single-title, .tribe-filter-live #main .pageTitle, .tribe-filter-live #main .single-title, .search-results.category-recipes #main .pageTitle, .search-results.category-recipes #main .single-title, .search-no-results.category-recipes #main .pageTitle, .search-no-results.category-recipes #main .single-title, .page-template-page-genericthreecolumn-php #main .pageTitle, .page-template-page-genericthreecolumn-php #main .single-title, .page-template-page-genericcontentlist-php #main .pageTitle, .page-template-page-genericcontentlist-php #main .single-title, .page-template-page-genericinfocomplex-php #main .pageTitle, .page-template-page-genericinfocomplex-php #main .single-title, .page-template-archive-php.tag #main .pageTitle, .page-template-archive-php.tag #main .single-title, .single-video #main .pageTitle, .single-video #main .single-title {
        font-size: 2.125em;
        margin-bottom: 0.625em;
        padding-top: 0em; }
      .page-child #main .h3, .tribe-filter-live #main .h3, .search-results.category-recipes #main .h3, .search-no-results.category-recipes #main .h3, .page-template-page-genericthreecolumn-php #main .h3, .page-template-page-genericcontentlist-php #main .h3, .page-template-page-genericinfocomplex-php #main .h3, .page-template-archive-php.tag #main .h3, .single-video #main .h3 {
        margin-top: 1.25em; }
    .page-child aside, .tribe-filter-live aside, .search-results.category-recipes aside, .search-no-results.category-recipes aside, .page-template-page-genericthreecolumn-php aside, .page-template-page-genericcontentlist-php aside, .page-template-page-genericinfocomplex-php aside, .page-template-archive-php.tag aside, .single-video aside {
      width: 25.7142857%;
      position: relative;
      float: right;
      padding-left: 2.8571429%;
      background: #fff;
      border-left: 1px solid #e1e6e7;
      margin-top: 4.25em;
      /* padding-bottom: em(20px); */ }
      .page-child aside .topgap, .tribe-filter-live aside .topgap, .search-results.category-recipes aside .topgap, .search-no-results.category-recipes aside .topgap, .page-template-page-genericthreecolumn-php aside .topgap, .page-template-page-genericcontentlist-php aside .topgap, .page-template-page-genericinfocomplex-php aside .topgap, .page-template-archive-php.tag aside .topgap, .single-video aside .topgap {
        margin-top: 0.9375em; }
      .page-child aside #featuredBoxes.magazine, .tribe-filter-live aside #featuredBoxes.magazine, .search-results.category-recipes aside #featuredBoxes.magazine, .search-no-results.category-recipes aside #featuredBoxes.magazine, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine, .page-template-archive-php.tag aside #featuredBoxes.magazine, .single-video aside #featuredBoxes.magazine {
        clear: both; }
        .page-child aside #featuredBoxes.magazine .wrap .aContentBox, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox, .single-video aside #featuredBoxes.magazine .wrap .aContentBox {
          float: none;
          clear: both;
          margin: 0px;
          width: 100%; }
          .page-child aside #featuredBoxes.magazine .wrap .aContentBox img, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox img, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox img, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox img, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox img, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox img, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox img, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox img, .single-video aside #featuredBoxes.magazine .wrap .aContentBox img {
            width: 37.5%;
            position: relative;
            float: left; }
          .page-child aside #featuredBoxes.magazine .wrap .aContentBox h1, .page-child aside #featuredBoxes.magazine .wrap .aContentBox .h1, .page-child aside #featuredBoxes.magazine .wrap .aContentBox h2, .page-child aside #featuredBoxes.magazine .wrap .aContentBox .h2, .page-child aside #featuredBoxes.magazine .wrap .aContentBox h3, .page-child aside #featuredBoxes.magazine .wrap .aContentBox .h3, .page-child aside #featuredBoxes.magazine .wrap .aContentBox h4, .page-child aside #featuredBoxes.magazine .wrap .aContentBox .h4, .page-child aside #featuredBoxes.magazine .wrap .aContentBox h5, .page-child aside #featuredBoxes.magazine .wrap .aContentBox .h5, .page-child aside #featuredBoxes.magazine .wrap .aContentBox .text, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox h1, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox .h1, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox h2, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox .h2, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox h3, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox .h3, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox h4, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox .h4, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox h5, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox .h5, .tribe-filter-live aside #featuredBoxes.magazine .wrap .aContentBox .text, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h1, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h1, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h2, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h2, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h3, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h3, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h4, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h4, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h5, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h5, .search-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .text, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h1, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h1, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h2, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h2, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h3, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h3, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h4, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h4, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox h5, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .h5, .search-no-results.category-recipes aside #featuredBoxes.magazine .wrap .aContentBox .text, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox h1, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox .h1, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox h2, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox .h2, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox h3, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox .h3, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox h4, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox .h4, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox h5, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox .h5, .page-template-page-genericthreecolumn-php aside #featuredBoxes.magazine .wrap .aContentBox .text, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox h1, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox .h1, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox h2, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox .h2, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox h3, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox .h3, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox h4, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox .h4, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox h5, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox .h5, .page-template-page-genericcontentlist-php aside #featuredBoxes.magazine .wrap .aContentBox .text, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox h1, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox .h1, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox h2, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox .h2, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox h3, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox .h3, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox h4, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox .h4, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox h5, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox .h5, .page-template-page-genericinfocomplex-php aside #featuredBoxes.magazine .wrap .aContentBox .text, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox h1, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox .h1, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox h2, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox .h2, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox h3, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox .h3, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox h4, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox .h4, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox h5, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox .h5, .page-template-archive-php.tag aside #featuredBoxes.magazine .wrap .aContentBox .text, .single-video aside #featuredBoxes.magazine .wrap .aContentBox h1, .single-video aside #featuredBoxes.magazine .wrap .aContentBox .h1, .single-video aside #featuredBoxes.magazine .wrap .aContentBox h2, .single-video aside #featuredBoxes.magazine .wrap .aContentBox .h2, .single-video aside #featuredBoxes.magazine .wrap .aContentBox h3, .single-video aside #featuredBoxes.magazine .wrap .aContentBox .h3, .single-video aside #featuredBoxes.magazine .wrap .aContentBox h4, .single-video aside #featuredBoxes.magazine .wrap .aContentBox .h4, .single-video aside #featuredBoxes.magazine .wrap .aContentBox h5, .single-video aside #featuredBoxes.magazine .wrap .aContentBox .h5, .single-video aside #featuredBoxes.magazine .wrap .aContentBox .text {
            width: 57.5%;
            margin-left: 5%;
            position: relative;
            float: right; }
      .page-child aside #featuredBoxes, .tribe-filter-live aside #featuredBoxes, .search-results.category-recipes aside #featuredBoxes, .search-no-results.category-recipes aside #featuredBoxes, .page-template-page-genericthreecolumn-php aside #featuredBoxes, .page-template-page-genericcontentlist-php aside #featuredBoxes, .page-template-page-genericinfocomplex-php aside #featuredBoxes, .page-template-archive-php.tag aside #featuredBoxes, .single-video aside #featuredBoxes {
        clear: both; }
        .page-child aside #featuredBoxes .wrap .aContentBox, .tribe-filter-live aside #featuredBoxes .wrap .aContentBox, .search-results.category-recipes aside #featuredBoxes .wrap .aContentBox, .search-no-results.category-recipes aside #featuredBoxes .wrap .aContentBox, .page-template-page-genericthreecolumn-php aside #featuredBoxes .wrap .aContentBox, .page-template-page-genericcontentlist-php aside #featuredBoxes .wrap .aContentBox, .page-template-page-genericinfocomplex-php aside #featuredBoxes .wrap .aContentBox, .page-template-archive-php.tag aside #featuredBoxes .wrap .aContentBox, .single-video aside #featuredBoxes .wrap .aContentBox {
          float: none;
          clear: both;
          margin: 0px;
          width: 100%;
          padding: 1.25em 0;
          border-top: 1px solid #e1e6e7; }
          .page-child aside #featuredBoxes .wrap .aContentBox:first-child, .tribe-filter-live aside #featuredBoxes .wrap .aContentBox:first-child, .search-results.category-recipes aside #featuredBoxes .wrap .aContentBox:first-child, .search-no-results.category-recipes aside #featuredBoxes .wrap .aContentBox:first-child, .page-template-page-genericthreecolumn-php aside #featuredBoxes .wrap .aContentBox:first-child, .page-template-page-genericcontentlist-php aside #featuredBoxes .wrap .aContentBox:first-child, .page-template-page-genericinfocomplex-php aside #featuredBoxes .wrap .aContentBox:first-child, .page-template-archive-php.tag aside #featuredBoxes .wrap .aContentBox:first-child, .single-video aside #featuredBoxes .wrap .aContentBox:first-child {
            padding-top: 0;
            border-top: 0px none; }
          .page-child aside #featuredBoxes .wrap .aContentBox:last-child, .tribe-filter-live aside #featuredBoxes .wrap .aContentBox:last-child, .search-results.category-recipes aside #featuredBoxes .wrap .aContentBox:last-child, .search-no-results.category-recipes aside #featuredBoxes .wrap .aContentBox:last-child, .page-template-page-genericthreecolumn-php aside #featuredBoxes .wrap .aContentBox:last-child, .page-template-page-genericcontentlist-php aside #featuredBoxes .wrap .aContentBox:last-child, .page-template-page-genericinfocomplex-php aside #featuredBoxes .wrap .aContentBox:last-child, .page-template-archive-php.tag aside #featuredBoxes .wrap .aContentBox:last-child, .single-video aside #featuredBoxes .wrap .aContentBox:last-child {
            padding-bottom: 0; }
    .page-child .aFeaturedContentBox.box1, .page-child .aContentBox.box1, .tribe-filter-live .aFeaturedContentBox.box1, .tribe-filter-live .aContentBox.box1, .search-results.category-recipes .aFeaturedContentBox.box1, .search-results.category-recipes .aContentBox.box1, .search-no-results.category-recipes .aFeaturedContentBox.box1, .search-no-results.category-recipes .aContentBox.box1, .page-template-page-genericthreecolumn-php .aFeaturedContentBox.box1, .page-template-page-genericthreecolumn-php .aContentBox.box1, .page-template-page-genericcontentlist-php .aFeaturedContentBox.box1, .page-template-page-genericcontentlist-php .aContentBox.box1, .page-template-page-genericinfocomplex-php .aFeaturedContentBox.box1, .page-template-page-genericinfocomplex-php .aContentBox.box1, .page-template-archive-php.tag .aFeaturedContentBox.box1, .page-template-archive-php.tag .aContentBox.box1, .single-video .aFeaturedContentBox.box1, .single-video .aContentBox.box1 {
      border-top: 0px none; }
    .page-child #reuseDonate .image, .tribe-filter-live #reuseDonate .image, .search-results.category-recipes #reuseDonate .image, .search-no-results.category-recipes #reuseDonate .image, .page-template-page-genericthreecolumn-php #reuseDonate .image, .page-template-page-genericcontentlist-php #reuseDonate .image, .page-template-page-genericinfocomplex-php #reuseDonate .image, .page-template-archive-php.tag #reuseDonate .image, .single-video #reuseDonate .image {
      display: block; }
    .page-child .donationRequest, .tribe-filter-live .donationRequest, .search-results.category-recipes .donationRequest, .search-no-results.category-recipes .donationRequest, .page-template-page-genericthreecolumn-php .donationRequest, .page-template-page-genericcontentlist-php .donationRequest, .page-template-page-genericinfocomplex-php .donationRequest, .page-template-archive-php.tag .donationRequest, .single-video .donationRequest {
      padding-top: 0em; }
      .page-child .donationRequest .text, .tribe-filter-live .donationRequest .text, .search-results.category-recipes .donationRequest .text, .search-no-results.category-recipes .donationRequest .text, .page-template-page-genericthreecolumn-php .donationRequest .text, .page-template-page-genericcontentlist-php .donationRequest .text, .page-template-page-genericinfocomplex-php .donationRequest .text, .page-template-archive-php.tag .donationRequest .text, .single-video .donationRequest .text {
        border-bottom: 1px solid #e1e6e7;
        padding-bottom: 6px;
        margin-bottom: 15px; }
    .page-child aside .finePrint, .tribe-filter-live aside .finePrint, .search-results.category-recipes aside .finePrint, .search-no-results.category-recipes aside .finePrint, .page-template-page-genericthreecolumn-php aside .finePrint, .page-template-page-genericcontentlist-php aside .finePrint, .page-template-page-genericinfocomplex-php aside .finePrint, .page-template-archive-php.tag aside .finePrint, .single-video aside .finePrint {
      padding-bottom: 0px; }
      .page-child aside .finePrint p, .tribe-filter-live aside .finePrint p, .search-results.category-recipes aside .finePrint p, .search-no-results.category-recipes aside .finePrint p, .page-template-page-genericthreecolumn-php aside .finePrint p, .page-template-page-genericcontentlist-php aside .finePrint p, .page-template-page-genericinfocomplex-php aside .finePrint p, .page-template-archive-php.tag aside .finePrint p, .single-video aside .finePrint p {
        font-size: 1em; }
    .page-child #featuredBoxes .wrap,
    .page-child .featuredBoxes .wrap, .tribe-filter-live #featuredBoxes .wrap,
    .tribe-filter-live .featuredBoxes .wrap, .search-results.category-recipes #featuredBoxes .wrap,
    .search-results.category-recipes .featuredBoxes .wrap, .search-no-results.category-recipes #featuredBoxes .wrap,
    .search-no-results.category-recipes .featuredBoxes .wrap, .page-template-page-genericthreecolumn-php #featuredBoxes .wrap,
    .page-template-page-genericthreecolumn-php .featuredBoxes .wrap, .page-template-page-genericcontentlist-php #featuredBoxes .wrap,
    .page-template-page-genericcontentlist-php .featuredBoxes .wrap, .page-template-page-genericinfocomplex-php #featuredBoxes .wrap,
    .page-template-page-genericinfocomplex-php .featuredBoxes .wrap, .page-template-archive-php.tag #featuredBoxes .wrap,
    .page-template-archive-php.tag .featuredBoxes .wrap, .single-video #featuredBoxes .wrap,
    .single-video .featuredBoxes .wrap {
      width: 100%; }
      .page-child #featuredBoxes .wrap .aContentBox,
      .page-child .featuredBoxes .wrap .aContentBox, .tribe-filter-live #featuredBoxes .wrap .aContentBox,
      .tribe-filter-live .featuredBoxes .wrap .aContentBox, .search-results.category-recipes #featuredBoxes .wrap .aContentBox,
      .search-results.category-recipes .featuredBoxes .wrap .aContentBox, .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox,
      .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox, .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox,
      .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox,
      .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox, .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox,
      .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox, .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox,
      .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox, .single-video #featuredBoxes .wrap .aContentBox,
      .single-video .featuredBoxes .wrap .aContentBox {
        display: block;
        width: 30.7692308%;
        position: relative;
        float: left;
        margin-left: 3.8461538%;
        border-bottom: 0px;
        /* reset */
        /* new */ }
        .page-child #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .page-child .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .tribe-filter-live #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .tribe-filter-live .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .search-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .search-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox:nth-child(4n-3), .single-video #featuredBoxes .wrap .aContentBox:nth-child(4n-3),
        .single-video .featuredBoxes .wrap .aContentBox:nth-child(4n-3) {
          margin-left: 3.8461538%; }
        .page-child #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .page-child .featuredBoxes .wrap .aContentBox:nth-child(4n), .tribe-filter-live #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .tribe-filter-live .featuredBoxes .wrap .aContentBox:nth-child(4n), .search-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .search-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(4n), .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(4n), .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox:nth-child(4n), .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox:nth-child(4n), .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox:nth-child(4n), .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox:nth-child(4n), .single-video #featuredBoxes .wrap .aContentBox:nth-child(4n),
        .single-video .featuredBoxes .wrap .aContentBox:nth-child(4n) {
          float: left; }
        .page-child #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .page-child .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .tribe-filter-live #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .tribe-filter-live .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .search-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .search-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox:nth-child(3n-2), .single-video #featuredBoxes .wrap .aContentBox:nth-child(3n-2),
        .single-video .featuredBoxes .wrap .aContentBox:nth-child(3n-2) {
          margin-left: 0%; }
        .page-child #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .page-child .featuredBoxes .wrap .aContentBox:nth-child(3n), .tribe-filter-live #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .tribe-filter-live .featuredBoxes .wrap .aContentBox:nth-child(3n), .search-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .search-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(3n), .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox:nth-child(3n), .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox:nth-child(3n), .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox:nth-child(3n), .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox:nth-child(3n), .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox:nth-child(3n), .single-video #featuredBoxes .wrap .aContentBox:nth-child(3n),
        .single-video .featuredBoxes .wrap .aContentBox:nth-child(3n) {
          float: right; }
        .page-child #featuredBoxes .wrap .aContentBox.pastLimit,
        .page-child .featuredBoxes .wrap .aContentBox.pastLimit, .tribe-filter-live #featuredBoxes .wrap .aContentBox.pastLimit,
        .tribe-filter-live .featuredBoxes .wrap .aContentBox.pastLimit, .search-results.category-recipes #featuredBoxes .wrap .aContentBox.pastLimit,
        .search-results.category-recipes .featuredBoxes .wrap .aContentBox.pastLimit, .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox.pastLimit,
        .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox.pastLimit, .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox.pastLimit,
        .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox.pastLimit, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox.pastLimit,
        .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox.pastLimit, .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox.pastLimit,
        .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox.pastLimit, .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox.pastLimit,
        .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox.pastLimit, .single-video #featuredBoxes .wrap .aContentBox.pastLimit,
        .single-video .featuredBoxes .wrap .aContentBox.pastLimit {
          display: block; }
        .page-child #featuredBoxes .wrap .aContentBox.total2,
        .page-child .featuredBoxes .wrap .aContentBox.total2, .tribe-filter-live #featuredBoxes .wrap .aContentBox.total2,
        .tribe-filter-live .featuredBoxes .wrap .aContentBox.total2, .search-results.category-recipes #featuredBoxes .wrap .aContentBox.total2,
        .search-results.category-recipes .featuredBoxes .wrap .aContentBox.total2, .search-no-results.category-recipes #featuredBoxes .wrap .aContentBox.total2,
        .search-no-results.category-recipes .featuredBoxes .wrap .aContentBox.total2, .page-template-page-genericthreecolumn-php #featuredBoxes .wrap .aContentBox.total2,
        .page-template-page-genericthreecolumn-php .featuredBoxes .wrap .aContentBox.total2, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox.total2,
        .page-template-page-genericcontentlist-php .featuredBoxes .wrap .aContentBox.total2, .page-template-page-genericinfocomplex-php #featuredBoxes .wrap .aContentBox.total2,
        .page-template-page-genericinfocomplex-php .featuredBoxes .wrap .aContentBox.total2, .page-template-archive-php.tag #featuredBoxes .wrap .aContentBox.total2,
        .page-template-archive-php.tag .featuredBoxes .wrap .aContentBox.total2, .single-video #featuredBoxes .wrap .aContentBox.total2,
        .single-video .featuredBoxes .wrap .aContentBox.total2 {
          width: 46.153846154%; }
  /* end page child */
  #reuseDonate .text {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0;
    padding-bottom: 1.4375em;
  }
  #reuseDonate .image {
    width: 48.5714286%;
    position: relative;
    margin-left: 2.8571429%;
    float: right;
  }
  #reuseDonate .image img {
    max-width: 100%;
  }
  #reuseDonate .finePrint {
    clear: both;
  }

  /************** partners **************/
  .page-id-518.page-child .wrapper #main {
    width: 100%;
  }
  .page-id-518.page-child .wrapper aside {
    display: none;
  }

  #partners div {
    clear: both;
    overflow: auto;
  }
  #partners div img {
    float: left;
  }
  #partners div h4, #partners div p {
    margin-left: 180px;
  }

  /*********************
  	DIFFERENCE
  *********************/
  .page-template-page-difference-php .fullSubFeature img, .page-template-page-holiday-php .fullSubFeature img {
    width: 42%;
    padding-left: 1.428571429%;
    padding-right: 1.428571429%;
  }
  .page-template-page-difference-php .fullSubFeature .text, .page-template-page-holiday-php .fullSubFeature .text {
    /* width: 57.142857143%; */
    width: 100%;
  }
  .page-template-page-difference-php #featuredBoxes, .page-template-page-holiday-php #featuredBoxes {
    padding-bottom: 2.1875em;
  }
  .page-template-page-difference-php #featuredBoxes .heading, .page-template-page-holiday-php #featuredBoxes .heading {
    padding-bottom: 0.625em;
  }
  .page-template-page-difference-php #featuredBoxes .heading h1, .page-template-page-difference-php #featuredBoxes .heading .h1, .page-template-page-difference-php #featuredBoxes .heading h2, .page-template-page-difference-php #featuredBoxes .heading .h2, .page-template-page-difference-php #featuredBoxes .heading h3, .page-template-page-difference-php #featuredBoxes .heading .h3, .page-template-page-difference-php #featuredBoxes .heading h4, .page-template-page-difference-php #featuredBoxes .heading .h4, .page-template-page-difference-php #featuredBoxes .heading h5, .page-template-page-difference-php #featuredBoxes .heading .h5, .page-template-page-holiday-php #featuredBoxes .heading h1, .page-template-page-holiday-php #featuredBoxes .heading .h1, .page-template-page-holiday-php #featuredBoxes .heading h2, .page-template-page-holiday-php #featuredBoxes .heading .h2, .page-template-page-holiday-php #featuredBoxes .heading h3, .page-template-page-holiday-php #featuredBoxes .heading .h3, .page-template-page-holiday-php #featuredBoxes .heading h4, .page-template-page-holiday-php #featuredBoxes .heading .h4, .page-template-page-holiday-php #featuredBoxes .heading h5, .page-template-page-holiday-php #featuredBoxes .heading .h5 {
    margin: 0px;
    text-align: center;
  }
  .page-template-page-difference-php #featuredBoxes .heading p, .page-template-page-holiday-php #featuredBoxes .heading p {
    font-size: 1.25em;
    text-align: center;
  }
  .page-template-page-difference-php .aFeaturedContentBox.box1, .page-template-page-difference-php .aContentBox.box1, .page-template-page-holiday-php .aFeaturedContentBox.box1, .page-template-page-holiday-php .aContentBox.box1 {
    border-top: 0px none;
  }
  .page-template-page-difference-php #subFeaturedBoxes, .page-template-page-holiday-php #subFeaturedBoxes {
    padding: 2.1875em 0 0.9375em 0;
  }
  .page-template-page-difference-php #subFeaturedBoxes .heading, .page-template-page-holiday-php #subFeaturedBoxes .heading {
    padding-bottom: 0em;
  }
  .page-template-page-difference-php #subFeaturedBoxes .heading h1, .page-template-page-difference-php #subFeaturedBoxes .heading .h1, .page-template-page-difference-php #subFeaturedBoxes .heading h2, .page-template-page-difference-php #subFeaturedBoxes .heading .h2, .page-template-page-difference-php #subFeaturedBoxes .heading h3, .page-template-page-difference-php #subFeaturedBoxes .heading .h3, .page-template-page-difference-php #subFeaturedBoxes .heading h4, .page-template-page-difference-php #subFeaturedBoxes .heading .h4, .page-template-page-difference-php #subFeaturedBoxes .heading h5, .page-template-page-difference-php #subFeaturedBoxes .heading .h5, .page-template-page-holiday-php #subFeaturedBoxes .heading h1, .page-template-page-holiday-php #subFeaturedBoxes .heading .h1, .page-template-page-holiday-php #subFeaturedBoxes .heading h2, .page-template-page-holiday-php #subFeaturedBoxes .heading .h2, .page-template-page-holiday-php #subFeaturedBoxes .heading h3, .page-template-page-holiday-php #subFeaturedBoxes .heading .h3, .page-template-page-holiday-php #subFeaturedBoxes .heading h4, .page-template-page-holiday-php #subFeaturedBoxes .heading .h4, .page-template-page-holiday-php #subFeaturedBoxes .heading h5, .page-template-page-holiday-php #subFeaturedBoxes .heading .h5 {
    margin: 0px;
  }
  .page-template-page-difference-php #subFeaturedBoxes .heading p, .page-template-page-holiday-php #subFeaturedBoxes .heading p {
    font-size: 1.25em;
  }
  .page-template-page-difference-php #subFeaturedBoxes .wrap, .page-template-page-holiday-php #subFeaturedBoxes .wrap {
    width: 93.75%;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea, .page-template-page-holiday-php #subFeaturedBoxes .boxArea {
    width: 48.571428571%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea:nth-child(2n-1), .page-template-page-holiday-php #subFeaturedBoxes .boxArea:nth-child(2n-1) {
    margin-left: 0px;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea:nth-child(2n), .page-template-page-holiday-php #subFeaturedBoxes .boxArea:nth-child(2n) {
    float: right;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox {
    float: none;
    width: 100%;
    margin: 0;
    padding-bottom: 1.25em;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox img, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox img {
    width: 48.0392157%;
    height: inherit;
    max-height: none;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h1, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h1, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h2, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h2, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h3, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h3, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h4, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h4, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h5, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h5, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox p, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h1, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h1, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h2, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h2, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h3, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h3, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h4, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h4, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h5, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h5, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox p, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox span {
    margin-left: 3.9215686%;
    width: 45.098039216%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h1 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h1 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h2 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h2 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h3 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h3 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h4 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h4 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h5 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h5 span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox p span, .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox span span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h1 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h1 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h2 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h2 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h3 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h3 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h4 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h4 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox h5 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .h5 span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox p span, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox span span {
    padding-right: 0em;
    margin-left: 0px;
    width: 100%;
    display: inline;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox p, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox p {
    padding-bottom: 0px;
  }
  .page-template-page-difference-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .textLink, .page-template-page-holiday-php #subFeaturedBoxes .boxArea .aFeaturedContentBox .textLink {
    display: block;
  }
  .page-template-page-difference-php #charity, .page-template-page-holiday-php #charity {
    overflow: auto;
    padding: 0.9375em 0 3.4375em 0;
  }
  .page-template-page-difference-php #charity .heading, .page-template-page-holiday-php #charity .heading {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 0em;
  }
  .page-template-page-difference-php #charity .heading h1, .page-template-page-difference-php #charity .heading .h1, .page-template-page-difference-php #charity .heading h2, .page-template-page-difference-php #charity .heading .h2, .page-template-page-difference-php #charity .heading h3, .page-template-page-difference-php #charity .heading .h3, .page-template-page-difference-php #charity .heading h4, .page-template-page-difference-php #charity .heading .h4, .page-template-page-difference-php #charity .heading h5, .page-template-page-difference-php #charity .heading .h5, .page-template-page-holiday-php #charity .heading h1, .page-template-page-holiday-php #charity .heading .h1, .page-template-page-holiday-php #charity .heading h2, .page-template-page-holiday-php #charity .heading .h2, .page-template-page-holiday-php #charity .heading h3, .page-template-page-holiday-php #charity .heading .h3, .page-template-page-holiday-php #charity .heading h4, .page-template-page-holiday-php #charity .heading .h4, .page-template-page-holiday-php #charity .heading h5, .page-template-page-holiday-php #charity .heading .h5 {
    margin: 0px;
  }
  .page-template-page-difference-php #charity .heading p, .page-template-page-holiday-php #charity .heading p {
    font-size: 1.25em;
  }
  .page-template-page-difference-php #charity .acharity, .page-template-page-holiday-php #charity .acharity {
    padding: 0px;
    margin-top: 1.25em;
    width: 31.4285714%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-difference-php #charity .acharity:nth-child(3n-2), .page-template-page-difference-php #charity .acharity .charity1, .page-template-page-holiday-php #charity .acharity:nth-child(3n-2), .page-template-page-holiday-php #charity .acharity .charity1 {
    margin-left: 0px;
  }
  .page-template-page-difference-php #charity .acharity:nth-child(3n), .page-template-page-difference-php #charity .acharity .charity3, .page-template-page-holiday-php #charity .acharity:nth-child(3n), .page-template-page-holiday-php #charity .acharity .charity3 {
    float: right;
  }

  .page-template-page-holiday-php #featuredBoxes .aContentBox:nth-child(4n+1) {
    clear: left;
    margin-left: 0px;
  }
  .page-template-page-holiday-php #featuredBoxes .aContentBox.pastLimit {
    margin-top: 20px;
  }

  .fullSubFeature.simpleContentAreawImage .text {
    width: 45%;
  }
  .fullSubFeature.simpleContentAreawImage img {
    width: 40%;
    padding: 0px;
    margin: 40px 2.8571429% 40px 0;
  }

  /************** Children **************/
  .page-id-2269 #featuredBoxes .row, .page-id-2269 .featuredBoxes .row, .page-id-2271 #featuredBoxes .row, .page-id-2271 .featuredBoxes .row, .page-id-2273 #featuredBoxes .row, .page-id-2273 .featuredBoxes .row, .page-template-page-genericcontentlist-php #featuredBoxes .row, .page-template-page-genericcontentlist-php .featuredBoxes .row {
    margin: 0px;
  }
  .page-id-2269 #featuredBoxes .wrap .aContentBox, .page-id-2271 #featuredBoxes .wrap .aContentBox, .page-id-2273 #featuredBoxes .wrap .aContentBox, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox {
    width: 100%;
    float: none;
    margin: 0px;
    padding-bottom: 1.875em;
    border-bottom: 1px solid #e1e6e7;
    margin-bottom: 1.875em;
  }
  .page-id-2269 #featuredBoxes .wrap .aContentBox img, .page-id-2271 #featuredBoxes .wrap .aContentBox img, .page-id-2273 #featuredBoxes .wrap .aContentBox img, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox img {
    width: 30.7692%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-id-2269 #featuredBoxes .wrap .aContentBox h1, .page-id-2269 #featuredBoxes .wrap .aContentBox .h1, .page-id-2269 #featuredBoxes .wrap .aContentBox h2, .page-id-2269 #featuredBoxes .wrap .aContentBox .h2, .page-id-2269 #featuredBoxes .wrap .aContentBox h3, .page-id-2269 #featuredBoxes .wrap .aContentBox .h3, .page-id-2269 #featuredBoxes .wrap .aContentBox h4, .page-id-2269 #featuredBoxes .wrap .aContentBox .h4, .page-id-2269 #featuredBoxes .wrap .aContentBox h5, .page-id-2269 #featuredBoxes .wrap .aContentBox .h5, .page-id-2269 #featuredBoxes .wrap .aContentBox .text, .page-id-2271 #featuredBoxes .wrap .aContentBox h1, .page-id-2271 #featuredBoxes .wrap .aContentBox .h1, .page-id-2271 #featuredBoxes .wrap .aContentBox h2, .page-id-2271 #featuredBoxes .wrap .aContentBox .h2, .page-id-2271 #featuredBoxes .wrap .aContentBox h3, .page-id-2271 #featuredBoxes .wrap .aContentBox .h3, .page-id-2271 #featuredBoxes .wrap .aContentBox h4, .page-id-2271 #featuredBoxes .wrap .aContentBox .h4, .page-id-2271 #featuredBoxes .wrap .aContentBox h5, .page-id-2271 #featuredBoxes .wrap .aContentBox .h5, .page-id-2271 #featuredBoxes .wrap .aContentBox .text, .page-id-2273 #featuredBoxes .wrap .aContentBox h1, .page-id-2273 #featuredBoxes .wrap .aContentBox .h1, .page-id-2273 #featuredBoxes .wrap .aContentBox h2, .page-id-2273 #featuredBoxes .wrap .aContentBox .h2, .page-id-2273 #featuredBoxes .wrap .aContentBox h3, .page-id-2273 #featuredBoxes .wrap .aContentBox .h3, .page-id-2273 #featuredBoxes .wrap .aContentBox h4, .page-id-2273 #featuredBoxes .wrap .aContentBox .h4, .page-id-2273 #featuredBoxes .wrap .aContentBox h5, .page-id-2273 #featuredBoxes .wrap .aContentBox .h5, .page-id-2273 #featuredBoxes .wrap .aContentBox .text, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h1, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h1, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h2, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h2, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h3, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h3, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h4, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h4, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h5, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h5, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .text {
    width: 58.974358974%;
    position: relative;
    float: left;
    margin-left: 3.846153846%;
  }
  .page-id-2269 #featuredBoxes .wrap .aContentBox.last, .page-id-2271 #featuredBoxes .wrap .aContentBox.last, .page-id-2273 #featuredBoxes .wrap .aContentBox.last, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox.last {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .page-id-2269 #featuredBoxes .wrap .aContentBox h1, .page-id-2269 #featuredBoxes .wrap .aContentBox .h1, .page-id-2269 #featuredBoxes .wrap .aContentBox h2, .page-id-2269 #featuredBoxes .wrap .aContentBox .h2, .page-id-2269 #featuredBoxes .wrap .aContentBox h3, .page-id-2269 #featuredBoxes .wrap .aContentBox .h3, .page-id-2269 #featuredBoxes .wrap .aContentBox h4, .page-id-2269 #featuredBoxes .wrap .aContentBox .h4, .page-id-2269 #featuredBoxes .wrap .aContentBox h5, .page-id-2269 #featuredBoxes .wrap .aContentBox .h5, .page-id-2271 #featuredBoxes .wrap .aContentBox h1, .page-id-2271 #featuredBoxes .wrap .aContentBox .h1, .page-id-2271 #featuredBoxes .wrap .aContentBox h2, .page-id-2271 #featuredBoxes .wrap .aContentBox .h2, .page-id-2271 #featuredBoxes .wrap .aContentBox h3, .page-id-2271 #featuredBoxes .wrap .aContentBox .h3, .page-id-2271 #featuredBoxes .wrap .aContentBox h4, .page-id-2271 #featuredBoxes .wrap .aContentBox .h4, .page-id-2271 #featuredBoxes .wrap .aContentBox h5, .page-id-2271 #featuredBoxes .wrap .aContentBox .h5, .page-id-2273 #featuredBoxes .wrap .aContentBox h1, .page-id-2273 #featuredBoxes .wrap .aContentBox .h1, .page-id-2273 #featuredBoxes .wrap .aContentBox h2, .page-id-2273 #featuredBoxes .wrap .aContentBox .h2, .page-id-2273 #featuredBoxes .wrap .aContentBox h3, .page-id-2273 #featuredBoxes .wrap .aContentBox .h3, .page-id-2273 #featuredBoxes .wrap .aContentBox h4, .page-id-2273 #featuredBoxes .wrap .aContentBox .h4, .page-id-2273 #featuredBoxes .wrap .aContentBox h5, .page-id-2273 #featuredBoxes .wrap .aContentBox .h5, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h1, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h1, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h2, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h2, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h3, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h3, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h4, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h4, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox h5, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox .h5 {
    margin-bottom: 0.9375em;
    text-transform: inherit;
    font-size: 1.25em;
    font-weight: normal;
    padding-top: 0px;
  }
  .page-id-2269 #featuredBoxes .wrap .aContentBox span.textLink, .page-id-2271 #featuredBoxes .wrap .aContentBox span.textLink, .page-id-2273 #featuredBoxes .wrap .aContentBox span.textLink, .page-template-page-genericcontentlist-php #featuredBoxes .wrap .aContentBox span.textLink {
    margin-top: 0.9375em;
  }

  .page-template-page-genericinfocomplex-php .wrap .wrapper {
    padding-bottom: 1.25em;
  }

  .page-template-page-differencecontent-php .articlehead,
  .page-template-page-nourishcontent-php .articlehead,
  .page-template-page-genericinfocomplex-php .articlehead {
    /* overflow: auto; */
    clear: both;
    margin: 0 0 0 2.8571429%;
    padding-right: 2.8571429%;
    border-bottom: 1px solid #e1e6e7;
  }
  .page-template-page-differencecontent-php .articlehead .pageTitle,
  .page-template-page-nourishcontent-php .articlehead .pageTitle,
  .page-template-page-genericinfocomplex-php .articlehead .pageTitle {
    padding-top: 1.5em;
    font-size: 2.125em;
  }
  .page-template-page-differencecontent-php .articlehead #simpleContentArea,
  .page-template-page-nourishcontent-php .articlehead #simpleContentArea,
  .page-template-page-genericinfocomplex-php .articlehead #simpleContentArea {
    display: inline-block;
    padding-bottom: 0.625em;
  }
  .page-template-page-differencecontent-php .articlehead #simpleContentArea p,
  .page-template-page-nourishcontent-php .articlehead #simpleContentArea p,
  .page-template-page-genericinfocomplex-php .articlehead #simpleContentArea p {
    font-size: 1.25em;
  }
  .page-template-page-differencecontent-php .articlehead .innerWrap,
  .page-template-page-nourishcontent-php .articlehead .innerWrap,
  .page-template-page-genericinfocomplex-php .articlehead .innerWrap {
    width: 100%;
  }
  .page-template-page-differencecontent-php.page-child aside, .page-template-page-differencecontent-php aside,
  .page-template-page-nourishcontent-php.page-child aside,
  .page-template-page-nourishcontent-php aside,
  .page-template-page-genericinfocomplex-php.page-child aside,
  .page-template-page-genericinfocomplex-php aside {
    padding-top: 0em;
    margin-top: 1.875em;
  }
  .page-template-page-differencecontent-php.page-child aside #simpleSideArea .subTitle, .page-template-page-differencecontent-php aside #simpleSideArea .subTitle,
  .page-template-page-nourishcontent-php.page-child aside #simpleSideArea .subTitle,
  .page-template-page-nourishcontent-php aside #simpleSideArea .subTitle,
  .page-template-page-genericinfocomplex-php.page-child aside #simpleSideArea .subTitle,
  .page-template-page-genericinfocomplex-php aside #simpleSideArea .subTitle {
    padding-top: 0em;
  }
  .page-template-page-differencecontent-php.page-child aside #simpleSideArea img, .page-template-page-differencecontent-php aside #simpleSideArea img,
  .page-template-page-nourishcontent-php.page-child aside #simpleSideArea img,
  .page-template-page-nourishcontent-php aside #simpleSideArea img,
  .page-template-page-genericinfocomplex-php.page-child aside #simpleSideArea img,
  .page-template-page-genericinfocomplex-php aside #simpleSideArea img {
    float: none;
    padding-right: 0%;
  }
  .page-template-page-differencecontent-php.page-child #main, .page-template-page-differencecontent-php #main,
  .page-template-page-nourishcontent-php.page-child #main,
  .page-template-page-nourishcontent-php #main,
  .page-template-page-genericinfocomplex-php.page-child #main,
  .page-template-page-genericinfocomplex-php #main {
    padding-top: 1.875em;
    padding-bottom: 3.125em;
  }
  .page-template-page-differencecontent-php #getNewsletter,
  .page-template-page-nourishcontent-php #getNewsletter,
  .page-template-page-genericinfocomplex-php #getNewsletter {
    margin-top: 0px;
    background: #f4f1ee;
    margin-bottom: 1.25em;
    padding: 1.25em;
  }
  .page-template-page-differencecontent-php #featuredBoxes.magazine,
  .page-template-page-nourishcontent-php #featuredBoxes.magazine,
  .page-template-page-genericinfocomplex-php #featuredBoxes.magazine {
    background: #fff;
    padding: 1.875em 0 0 0;
    border-top: 1px solid #e1e6e7;
  }
  .page-template-page-differencecontent-php #featuredBoxes.magazine .h3,
  .page-template-page-nourishcontent-php #featuredBoxes.magazine .h3,
  .page-template-page-genericinfocomplex-php #featuredBoxes.magazine .h3 {
    float: left;
  }
  .page-template-page-differencecontent-php .featuredBoxesouterWrap,
  .page-template-page-nourishcontent-php .featuredBoxesouterWrap,
  .page-template-page-genericinfocomplex-php .featuredBoxesouterWrap {
    border-top: 1px solid #e1e6e7;
    padding-top: 1.25em;
    clear: both;
  }
  .page-template-page-differencecontent-php #textChunks p:last-child,
  .page-template-page-nourishcontent-php #textChunks p:last-child,
  .page-template-page-genericinfocomplex-php #textChunks p:last-child {
    padding-bottom: 1.53846em;
  }
  .page-template-page-nourishcontent-php.page-child #main {
    padding-bottom: 0px;
  }
  .page-template-page-nourishcontent-php .headerIcon {
    padding-left: 0px;
    padding-top: 50px;
  }
  .page-template-page-nourishcontent-php .pageTitle {
    width: auto;
    position: relative;
    float: none;
    margin-left: 0%;
    margin-bottom: 0px;
  }
  .page-template-page-nourishcontent-php .headerText {
    width: 80%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-nourishcontent-php .boxArea {
    margin-right: 3.125%;
    margin-left: 3.125%;
  }
  .page-template-page-nourishcontent-php .boxArea .h3 {
    padding-left: 0px;
  }
  .page-template-page-nourishcontent-php .aFeaturedContentBox {
    padding-bottom: 20px;
  }
  .page-template-page-nourishcontent-php #aside1 #getNewsletter {
    margin-top: 0px;
  }
  .page-template-page-nourishcontent-php #aside1 #featuredBoxes {
    border-top: 0px none;
  }
  .page-template-page-nourishcontent-php #aside1 #featuredBoxes .wrap .aContentBox {
    border-top: 0px none;
    padding-top: 0px;
  }
  .page-template-page-nourishcontent-php #infoBlocks h3 {
    padding-left: 0;
  }
  .page-template-page-nourishcontent-php #rainbowBlocks .rainbowHeader p {
    font-size: 20px;
  }
  .page-template-page-nourishcontent-php .subsection .rainbowBlock {
    margin-bottom: 20px;
    padding: 15px 20px;
  }
  .page-template-page-nourishcontent-php .subsection .rainbowTitle {
    padding-left: 20px;
  }
  .page-template-page-nourishcontent-php .rainbowBlock .examples {
    width: 39.7435897%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-nourishcontent-php .rainbowBlock .nutrients {
    width: 19.2307692%;
    position: relative;
    float: left;
    margin-left: 3.8461538%;
  }
  .page-template-page-nourishcontent-php .rainbowBlock .supports {
    width: 30.7692308%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-differencecontent-php #featuredBoxes,
  .page-template-page-genericinfocomplex-php #featuredBoxes {
    background: #f4f1ee;
    padding: 1.25em;
  }
  .page-template-page-differencecontent-php #featuredBoxes .contentHeader .h3,
  .page-template-page-genericinfocomplex-php #featuredBoxes .contentHeader .h3 {
    text-align: left;
    font-size: 1.25em;
    margin-bottom: 0.9375em;
  }
  .page-template-page-differencecontent-php #featuredBoxes .contentHeader p,
  .page-template-page-genericinfocomplex-php #featuredBoxes .contentHeader p {
    font-size: 0.8125em;
    text-align: left;
    margin-bottom: 0.9375em;
  }
  .page-template-page-differencecontent-php #featuredBoxes.magazine .h4,
  .page-template-page-genericinfocomplex-php #featuredBoxes.magazine .h4 {
    margin-top: -2px;
    padding-top: 0px;
  }

  /************** Farm **************/
  .page-template-page-farm-php #main {
    padding-top: 1.875em;
    padding-bottom: 1.25em;
    margin-bottom: 1.875em;
    background: #fff;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .page-template-page-farm-php #aside1 {
    margin-top: 1.875em;
  }
  .page-template-page-farm-php #text .headline {
    font-size: 1.25em;
    margin: 1.25em 0 1em 0;
  }
  .page-template-page-farm-php #subhead {
    font-size: 1.25em;
    margin-top: -0.5em;
  }
  .page-template-page-farm-php #farmInfo {
    padding: 1.875em 1.25em 0em 1.25em;
  }
  .page-template-page-farm-php .articlehead {
    /* overflow: auto; */
    clear: both;
    margin: 0 0 0 2.8571429%;
    padding-right: 2.8571429%;
    border-bottom: 1px solid #e1e6e7;
  }
  .page-template-page-farm-php .pageTitle {
    padding-top: 1.5em;
    font-size: 2.125em;
  }
  .page-template-page-farm-php #simpleContentArea {
    display: inline-block;
    padding-bottom: 0.625em;
  }
  .page-template-page-farm-php #simpleContentArea p {
    font-size: 1.25em;
  }
  .page-template-page-farm-php .innerWrap {
    width: 100%;
  }

  /*********************
  	Shop Online
  *********************/
  .page-template-page-shoponline-php #no_zip_msg:after {
    margin-left: 72px;
  }
  .page-template-page-shoponline-php #no_zip_msg:before {
    margin-left: 69px;
  }
  .page-template-page-shoponline-php .formwrap {
    position: relative;
  }
  .page-template-page-shoponline-php div#no_zip_msg {
    position: absolute;
    top: 102px;
    /*
    		left: -1.5%;
    		width: 50%;
    */
  }
  .page-template-page-shoponline-php #content .wrap {
    max-width: none;
  }
  .page-template-page-shoponline-php .fullSubFeature .innerWrap,
  
  .page-template-page-shoponline-php #subFeaturedBoxes .innerWrap {
    width: 93.75%;
    max-width: 1050px;
    margin: 0 auto; }
  .page-template-page-shoponline-php #featuredBoxes .innerWrap {
	 width: 93.75%;
    max-width: 780px;
    margin: 0 auto; }
  .page-template-page-shoponline-php .formwrap label {
    display: block;
    text-align: center;
    padding-bottom: 0.5em;
    font-size: 1.25em; }
  .page-template-page-shoponline-php .fullSubFeature {
/*     height: 245px; */
    height: 311px;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  .page-template-page-shoponline-php .fullSubFeature .innerWrap h2 {
    text-align: center;
    padding-top: 1.25em;
    margin-bottom: 10px;
    font-size: 2.125em;
  }
  .page-template-page-shoponline-php .fullSubFeature #homeDelivery {
    width: 47.0588235%;
    position: relative;
    float: right;
    margin-left: 5.8823529%;
  }
  .page-template-page-shoponline-php .fullSubFeature #homeDelivery .submitWrap {
    padding-top: 16px;
  }
  .page-template-page-shoponline-php .fullSubFeature #drivethru {
    width: 47.0588235%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-shoponline-php #subFeaturedBoxes {
    background: #fff;
  }
  .page-template-page-shoponline-php .forms {
    width: 48.5714286%;
    max-width: 510px;
    margin: 0 auto;
    text-align: center; }
  .page-template-page-shoponline-php #featuredBoxes .heading, .page-template-page-shoponline-php #subFeaturedBoxes .heading {
    margin-top: 0em;
  }
  .page-template-page-shoponline-php #featuredBoxes .h3, .page-template-page-shoponline-php #subFeaturedBoxes .h3 {
    font-size: 2.125em;
    text-align: center;
    margin-bottom: 0.73529em;
  }
  .page-template-page-shoponline-php #featuredBoxes .aContentBox, .page-template-page-shoponline-php #subFeaturedBoxes .aContentBox {
	width: 30.7692308%;
	margin-left: 3.8461538%;
    padding-bottom: 1.5625em; }
     .page-template-page-shoponline-php #featuredBoxes .aContentBox:nth-child(3n-2), .page-template-page-shoponline-php #subFeaturedBoxes .aContentBox:nth-child(3n-2) {
	margin-left: 0%; }
    .page-template-page-shoponline-php #featuredBoxes .aContentBox .h4, .page-template-page-shoponline-php #subFeaturedBoxes .aContentBox .h4 {
      padding-left: 0px;
      padding-right: 0px;
      padding-top: 0.625em;
      display: block; }
      .page-template-page-shoponline-php #featuredBoxes .aContentBox .h4:after, .page-template-page-shoponline-php #subFeaturedBoxes .aContentBox .h4:after {
        /*
        					font-family: 'icomoon';
        					content: "\00a0\e602";
        					margin-left: 0px;
        					position: relative;
        					top: 1px;
        					font-size: 13px;
        */ }
/*
    .page-template-page-shoponline-php #featuredBoxes .aContentBox .textLink, .page-template-page-shoponline-php #subFeaturedBoxes .aContentBox .textLink {
      display: none; }
*/
  .page-template-page-shoponline-php #subFeaturedBoxes .innerWrap {
    padding: 30px 0px 20px 0px;
  }

  .page-template-page-shoponline-old-php {
    	/*
    #menu-item-67 a {
    			border-left: 1px solid $text-color-light;
    	}
    */
  }
  .page-template-page-shoponline-old-php #content {
    background: white;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI0NCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmNGYxZWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, white 44%, #f4f1ee 50%);
    background: -webkit-gradient(linear, left top, right top, color-stop(44%, white), color-stop(50%, #f4f1ee));
    background: -webkit-linear-gradient(left, white 44%, #f4f1ee 50%);
    background: -o-linear-gradient(left, white 44%, #f4f1ee 50%);
    background: -ms-linear-gradient(left, white 44%, #f4f1ee 50%);
    background: linear-gradient(to right, white 44%, #f4f1ee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f1ee',GradientType=1 );
  }
  .page-template-page-shoponline-old-php #main {
    background: #fff;
    width: 77.142857143%;
    position: relative;
    float: left;
    margin-left: 0%;
    padding-right: 2.8571429%;
    padding-left: 2.8571429%;
    padding-bottom: 3.25em;
  }
  .page-template-page-shoponline-old-php #main .fullSubFeature {
    box-shadow: none;
    border-bottom: 1px solid #e1e6e7;
    padding-bottom: 1.875em;
  }
  .page-template-page-shoponline-old-php #main .fullSubFeature .innerWrap {
    width: 100%;
  }
  .page-template-page-shoponline-old-php #featuredBoxes .heading {
    margin-bottom: 1.25em;
  }
  .page-template-page-shoponline-old-php #featuredBoxes .heading .h3 {
    margin-bottom: 0px;
  }
  .page-template-page-shoponline-old-php #featuredBoxes .heading p {
    font-size: 1.25em;
  }
  .page-template-page-shoponline-old-php .aContentBox {
    width: 30.769230769%;
    margin-left: 3.846153846%;
  }
  .page-template-page-shoponline-old-php .aContentBox:first-child {
    margin-left: 0%;
  }
  .page-template-page-shoponline-old-php #otherStuff {
    width: 22.857142857%;
    position: relative;
    float: right;
    margin-left: 0%;
    padding-left: 2.8571429%;
    padding-right: 2.8571429%;
    margin-top: 1.375em;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes {
    background: transparent;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes .aFeaturedContentBox {
    float: none;
    width: 100%;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes .aFeaturedContentBox img {
    display: block;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes .aFeaturedContentBox p {
    width: 100%;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes .aFeaturedContentBox .h4 {
    display: none;
    font-size: 1.25em;
    margin-bottom: 0.75em;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes .aFeaturedContentBox div {
    width: 100%;
  }
  .page-template-page-shoponline-old-php .wrapper {
    position: relative;
    position: relative;
    overflow: auto;
  }
  .page-template-page-shoponline-old-php .decorativeimage {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    height: 310px;
    width: 51.428571429%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    /* border: 1px solid #f00; */
  }

  /*********************
  	OUR STORES
  *********************/
  #featuredBoxes, featuredBoxes {
    padding-top: 14px;
  }
  #featuredBoxes p, featuredBoxes p {
    padding: 0 0 0.1875em 0;
  }

  .findAStore {
    position: relative;
    margin-top: -25px;
  }
  .findAStore .text {
    width: 48.571428572%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .findAStore .text h2.h3 {
    font-size: 2.125em;
  }
  .findAStore .text p {
    font-size: 20px;
    letter-spacing: -0.020em;
  }
  .findAStore #zipSearch {
    margin-top: 3.875em;
    border-left: 1px solid #e1e6e7;
    width: 34.285714257%;
    position: relative;
    float: left;
    padding-left: 2.857142857%;
    margin-left: 2.857142857%;
  }
  .findAStore #zipSearch h3 {
    font-size: 1.25em;
    margin-bottom: 0.625em;
  }
  .findAStore #zipSearch #zipFeild {
    display: inline-block;
    width: 50%;
    float: left;
  }
  .findAStore #zipSearch #submit-button {
    float: left;
    line-height: 40px;
    padding: 0px 12px;
    font-weight: 600;
  }
  .findAStore .allStoresLink {
    margin-top: 7em;
    width: 14.2857143%;
    position: relative;
    float: right;
    margin-left: 0;
    text-align: center;
    padding-top: 0px;
  }

  .page-template-page-child-php #getNewsletter, .page-template-page-genericthreecolumn-php #getNewsletter, .page-template-page-genericcontentlist-php #getNewsletter {
    border-bottom: 1px solid #e1e6e7;
    width: 100%;
    padding-left: 0px;
    margin-bottom: 1.25em;
  }
  .page-template-page-child-php #getNewsletter h2, .page-template-page-genericthreecolumn-php #getNewsletter h2, .page-template-page-genericcontentlist-php #getNewsletter h2 {
    display: block;
    width: 31.4285714%;
    margin-left: 0%;
    position: relative;
    float: left;
    padding-right: 0px;
  }
  .page-template-page-child-php #getNewsletter form#signUpForm, .page-template-page-genericthreecolumn-php #getNewsletter form#signUpForm, .page-template-page-genericcontentlist-php #getNewsletter form#signUpForm {
    display: block;
    width: 65.7142857%;
    margin-left: 2.857142857%;
    position: relative;
    float: left;
  }
  .page-template-page-child-php #getNewsletter div#senderInfo, .page-template-page-genericthreecolumn-php #getNewsletter div#senderInfo, .page-template-page-genericcontentlist-php #getNewsletter div#senderInfo {
    display: inline;
  }
  .page-template-page-child-php #getNewsletter input#email, .page-template-page-genericthreecolumn-php #getNewsletter input#email, .page-template-page-genericcontentlist-php #getNewsletter input#email {
    display: inline;
    width: 80%;
  }
  .page-template-page-child-php #featuredBoxes, .page-template-page-genericthreecolumn-php #featuredBoxes, .page-template-page-genericcontentlist-php #featuredBoxes {
    clear: both;
  }

  .page-child.page-template-page-findstore-php #main {
    width: 100%;
    padding: 0px;
    background: #f4f1ee;
  }

  .page-template-page-ourstores-php #featuredBoxes h2.h3,
  .page-template-page-ourstores-php .featuredBoxes h2.h3 {
    padding-bottom: 0.625em;
  }

  .page-template-page-ourstores-php #eventsBanner {
    /* border-top: 1px solid $border-color; */
    padding-top: 1.875em;
    margin-bottom: 0em;
    padding-bottom: 2.5em;
    overflow: auto;
  }
  .page-template-page-ourstores-php #eventsBanner #theEvents {
    width: 74.2857143%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-ourstores-php #eventsBanner .sideArea {
    width: 25.7142858%;
    position: relative;
    float: right;
    padding-left: 2.8571429%;
    margin-top: 2.5em;
    border-left: 1px solid #e1e6e7;
    border-top: 0px none;
    padding-top: 0px;
  }
  .page-template-page-ourstores-php #eventsBanner .sideArea h3 {
    font-size: 1.25em;
    max-width: 180px;
  }
  .page-template-page-ourstores-php #eventsBanner .eventsBannerText {
    border-bottom: none 0px;
  }
  .page-template-page-ourstores-php #eventsBanner .eventsBannerText p {
    font-size: 1.25em;
    max-width: 33.25em;
  }
  .page-template-page-ourstores-php #eventsBanner h2 {
    font-size: 2.125em;
    font-weight: normal;
  }
  .page-template-page-ourstores-php #eventsBanner .eventButton {
    border: none 0px;
    clear: both;
  }
  .page-template-page-ourstores-php #eventsBanner .anEvent {
    border-bottom: 0px none;
    border-left: 1px solid #e1e6e7;
    width: 34.6153846%;
    position: relative;
    float: left;
    /* margin-left: 03.8461538%; */
    padding-left: 3.8461538%;
  }
  .page-template-page-ourstores-php #eventsBanner .anEvent:first-child {
    width: 30.7692308%;
    padding-left: 0%;
    border: 0px none;
  }

  /************** Pharmacies **************/
  .page-id-774 .wrapper #main, .page-id-778 .wrapper #main, .page-id-784 .wrapper #main, .page-id-1606 .wrapper #main, .page-id-5532 .wrapper #main, .fullmain .wrapper #main, .page-id-2269 .wrapper #main, .page-id-2271 .wrapper #main, .page-id-2273 .wrapper #main, .page-id-227 .wrapper #main, .page-id-2322 .wrapper #main, .page-template-page-genericthreecolumn-php .wrapper #main, .page-template-page-genericcontentlist-php .wrapper #main, .page-template-page-magazines-php .wrapper #main {
    width: 100%;
    padding-right: 0px;
  }
  .page-id-774 .wrapper aside, .page-id-778 .wrapper aside, .page-id-784 .wrapper aside, .page-id-1606 .wrapper aside, .page-id-5532 .wrapper aside, .fullmain .wrapper aside, .page-id-2269 .wrapper aside, .page-id-2271 .wrapper aside, .page-id-2273 .wrapper aside, .page-id-227 .wrapper aside, .page-id-2322 .wrapper aside, .page-template-page-genericthreecolumn-php .wrapper aside, .page-template-page-genericcontentlist-php .wrapper aside, .page-template-page-magazines-php .wrapper aside {
    display: none;
  }
  .page-id-774 .wrapper #simpleContentArea, .page-id-778 .wrapper #simpleContentArea, .page-id-784 .wrapper #simpleContentArea, .page-id-1606 .wrapper #simpleContentArea, .page-id-5532 .wrapper #simpleContentArea, .fullmain .wrapper #simpleContentArea, .page-id-2269 .wrapper #simpleContentArea, .page-id-2271 .wrapper #simpleContentArea, .page-id-2273 .wrapper #simpleContentArea, .page-id-227 .wrapper #simpleContentArea, .page-id-2322 .wrapper #simpleContentArea, .page-template-page-genericthreecolumn-php .wrapper #simpleContentArea, .page-template-page-genericcontentlist-php .wrapper #simpleContentArea, .page-template-page-magazines-php .wrapper #simpleContentArea {
    padding-bottom: 0.75em;
    border-bottom: 1px solid #e1e6e7;
    margin-bottom: 1.25em;
  }
  .page-id-774 .wrapper #simpleContentArea p, .page-id-778 .wrapper #simpleContentArea p, .page-id-784 .wrapper #simpleContentArea p, .page-id-1606 .wrapper #simpleContentArea p, .page-id-5532 .wrapper #simpleContentArea p, .fullmain .wrapper #simpleContentArea p, .page-id-2269 .wrapper #simpleContentArea p, .page-id-2271 .wrapper #simpleContentArea p, .page-id-2273 .wrapper #simpleContentArea p, .page-id-227 .wrapper #simpleContentArea p, .page-id-2322 .wrapper #simpleContentArea p, .page-template-page-genericthreecolumn-php .wrapper #simpleContentArea p, .page-template-page-genericcontentlist-php .wrapper #simpleContentArea p, .page-template-page-magazines-php .wrapper #simpleContentArea p {
    font-size: 1.25em;
  }

  /************** Store Detail **************/
  .page-template-page-storedetail-php .wrap, .page-template-page-kitchen-php .wrap {
    /* max-width: 760px; */
  }
  .page-template-page-storedetail-php #aside1, .page-template-page-kitchen-php #aside1 {
    border-top: 0px none;
    padding-top: 0px;
    margin-top: 4.25em;
  }
  .page-template-page-storedetail-php .inner-wrap, .page-template-page-kitchen-php .inner-wrap {
    width: 100%;
  }
  .page-template-page-storedetail-php .wrapper, .page-template-page-kitchen-php .wrapper {
    background: #fff;
    width: 77.1428572%;
    position: relative;
    float: right;
    padding-left: 2.8571429%;
    padding-bottom: 1.875em;
  }
  .page-template-page-storedetail-php .wrapper #main, .page-template-page-kitchen-php .wrapper #main {
    width: 66.6666667%;
    padding-left: 0px;
    padding-right: 2.8571429%;
  }
  .page-template-page-storedetail-php .wrapper aside, .page-template-page-kitchen-php .wrapper aside {
    width: 32.4867725%;
  }
  .page-template-page-storedetail-php .wrapper #eventsBanner, .page-template-page-kitchen-php .wrapper #eventsBanner {
    clear: both;
    width: 100%;
  }
  .page-template-page-storedetail-php .services div, .page-template-page-kitchen-php .services div {
    width: 43.75%;
    position: relative;
    float: left;
    margin-left: 6.25%;
  }
  .page-template-page-storedetail-php .services div:first-child, .page-template-page-kitchen-php .services div:first-child {
    margin-left: 0px;
  }
  .page-template-page-storedetail-php .services div:nth-child(2n), .page-template-page-kitchen-php .services div:nth-child(2n) {
    float: right;
  }
  .page-template-page-storedetail-php .services div:nth-child(2n-1), .page-template-page-kitchen-php .services div:nth-child(2n-1) {
    width: 50%;
    margin-left: 0px;
  }
  .page-template-page-storedetail-php #hours, .page-template-page-kitchen-php #hours {
    border-bottom: 0px none;
    margin-bottom: 0.9375em;
  }
  .page-template-page-storedetail-php #hours .shop, .page-template-page-kitchen-php #hours .shop {
    border-bottom: 1px solid #e1e6e7;
    margin-bottom: 1.25em;
  }
  .page-template-page-storedetail-php #hours .shop:last-child, .page-template-page-kitchen-php #hours .shop:last-child {
    border-bottom: 0px none;
    margin-bottom: 0em;
  }
  .page-template-page-storedetail-php #menubtn, .page-template-page-kitchen-php #menubtn {
    border-bottom: 1px solid #e1e6e7;
    margin-bottom: 1.25em;
  }
  .page-template-page-storedetail-php #menubtn .button, .page-template-page-kitchen-php #menubtn .button {
    margin-top: 0px;
  }
  .page-template-page-storedetail-php #eventsBanner, .page-template-page-kitchen-php #eventsBanner {
    border-top: 1px solid #e1e6e7;
    padding-top: 1.25em;
  }
  .page-template-page-storedetail-php #eventsBanner .eventsBannerText, .page-template-page-kitchen-php #eventsBanner .eventsBannerText {
    border-bottom: none 0px;
  }
  .page-template-page-storedetail-php #eventsBanner h2, .page-template-page-kitchen-php #eventsBanner h2 {
    font-size: 1.875em;
  }
  .page-template-page-storedetail-php #eventsBanner h3.h4, .page-template-page-kitchen-php #eventsBanner h3.h4 {
    font-size: 0.8125em;
  }
  .page-template-page-storedetail-php #eventsBanner .eventButton, .page-template-page-kitchen-php #eventsBanner .eventButton {
    border: none 0px;
  }
  .page-template-page-storedetail-php #eventsBanner .anEvent, .page-template-page-kitchen-php #eventsBanner .anEvent {
    border: none 0px;
    width: 30.7692308%;
    position: relative;
    float: left;
    margin-left: 3.8461538%;
  }
  .page-template-page-storedetail-php #eventsBanner .anEvent:first-child, .page-template-page-kitchen-php #eventsBanner .anEvent:first-child {
    margin-left: 0%;
  }

  /************** Kitchen **************/
  .quote blockquote p {
    font-size: 20px;
  }

  .page-template-page-kitchen-php #contentArea img {
    margin-bottom: 1.25em;
  }

  /************** Events **************/
  .tribe-filter-live #banner {
    display: block;
  }
  .tribe-filter-live #subNavigation {
    padding-top: 3.4375em;
    padding-bottom: 3.125em;
  }
  .tribe-filter-live #subNavigation .menu {
    display: block;
  }
  .tribe-filter-live #subNavigation .backLink {
    display: none;
  }
  .tribe-filter-live #subNavigation .page_item.page-item-782 a {
    color: #31a288;
  }
  .tribe-filter-live .wrapper #main {
    width: 100%;
    min-height: 500px;
  }
  .tribe-filter-live .wrapper #main .hentry {
    padding-left: 0px;
    padding-right: 0px;
    padding: 20px 0;
  }
  .tribe-filter-live #tribe_events_filters_wrapper, .tribe-filter-live .tribe-events-before-html {
    width: 100%;
  }
  .tribe-filter-live .tribe-events-event-meta {
    margin-bottom: 0px;
    display: inline;
  }
  .tribe-filter-live .tribe-events-event-meta .author {
    display: inline;
  }
  .tribe-filter-live .tribe-events-event-meta .author .tribe-events-venue-details {
    display: inline;
  }
  .tribe-filter-live .time-details {
    display: inline;
  }
  .tribe-filter-live .tribe-events-filters-group-heading {
    margin-top: 1.11111em;
  }
  .tribe-filter-live .datebox {
    background: #2a3133;
    color: #b9c2c8;
    width: 7.692307692%;
    position: relative;
    float: left;
    margin-left: 0%;
    border-radius: 6px;
    text-align: center;
    font-size: 0.6875em;
    padding: 1.18182em 2px;
    text-transform: uppercase;
    font-weight: 700;
  }
  .tribe-filter-live .datebox b {
    display: none;
  }
  .tribe-filter-live .tribe-events-loop {
    margin-top: 0.625em;
  }
  .tribe-filter-live .event-text {
    padding-left: 0px;
    padding-right: 0px;
    width: 76.923076923%;
    position: relative;
    float: left;
    margin-left: 3.846153846%;
  }
  .tribe-filter-live .event-text:after {
    content: "";
    padding-right: 0px;
  }
  .tribe-filter-live .tribe-events-list-event-title {
    margin-top: 0px;
  }
  .tribe-filter-live .costbox {
    width: 7.692307692%;
    position: relative;
    float: right;
    margin-left: 3.846153846%;
  }
  .tribe-filter-live .tribe-events-event-cost {
    padding-left: 0px;
  }
  .tribe-filter-live .tribe-events-event-cost:before {
    content: "";
    padding-right: 0px;
  }
  .tribe-filter-live .newVeiwLinks {
    margin-top: 2.5em;
    display: block;
  }
  .tribe-filter-live .newVeiwLinks a {
    font-size: 0.8125em;
    font-weight: 600;
  }
  .tribe-filter-live.events-gridview .newVeiwMonth {
    display: none;
  }
  .tribe-filter-live.events-gridview .newVeiwList {
    display: block;
    background: transparent url(../images/events/icon-list.png) no-repeat left center;
    padding-left: 1.53846em;
  }
  .tribe-filter-live.events-gridview .tribe-events-page-title {
    display: block;
    top: 0.76923em;
  }
  .tribe-filter-live.events-gridview #tribe-events-header {
    border-radius: 6px 6px 0px 0px;
  }
  .tribe-filter-live.events-gridview .tribe-events-nav-previous,
  .tribe-filter-live.events-gridview .tribe-events-nav-next {
    min-width: 40px;
  }
  .tribe-filter-live.events-list .newVeiwList {
    display: none;
  }
  .tribe-filter-live.events-list .newVeiwMonth {
    display: none;
    background: transparent url(../images/events/icon-month.png) no-repeat left center;
    padding-left: 1.53846em;
  }

  .single-tribe_events .tribe-events-meta-group-venue {
    width: 29.4117647%;
    position: relative;
    float: left;
    margin-left: 0%;
    border-right: 1px solid #e1e6e7;
  }
  .single-tribe_events .tribe-events-meta-group-details {
    width: 64.7058824%;
    position: relative;
    float: left;
    margin-left: 5.8823529%;
  }
  .single-tribe_events .tribe-events-meta-group-details .dateMetaGroup {
    width: 45.4545455%;
    position: relative;
    float: left;
    margin-left: 0%;
    border-right: 1px solid #e1e6e7;
  }
  .single-tribe_events .tribe-events-meta-group-details .dateMetaGroup dd {
    margin-bottom: 0px;
  }
  .single-tribe_events .tribe-events-meta-group-details .timeMetaGroup {
    width: 45.4545455%;
    position: relative;
    float: left;
    margin-left: 9.0909091%;
  }
  .single-tribe_events .sidebarEventStuff {
    width: 100%;
  }

  /*********************
  	SAVINGS AND DEALS
  *********************/
  .page-template-page-savingsanddeals-php .finePrint .wrap, .page-template-page-circular-php .finePrint .wrap {
    border-top: 1px solid #e1e6e7;
    padding: 1.25em 0;
  }
  .page-template-page-savingsanddeals-php .finePrint .wrap p, .page-template-page-circular-php .finePrint .wrap p {
    width: 95%;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature, .page-template-page-circular-php .fullSubFeature {
    padding-bottom: 10px;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .wrap, .page-template-page-circular-php .fullSubFeature .wrap {
    width: 93.75%;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .wrap .innerWrap, .page-template-page-circular-php .fullSubFeature .wrap .innerWrap {
    width: 100%;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature #thisWeekDeals .textLink, .page-template-page-circular-php .fullSubFeature #thisWeekDeals .textLink {
    display: inline-block;
    padding-left: 5px;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .gotoweb, .page-template-page-circular-php .fullSubFeature .gotoweb {
    display: block;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .button.gotoweb, .page-template-page-circular-php .fullSubFeature .button.gotoweb {
    display: inline-block;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .gotopdf, .page-template-page-circular-php .fullSubFeature .gotopdf {
    display: none;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .aBox, .page-template-page-circular-php .fullSubFeature .aBox {
    clear: none;
    overflow: inherit;
    border-bottom: 0px none;
    padding: 2.5em 0 0 0;
    width: 48.571428571%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature .aBox#thisWeekDeals, .page-template-page-circular-php .fullSubFeature .aBox#thisWeekDeals {
    margin-left: 0%;
  }
  .page-template-page-savingsanddeals-php .fullSubFeature img, .page-template-page-circular-php .fullSubFeature img {
    padding-top: 0px;
  }
    .page-template-page-savingsanddeals-php .fullSubFeature .text .h4, .page-template-page-circular-php .fullSubFeature .text .h4 {
/*       margin-top: 0.14706em; */

/*       font-size: 2.125em; */
		font-size: 28px;

 }
    .page-template-page-savingsanddeals-php .fullSubFeature .text p, .page-template-page-circular-php .fullSubFeature .text p {
      padding-bottom: 10px; }
  .page-template-page-savingsanddeals-php #getNewsletter h2, .page-template-page-circular-php #getNewsletter h2 {
    display: block;
    width: 31.428571429%;
    margin-left: 17.142857143%;
    position: relative;
    float: left;
  }
  .page-template-page-savingsanddeals-php #getNewsletter form#signUpForm, .page-template-page-circular-php #getNewsletter form#signUpForm {
    display: block;
    width: 31.428571429%;
    margin-left: 2.857142857%;
    position: relative;
    float: left;
  }
  .page-template-page-savingsanddeals-php #getNewsletter div#senderInfo, .page-template-page-circular-php #getNewsletter div#senderInfo {
    display: inline;
  }
  .page-template-page-savingsanddeals-php #getNewsletter input#email, .page-template-page-circular-php #getNewsletter input#email {
    display: inline;
    width: 70%;
  }

  .page-template-page-dealsgrid-php.page-child .wrapper #main {
    width: 100%;
    padding-right: 0px;
  }

  .page-template-page-dealsgrid-php #simpleContentArea {
    margin-top: -0.625em;
  }
  .page-template-page-dealsgrid-php #simpleContentArea p {
    font-size: 1.25em;
  }

  .page-template-page-dealsgrid-php #main {
    padding-top: 1.875em;
  }
  .page-template-page-dealsgrid-php .articlehead {
    background-repeat: no-repeat;
    background-position: 95% bottom;
    /* overflow: auto; */
    clear: both;
    margin: 0 0 0 2.8571429%;
    padding-right: 2.8571429%;
    border-bottom: 1px solid #e1e6e7;
  }
  .page-template-page-dealsgrid-php .articlehead .pageTitle {
    padding-top: 1.5em;
    font-size: 2.125em;
  }
  .page-template-page-dealsgrid-php .articlehead #simpleContentArea {
    display: inline-block;
    padding-bottom: 0.625em;
  }
  .page-template-page-dealsgrid-php .articlehead #simpleContentArea p {
    font-size: 1.25em;
    max-width: 400px;
  }
  .page-template-page-dealsgrid-php .articlehead .innerWrap {
    width: 100%;
  }

  #dealsGrid .aContentBox {
    width: 30.769230769%;
    margin-left: 3.846153846%;
    border: 0 none;
    margin-bottom: 1.875em;
  }
  #dealsGrid .aContentBox:first-child {
    margin-left: 0px;
  }
  #dealsGrid .aContentBox .dealwrap {
    display: table;
    width: 100%;
    vertical-align: middle;
  }
  #dealsGrid .aContentBox .text {
    width: 43.75%;
    display: block;
    vertical-align: inherit;
    padding-left: 0em;
    position: relative;
    float: right;
    padding-top: 0.625em;
  }
  #dealsGrid .aContentBox .h4 {
    font-size: 1.25em;
    line-height: inherit;
  }
  #dealsGrid .aContentBox .imageWrap {
    margin-left: 0%;
    width: 50%;
    padding: 0em;
    display: block;
    vertical-align: inherit;
    position: relative;
    float: left;
  }
  #dealsGrid .aContentBox .badge {
    height: 60px;
    width: 60px;
    right: 0px;
  }

  /************** savings content **************/
  .page-template-page-savingscontent-php .articlehead {
    /* overflow: auto; */
    clear: both;
    margin: 0 0 0 2.8571429%;
    padding-right: 2.8571429%;
    border-bottom: 1px solid #e1e6e7;
  }
  .page-template-page-savingscontent-php .articlehead .pageTitle {
    padding-top: 1.5em;
    font-size: 2.125em;
  }
  .page-template-page-savingscontent-php .articlehead #simpleContentArea {
    display: inline-block;
    padding-bottom: 0.625em;
  }
  .page-template-page-savingscontent-php .articlehead #simpleContentArea p {
    font-size: 1.25em;
  }
  .page-template-page-savingscontent-php .articlehead .innerWrap {
    width: 100%;
  }

  /************** mobile deals **************/
  .page-id-2567 #main {
    padding-top: 1.875em;
    padding-bottom: 1.25em;
    margin-bottom: 1.875em;
    background: #fff;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .page-id-2567 #aside1 {
    margin-top: 2.5em;
  }
  .page-id-2567 #simpleSideArea {
    padding: 1.25em 1.25em 0.625em 1.25em;
  }
  .page-id-2567 .finePrint .wrap {
    width: 100%;
  }
  .page-id-2567 #appDownloads {
    margin: 20px 0px 30px 0px;
    width: 100%;
  }

  .page-id-2567.page-child aside {
    border: 0px none;
    width: 33.333333333%;
    padding-right: 3.703703704%;
    padding-left: 3.703703704%;
  }

  .page-id-2567.page-child .wrapper #main {
    width: 66.666666667%;
    padding-right: 0px;
    padding-left: 3.703703704%;
  }

  /*********************
  	circular
  *********************/
  .page-template-page-circular-php .main-container {
    padding-top: 0px;
  }

  .page-template-page-circular-php .mainFlyerContentCol, .page-template-page-circular-php .itemDesc {
    width: 65.7142857%;
    position: relative;
    float: left;
    margin-left: 0%;
  }

  .page-template-page-circular-php .shoppinglistCol {
    width: 31.4285714%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
    padding-top: 50px;
  }

  .gmodal .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .gmodal .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .gmodal .modal-sm {
    width: 300px;
  }

  .page-template-page-circular-php .manageListSection .addOwnItem {
    width: 65.7142857%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-circular-php .manageListSection .printEmailNewgroup {
    width: 31.4285714%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-circular-php .manageListSection .QuantityThing .col-md-4 {
    width: 31.4285714%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-circular-php .manageListSection .QuantityThing .col-md-8 {
    width: 65.7142857%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }

  .emailMyShoppingList .cancelAndSend .button {
    width: inherit;
    margin-left: 10px;
  }

  .MyShoppingListWrap {
    padding-top: 50px;
  }

  .printMyList {
    max-width: 1100px;
    padding-top: 50px;
  }
  .printMyList .printMyListHeader {
    padding-left: 15px;
    padding-right: 15px;
  }
  .printMyList .printMyListBody {
    margin-bottom: 50px;
    overflow: hidden;
  }
  .printMyList .printButton {
    position: absolute;
    top: 0;
    right: 0;
    width: inherit;
  }
  .printMyList .col-md-6.col-xs-6.itemInfo.printCouponCategory {
    width: 50%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }

  /*********************
  	ABOUT US
  *********************/
  #simpleContentArea p img {
    margin: 0.75em 0 0.75em 0;
  }
  #simpleContentArea p:first-child img {
    margin-top: 0px;
  }

  /*********************
  	recipes and expertise
  *********************/
  .page-template-page-recipesandexpertise-php #featuredContent .wrap {
    position: relative;
  }
  .page-template-page-recipesandexpertise-php #featuredContent .wrap .button {
    margin-top: 0.625em;
    position: absolute;
    top: 0;
    right: 0;
  }
  .page-template-page-recipesandexpertise-php #featuredContent .wrap .box5, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box9, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box13, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box17, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box21, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box25, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box29, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box33 {
    clear: both;
  }
  .page-template-page-recipesandexpertise-php .featuredBoxes .wrap {
    /* width: 100%; */
  }
  .page-template-page-recipesandexpertise-php .featuredBoxes .contentHeader {
    text-align: left;
  }
  .page-template-page-recipesandexpertise-php .featuredBoxes .aContentBox {
    display: block;
    width: 100%;
  }
  .page-template-page-recipesandexpertise-php .featuredBoxes .aContentBox img {
    width: 47.254901961%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-recipesandexpertise-php .featuredBoxes .aContentBox .text {
    width: 47.254901961%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
  }
  .page-template-page-recipesandexpertise-php #featuredContent .gallery__controls-next, .page-template-page-recipesandexpertise-php #featuredContent .gallery__controls-prev {
    top: 52px;
  }
  .page-template-page-recipesandexpertise-php #magazinesAndGuides #magazines .aContentBox {
    padding: 0%;
    border: 0px none;
  }

  #howToAndAsk {
    overflow: auto;
    clear: both;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
  }

  #howtoVideos {
    width: 49.523809524%;
    position: relative;
    float: left;
    margin-left: 0%;
    border-right: 1px solid #e1e6e7;
  }
  #howtoVideos .h3 {
    margin-top: -5px;
    padding-top: 0px;
    margin-bottom: 25px;
    line-height: 1em;
  }
  #howtoVideos .row {
    margin-bottom: 0px;
  }
  #howtoVideos img {
    width: 46.153846154%;
  }
  #howtoVideos .text, #howtoVideos .h4 {
    margin-left: 0px;
    width: 50.576923077%;
    padding-right: 25px;
    float: right;
  }

  #AskOurExperts {
    width: 48.571428571%;
    position: relative;
    float: right;
    margin-left: 0%;
  }
  #AskOurExperts .h3 {
    margin-top: -5px;
    padding-top: 0px;
    margin-bottom: 25px;
    line-height: 1em;
  }
  #AskOurExperts .row {
    margin-bottom: 0px;
  }
  #AskOurExperts img {
    width: 47.058823529%;
  }
  #AskOurExperts .text, #AskOurExperts .h4 {
    margin-left: 0px;
    width: 49.411764706%;
    padding-right: 25px;
    float: right;
  }

  #magazines {
    width: 74.2857143%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  #magazines .wrap {
    width: 100%;
  }
  #magazines .aContentBox {
    display: block;
    width: 42.564102564%;
  }
  #magazines .aContentBox img {
    width: auto;
    max-width: 100%;
    border-radius: 0px;
  }
  #magazines .aContentBox .text, #magazines .aContentBox .h4 {
    width: 60.606060606%;
    float: right;
  }
  #magazines .aContentBox:nth-child(2n) {
    width: 46.153846154%;
  }
  #magazines .h3 {
    margin-top: -12px;
    padding-top: 0px;
    margin-bottom: 25px;
  }
  #magazines .row {
    margin-bottom: 0px;
  }

  #magazinesAndGuides {
    padding-top: 2.5em;
    padding-bottom: 3.75em;
  }

  #listofGuides {
    width: 25.714285714%;
    position: relative;
    float: right;
    padding-left: 1.759259259%;
    border-left: 1px solid #e1e6e7;
  }
  #listofGuides h2 {
    /* letter-spacing: -0.006em; */
    margin-top: -15px;
    padding-top: 0px;
    margin-bottom: 15px;
  }

  /************** ask an expert **************/
  .page-template-page-askexpert-php .articlehead {
    clear: both;
    margin: 0 2.8571429%;
    border-bottom: 1px solid #e1e6e7;
  }
  .page-template-page-askexpert-php .articlehead .pageTitle {
    font-size: 2.125em;
    padding-top: 0px;
  }
  .page-template-page-askexpert-php .articlehead .text {
    display: inline-block;
    width: 60%;
    padding-top: 2.8125em;
    padding-bottom: 0.625em;
  }
  .page-template-page-askexpert-php .articlehead .text p {
    font-size: 1.25em;
  }
  .page-template-page-askexpert-php .articlehead .imgArea {
    width: 39%;
    display: inline-block;
    vertical-align: bottom;
  }
  .page-template-page-askexpert-php .articlehead img {
    margin: 0 auto;
    display: block;
  }
  .page-template-page-askexpert-php #main {
    margin-top: 0px;
    padding-top: 2.5em;
    min-height: 0px;
  }
  .page-template-page-askexpert-php #aside1 {
    margin-top: 1.875em;
  }
  .page-template-page-askexpert-php #aside1 #thePhoneNumber h3 {
    margin-top: 0.55556em;
  }
  .page-template-page-askexpert-php form {
    margin-bottom: -0.125em;
  }
  .page-template-page-askexpert-php #aside1 {
    padding-top: 0em;
  }

  /************** How-to Videos **************/
  .page-template-page-videolist-php.page-child #subNavigation li ul.children {
    display: none;
  }
  .page-template-page-videolist-php .articlehead {
    overflow: auto;
    clear: both;
    padding-top: 3.4375em;
    margin: 0 2.8571429%;
  }
  .page-template-page-videolist-php .articlehead .pageTitle {
    font-size: 2.125em;
    padding-top: 0px;
  }
  .page-template-page-videolist-php .articlehead p {
    font-size: 1.25em;
  }
  .page-template-page-videolist-php .wrapper #main {
    padding-top: 0em;
    width: 70.37037037%;
  }
  .page-template-page-videolist-php .wrapper #aside1 {
    padding-top: 0em;
    margin-top: 2.5em;
    width: 29.62962963%;
    padding-left: 3.703703704%;
    margin-bottom: 2.5em;
  }
  .page-template-page-videolist-php #featuredBoxes .wrap .aContentBox {
    display: block;
    width: 47.058823529%;
    margin-left: 5.882352941;
  }
  .page-template-page-videolist-php #featuredBoxes .wrap .aContentBox:first-child {
    margin-left: 0px;
  }
  .page-template-page-videolist-php .videoListTitle {
    font-size: 1.25em;
    margin-top: -0.3em;
  }

  .page-template-page-videosingle-php.page-child #subNavigation li ul.children {
    display: none;
  }

  /************** magazines **************/
  .page-id-1606 #featuredBoxes .aContentBox, .page-id-5532 #featuredBoxes .aContentBox, .page-template-page-magazines-php #featuredBoxes .aContentBox {
    display: block;
    padding: 0px;
  }
  .page-id-1606 #featuredBoxes .aContentBox .imgLink, .page-id-5532 #featuredBoxes .aContentBox .imgLink, .page-template-page-magazines-php #featuredBoxes .aContentBox .imgLink {
    width: 100%;
  }
  .page-id-1606 #featuredBoxes .aContentBox img, .page-id-5532 #featuredBoxes .aContentBox img, .page-template-page-magazines-php #featuredBoxes .aContentBox img {
    float: left;
    width: auto;
    max-width: 100%;
    border-radius: 0px;
  }
  .page-id-1606 #featuredBoxes .aContentBox .h4, .page-id-5532 #featuredBoxes .aContentBox .h4, .page-template-page-magazines-php #featuredBoxes .aContentBox .h4 {
    padding-left: 1.53846em;
  }
  .page-id-1606 #featuredBoxes .aContentBox .text, .page-id-5532 #featuredBoxes .aContentBox .text, .page-template-page-magazines-php #featuredBoxes .aContentBox .text {
    padding-left: 1.25em;
    float: left;
    width: 60.606060606%;
  }
  .page-id-1606 #listsOfLinks, .page-id-5532 #listsOfLinks, .page-template-page-magazines-php #listsOfLinks {
    padding-top: 0px;
  }
  .page-id-1606 .aListOfLinks, .page-id-5532 .aListOfLinks, .page-template-page-magazines-php .aListOfLinks {
    width: 46.1538%;
    margin-left: 3.84615%;
    position: relative;
    float: left;
  }
  .page-id-1606 .aListOfLinks:nth-child(2n-1), .page-id-5532 .aListOfLinks:nth-child(2n-1), .page-template-page-magazines-php .aListOfLinks:nth-child(2n-1) {
    margin-left: 0px;
  }
  .page-id-1606 .aListOfLinks ul, .page-id-5532 .aListOfLinks ul, .page-template-page-magazines-php .aListOfLinks ul {
    padding-right: 1.875em;
  }

  /************** Graphs **************/
  .page-template-page-graphs-php .wrapper h1, .page-template-page-graphs-php .wrapper .h1, .page-template-page-graphs-php .wrapper h2, .page-template-page-graphs-php .wrapper .h2, .page-template-page-graphs-php .wrapper h3, .page-template-page-graphs-php .wrapper .h3, .page-template-page-graphs-php .wrapper h4, .page-template-page-graphs-php .wrapper .h4, .page-template-page-graphs-php .wrapper h5, .page-template-page-graphs-php .wrapper .h5 {
    padding: 0px;
  }
  .page-template-page-graphs-php .wrapper .tableHeader {
    padding-left: 8px;
  }
  .page-template-page-graphs-php .wrapper #main {
    width: 100%;
  }
  .page-template-page-graphs-php .wrapper aside {
    display: none;
  }
  .page-template-page-graphs-php .wrapper #topLink {
    margin-left: 0px;
  }
  .page-template-page-graphs-php .wrapper #textChunks p {
    padding-left: 0em;
  }

  /************** recipes list **************/
  .page-template-page-recipes-php .pageTitle {
    padding-left: 0%;
    padding-right: 0%;
  }

  .wpurp-recipe-grid-container {
    width: 69.230769231%;
    position: relative;
    float: left;
    margin-left: 0%;
    border-right: 1px solid #e1e6e7;
    padding-right: 3.846153846%;
  }
  .wpurp-recipe-grid-container .recipe-card {
    padding-left: 0;
    padding-right: 0;
  }

  .wpurp-recipe-grid-filter-box {
    /*
    	width: 28.205128205%;
    	position: relative;
    	float: right;
    	margin-left: 2.564102564%;
    */
    padding: 0px;
    padding-right: 2.85714%;
  }
  .wpurp-recipe-grid-filter-box .search {
    /* padding-right: em(20px); */
    padding-bottom: 1.875em;
  }

  /************** NEW recipes list **************/
  .page-template-page-recipes-php .pageTitle {
    padding-left: 0%;
    padding-right: 0%;
  }

  .wpupg-grid {
    width: 69.230769231%;
    position: relative;
    float: left;
    margin-left: 0%;
    border-right: 1px solid #e1e6e7;
    padding-right: 3.846153846%;
  }
  .wpupg-grid a .wpupg-item {
    padding-left: 0;
    padding-right: 0;
  }

  .recipe-browse-search {
    width: 28.205128205%;
    position: relative;
    float: right;
    margin-left: 2.564102564%;
    padding: 0px;
    padding-right: 2.85714%;
  }
  .recipe-browse-search .search {
    /* padding-right: em(20px); */
    padding-bottom: 1.875em;
  }

  /************** single recipes **************/
  .post.type-recipe .print-recipe {
    margin-top: 0em;
    margin-bottom: 1.25em;
    float: none;
  }
  .post.type-recipe .ssba {
    padding-top: 0em;
    float: none;
  }

  .single-recipe article, .single-post article {
    width: 100%;
  }
  .single-recipe #main .entry-content, .single-post #main .entry-content {
    padding-bottom: 3.125em;
  }

  .single-recipe .ssba img, .single-post .ssba img {
    padding: 0px;
    margin-right: 0.375em;
  }
  .single-recipe .entry-title.single-title, .single-post .entry-title.single-title {
    font-size: 2.125em;
  }
  .single-recipe #content, .single-post #content {
    background: #f4f1ee;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZGZhZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f4f1ee), color-stop(50%, #ffffff));
    background: -webkit-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
    background: -o-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
    background: -ms-linear-gradient(left, #f4f1ee 50%, #ffffff 50%);
    background: linear-gradient(to right, #f4f1ee 50%, #ffffff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='f4f1ee', endColorstr='#ffffff',GradientType=1 );
  }
  .single-recipe .wrapper, .single-post .wrapper {
    background: #fff;
    overflow: auto;
  }
  .single-recipe .article-header, .single-post .article-header {
    width: 66.666666667%;
    /* 48.5714286+2.8571429 */
    padding: 3.4375em 3.7037% 1.375em 3.7037%;
    margin-bottom: 0px;
  }
  .single-recipe #subNavigation, .single-post #subNavigation {
    width: 22.8571429%;
    position: relative;
    float: left;
    margin-left: 0;
    padding-right: 2.8571429%;
  }
  .single-recipe #innermain, .single-post #innermain {
    width: 66.666666667%;
    /* 48.5714286+2.8571429 */
    position: relative;
    float: left;
    padding: 0 3.703703704%;
  }
  .single-recipe #innermain .subTitle, .single-post #innermain .subTitle {
    margin-top: -15px;
  }
  .single-recipe #innermain .pageTitle, .single-post #innermain .pageTitle {
    font-size: 2.125em;
    margin-bottom: 0.625em;
  }
  .single-recipe .recipe-instructions li, .single-post .recipe-instructions li {
    margin-bottom: 1.25em;
  }
  .single-recipe aside, .single-post aside {
    width: 33.333333333%;
    position: relative;
    float: right;
    padding-left: 3.703703704%;
    background: #fff;
    border-left: 1px solid #e1e6e7;
    /* margin-top: em(68px); */
    padding-bottom: 1.25em;
  }
  .single-recipe aside .topgap, .single-post aside .topgap {
    margin-top: 0.9375em;
  }
  .single-recipe .recipeNotes, .single-recipe .videoArea, .single-recipe .finePrint, .single-post .recipeNotes, .single-post .videoArea, .single-post .finePrint {
    clear: both;
    overflow: auto;
    border-top: 1px solid #e1e6e7;
    width: 100%;
    padding: 0 3.703703704% 0 3.703703704%;
  }
  .single-recipe .recipeNotes .recipe-notes, .single-recipe .videoArea .recipe-notes, .single-recipe .finePrint .recipe-notes, .single-post .recipeNotes .recipe-notes, .single-post .videoArea .recipe-notes, .single-post .finePrint .recipe-notes {
    width: 62.962963%;
  }
  .single-recipe .finePrint, .single-post .finePrint {
    padding-top: 1.25em;
  }
  .single-recipe .videoArea, .single-post .videoArea {
    padding-top: 0.625em;
  }
  .single-recipe #main h3.ingredients, .single-post #main h3.ingredients {
    margin-top: 1.25em;
  }
  .single-recipe #innermain, .single-post #innermain {
    padding-bottom: 0.625em;
  }
  .single-recipe #subNavigation, .single-post #subNavigation {
    padding-top: 3.4375em;
    padding-bottom: 3.125em;
  }
  .single-recipe #innermain, .single-post #innermain {
    min-height: 37.5em;
  }
  .single-recipe #banner, .single-post #banner {
    display: block;
  }
  .single-recipe #subNavigation, .single-post #subNavigation {
    /* end .menu ul li */
    /* highlight current page */
  }
  .single-recipe #subNavigation ul.menu, .single-post #subNavigation ul.menu {
    display: block;
  }
  .single-recipe #subNavigation .backLink, .single-post #subNavigation .backLink {
    display: none;
  }
  .single-recipe #subNavigation li, .single-post #subNavigation li {
    padding: 0.5em 0px;
    border-top: 1px solid #e1e6e7;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .single-recipe #subNavigation li a, .single-post #subNavigation li a {
    font-size: 0.8125em;
    font-weight: 600;
  }
  .single-recipe #subNavigation li:first-child, .single-post #subNavigation li:first-child {
    border-top: 0px none;
  }
  .single-recipe #subNavigation li ul.sub-menu,
  .single-recipe #subNavigation li ul.children, .single-post #subNavigation li ul.sub-menu,
  .single-post #subNavigation li ul.children {
    margin-top: 0.5em;
    display: none;
    border-top: 1px solid #e1e6e7;
    /* highlight sub-menu current page */
  }
  .single-recipe #subNavigation li ul.sub-menu li,
  .single-recipe #subNavigation li ul.children li, .single-post #subNavigation li ul.sub-menu li,
  .single-post #subNavigation li ul.children li {
    padding-left: 10px;
  }
  .single-recipe #subNavigation li ul.sub-menu li a:hover, .single-recipe #subNavigation li ul.sub-menu li a:focus,
  .single-recipe #subNavigation li ul.children li a:hover,
  .single-recipe #subNavigation li ul.children li a:focus, .single-post #subNavigation li ul.sub-menu li a:hover, .single-post #subNavigation li ul.sub-menu li a:focus,
  .single-post #subNavigation li ul.children li a:hover,
  .single-post #subNavigation li ul.children li a:focus {
    color: #31a288;
  }
  .single-recipe #subNavigation li:hover > ul, .single-post #subNavigation li:hover > ul {
    top: auto;
    visibility: visible;
  }
  .single-recipe #subNavigation li.current-menu-item ul.children,
  .single-recipe #subNavigation li.current_page_item ul.children,
  .single-recipe #subNavigation li.current_page_ancestor ul.children, .single-post #subNavigation li.current-menu-item ul.children,
  .single-post #subNavigation li.current_page_item ul.children,
  .single-post #subNavigation li.current_page_ancestor ul.children {
    display: block;
  }
  .single-recipe #subNavigation li.current-menu-item a,
  .single-recipe #subNavigation li.current_page_item a, .single-post #subNavigation li.current-menu-item a,
  .single-post #subNavigation li.current_page_item a {
    color: #31a288;
  }
  .single-recipe #subNavigation li.current-menu-item li a,
  .single-recipe #subNavigation li.current_page_item li a, .single-post #subNavigation li.current-menu-item li a,
  .single-post #subNavigation li.current_page_item li a {
    color: #2a3133;
  }
  .single-recipe #subNavigation li.page-item-712 ul.children li, .single-post #subNavigation li.page-item-712 ul.children li {
    display: none;
  }
  .single-recipe #subNavigation li.page-item-712 ul.children li.current_page_item, .single-post #subNavigation li.page-item-712 ul.children li.current_page_item {
    display: block;
    border: 0px;
    padding-bottom: 0px;
  }

  /************** search results **************/
  .search-results .resultText, .search-no-results .resultText, .page-template-archive-php .resultText {
    width: 70.588235294%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .search-results .resultLink, .search-no-results .resultLink, .page-template-archive-php .resultLink {
    width: 29.411764706%;
    position: relative;
    float: right;
    margin-left: 0%;
    margin-top: 1.875em;
  }
  .search-results .resultLink a, .search-no-results .resultLink a, .page-template-archive-php .resultLink a {
    float: right;
    display: inline-block;
    position: relative;
    text-decoration: none;
    /* color: $white; */
    /* font-size: 0.9em; */
    font-size: 0.8125em;
    line-height: 40px;
    font-weight: 600;
    padding: 0 24px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    -webkit-transition: background-color 0.14s ease-in-out;
    transition: background-color 0.14s ease-in-out;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #31a288;
  }
  .search-results .resultLink a .viewType, .search-no-results .resultLink a .viewType, .page-template-archive-php .resultLink a .viewType {
    display: none;
  }
  .search-results .resultLink a:hover, .search-results .resultLink a:focus, .search-no-results .resultLink a:hover, .search-no-results .resultLink a:focus, .page-template-archive-php .resultLink a:hover, .page-template-archive-php .resultLink a:focus {
    background-color: #2c927b;
  }
  .search-results .resultLink a:active, .search-no-results .resultLink a:active, .page-template-archive-php .resultLink a:active {
    background-color: #2b8e78;
  }
  .search-results .resultLink a:after, .search-no-results .resultLink a:after, .page-template-archive-php .resultLink a:after {
    content: "";
  }
  .search-results .hasImage .resultImage, .search-no-results .hasImage .resultImage, .page-template-archive-php .hasImage .resultImage {
    width: 29.411764706%;
    float: left;
  }
  .search-results .hasImage .resultText, .search-no-results .hasImage .resultText, .page-template-archive-php .hasImage .resultText {
    width: 35.294117647%;
    float: left;
    margin-left: 5.882352941%;
  }
  .search-results .hasImage .resultLink, .search-no-results .hasImage .resultLink, .page-template-archive-php .hasImage .resultLink {
    width: 17.647058824%;
    float: right;
    margin-top: 5.5em;
  }
  .search-results #oss-results .oss-result, .search-no-results #oss-results .oss-result, .page-template-archive-php #oss-results .oss-result {
    padding: 20px 0px 0px;
  }

  /********** Just recipes */
  .search-results.category-recipes .pageTitle, .search-no-results.category-recipes .pageTitle, .page-template-archive-php .pageTitle {
    margin-top: 55px;
    margin-bottom: 0px;
  }
  .search-results.category-recipes .pageTitle h2, .search-no-results.category-recipes .pageTitle h2, .page-template-archive-php .pageTitle h2 {
    margin-bottom: 0px;
  }
  .search-results.category-recipes #content, .search-no-results.category-recipes #content, .page-template-archive-php #content {
    padding: 0px;
  }
  .search-results.category-recipes #subNavigation, .search-no-results.category-recipes #subNavigation, .page-template-archive-php #subNavigation {
    padding-left: 2.85714%;
  }
  .search-results.category-recipes #subNavigation .menu, .search-no-results.category-recipes #subNavigation .menu, .page-template-archive-php #subNavigation .menu {
    display: block;
    margin-top: 3.4375em;
  }
  .search-results.category-recipes #main, .search-no-results.category-recipes #main, .page-template-archive-php #main {
    margin-top: 3.4375em;
  }
  .search-results.category-recipes .searchAgain, .search-no-results.category-recipes .searchAgain, .page-template-archive-php .searchAgain {
    width: 30%;
  }
  .search-results.category-recipes .resultsFound, .search-no-results.category-recipes .resultsFound, .page-template-archive-php .resultsFound {
    padding-left: 0px;
    padding-right: 0px;
  }
  .search-results.category-recipes #oss-did-you-mean, .search-no-results.category-recipes #oss-did-you-mean, .page-template-archive-php #oss-did-you-mean {
    padding-left: 0px;
    padding-right: 0px;
  }
  .search-results.category-recipes .article-header, .search-no-results.category-recipes .article-header, .page-template-archive-php .article-header {
    width: 100%;
    /* 66.666666667% */
    /* 48.5714286+2.8571429 */
    padding: 3.4375em 0% 1.375em;
  }
  .search-results.category-recipes #header.noContentBox, .search-no-results.category-recipes #header.noContentBox, .page-template-archive-php #header.noContentBox {
    height: 220px;
  }
  .search-results.category-recipes .innerWrap, .search-no-results.category-recipes .innerWrap, .page-template-archive-php .innerWrap {
    width: 100%;
  }
  .search-results.category-recipes .wrapper, .search-no-results.category-recipes .wrapper, .page-template-archive-php .wrapper {
    min-height: 37.5em;
  }
  .search-results.category-recipes .wrapper aside.searchAgain, .search-no-results.category-recipes .wrapper aside.searchAgain, .page-template-archive-php .wrapper aside.searchAgain {
    margin-left: 0px;
    border-top: 0px none;
  }
  .search-results.category-recipes .searchAgain, .search-no-results.category-recipes .searchAgain, .page-template-archive-php .searchAgain {
    width: 28.2051%;
    position: relative;
    float: right;
    margin-left: 2.5641%;
    		/*

    		margin-top: em(147px);
    */
  }
  .search-results.category-recipes .searchAgain, .search-no-results.category-recipes .searchAgain, .page-template-archive-php .searchAgain {
    padding-right: 2.85714%;
  }
  .search-results.category-recipes .archive-title, .search-no-results.category-recipes .archive-title, .page-template-archive-php .archive-title {
    font-size: 2.125em;
    /* width: 66.666666667%; */
    /* 48.5714286+2.8571429 */
    padding: 1.61765em 3.7037% 0.64706em 3.7037%;
    text-transform: uppercase;
    font-weight: normal;
  }
  .search-results.category-recipes article, .search-no-results.category-recipes article, .page-template-archive-php article {
    margin-left: 3.703703704%;
    border-bottom: 1px solid #e1e6e7;
    /* width: 65.384615385%; */
  }
  .search-results.category-recipes article a, .search-no-results.category-recipes article a, .page-template-archive-php article a {
    display: table;
    width: 100%;
    padding: 1.25em 0px;
    cursor: pointer;
  }
  .search-results.category-recipes article img, .search-no-results.category-recipes article img, .page-template-archive-php article img {
    display: table-cell;
    vertical-align: middle;
    float: right;
  }
  .search-results.category-recipes article .search-title, .search-no-results.category-recipes article .search-title, .page-template-archive-php article .search-title {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
  }
  .search-results.category-recipes .pagination, .search-no-results.category-recipes .pagination, .page-template-archive-php .pagination {
    margin-left: 3.703703704%;
    width: 65.384615385%;
  }
  .search-results.category-recipes .pagination ul li, .search-no-results.category-recipes .pagination ul li, .page-template-archive-php .pagination ul li {
    border-color: #e1e6e7;
  }
  .search-results.category-recipes .search-title, .search-no-results.category-recipes .search-title, .page-template-archive-php .search-title {
    padding-left: 0px;
    font-size: 0.8125em;
    text-transform: capitalize;
  }
  .search-results.category-recipes .search-title a, .search-no-results.category-recipes .search-title a, .page-template-archive-php .search-title a {
    font-weight: 600;
  }

  .page-template-archive-php .resultText {
    width: auto;
    float: none;
    /*
    		float: left;
    		margin-left: 5.882352941%;
    */
  }
  .page-template-archive-php #main article {
    padding: 0px;
    margin-left: 0px;
  }
  .page-template-archive-php #main .archive-title {
    border-bottom: 0px;
    padding-top: 0px;
  }
  .page-template-archive-php #header.noContentBox {
    height: 150px;
  }

  /********** ALL THINGS */
  .search-results .allThingsResults #header.noContentBox, .search-no-results .allThingsResults #header.noContentBox {
    height: 3px;
  }
  .search-results .allThingsResults #main, .search-no-results .allThingsResults #main {
    max-width: 31.875em;
    margin: 0 auto;
  }

  /*********************
  	Contest
  *********************/
  .page-template-page-contest-php #contestImage, .page-template-page-emailpreferences-php #contestImage {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-contest-php #contestImage img, .page-template-page-emailpreferences-php #contestImage img {
    border-radius: 0.25em;
  }
  .page-template-page-contest-php #contestForm, .page-template-page-emailpreferences-php #contestForm {
    width: 48.5714286%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
  }
  .page-template-page-contest-php input[type="text"],
  .page-template-page-contest-php input[type="password"],
  .page-template-page-contest-php input[type="datetime"],
  .page-template-page-contest-php input[type="datetime-local"],
  .page-template-page-contest-php input[type="date"],
  .page-template-page-contest-php input[type="month"],
  .page-template-page-contest-php input[type="time"],
  .page-template-page-contest-php input[type="week"],
  .page-template-page-contest-php input[type="number"],
  .page-template-page-contest-php input[type="email"],
  .page-template-page-contest-php input[type="url"],
  .page-template-page-contest-php input[type="search"],
  .page-template-page-contest-php input[type="tel"],
  .page-template-page-contest-php input[type="color"],
  .page-template-page-contest-php select,
  .page-template-page-contest-php textarea,
  .page-template-page-contest-php .field, .page-template-page-emailpreferences-php input[type="text"],
  .page-template-page-emailpreferences-php input[type="password"],
  .page-template-page-emailpreferences-php input[type="datetime"],
  .page-template-page-emailpreferences-php input[type="datetime-local"],
  .page-template-page-emailpreferences-php input[type="date"],
  .page-template-page-emailpreferences-php input[type="month"],
  .page-template-page-emailpreferences-php input[type="time"],
  .page-template-page-emailpreferences-php input[type="week"],
  .page-template-page-emailpreferences-php input[type="number"],
  .page-template-page-emailpreferences-php input[type="email"],
  .page-template-page-emailpreferences-php input[type="url"],
  .page-template-page-emailpreferences-php input[type="search"],
  .page-template-page-emailpreferences-php input[type="tel"],
  .page-template-page-emailpreferences-php input[type="color"],
  .page-template-page-emailpreferences-php select,
  .page-template-page-emailpreferences-php textarea,
  .page-template-page-emailpreferences-php .field {
    max-width: none;
  }
  .page-template-page-contest-php .stateWrap, .page-template-page-emailpreferences-php .stateWrap {
    width: 45.454545455%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-contest-php #zipcodeWrap, .page-template-page-emailpreferences-php #zipcodeWrap {
    width: 45.454545455%;
    position: relative;
    float: right;
    margin-left: 9.090909091%;
  }
  .page-template-page-contest-php #newsletters, .page-template-page-emailpreferences-php #newsletters {
    clear: both;
  }
  .page-template-page-contest-php #newsletters h3, .page-template-page-emailpreferences-php #newsletters h3 {
    font-size: 1.25em;
    letter-spacing: 0.002em;
    margin-bottom: 0.625em;
  }
  .page-template-page-contest-php #newsletters .option-wrap, .page-template-page-emailpreferences-php #newsletters .option-wrap {
    width: 47.058823529%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-contest-php #newsletters .option-wrap:nth-child(2n-1), .page-template-page-emailpreferences-php #newsletters .option-wrap:nth-child(2n-1) {
    margin-left: 5.882352941%;
    float: right;
  }
  .page-template-page-contest-php .mainInputs, .page-template-page-emailpreferences-php .mainInputs {
    max-width: 20.625em;
  }
  .page-template-page-contest-php .birthdayFeilds, .page-template-page-emailpreferences-php .birthdayFeilds {
    max-width: 20.625em;
  }

  /************** Thanks **************/
  .page-template-page-thanks-php.page-child #main {
    padding: 3.4375em 0px;
  }

  /************** email pref **************/
  #emailPrefForm .thankyou {
    max-width: 25.38462em;
  }

  .page-template-page-emailpreferences-php #zipcodeWrap {
    width: 100%;
    margin-left: 0px;
    float: none;
  }
  .page-template-page-emailpreferences-php #fnameWrap, .page-template-page-emailpreferences-php #lnameWrap, .page-template-page-emailpreferences-php #emailWrap, .page-template-page-emailpreferences-php #zipcodeWrap, .page-template-page-emailpreferences-php .dropdown, .page-template-page-emailpreferences-php .subbuttons {
    max-width: 330px;
  }
  .page-template-page-emailpreferences-php #formatWrap .option-wrap {
    display: block;
    width: 22.8571429%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-emailpreferences-php .suboptions .option-wrap, .page-template-page-emailpreferences-php .interestsoptions .option-wrap {
    display: block;
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-emailpreferences-php .suboptions .option-wrap:nth-child(2n), .page-template-page-emailpreferences-php .interestsoptions .option-wrap:nth-child(2n) {
    margin-left: 2.8571429%;
  }
  .page-template-page-emailpreferences-php #updateWrap {
    float: left;
  }
  .page-template-page-emailpreferences-php #finePrint {
    float: left;
    clear: none;
    padding-left: 3em;
    padding-top: 2.15385em;
  }

  /************** stay Connected **************/
  .page-template-page-stayconnected-php #main {
    width: 100%;
  }
  .page-template-page-stayconnected-php #header.noContentBox {
    height: 4px;
  }
  .page-template-page-stayconnected-php #content {
    padding-top: 7.5em;
  }
  .page-template-page-stayconnected-php #getNewsletter {
    padding-left: 0em;
    width: 100%;
  }
  .page-template-page-stayconnected-php #getNewsletter h2 {
    font-size: 1.25em;
  }
  .page-template-page-stayconnected-php #getNewsletter form#signUpForm {
    display: block;
    width: 100%;
    margin-top: 0.9375em;
    margin-bottom: 2.5em;
  }
  .page-template-page-stayconnected-php #getNewsletter form#signUpForm #senderInfo {
    width: 85%;
    display: block;
    float: left;
  }
  .page-template-page-stayconnected-php #getNewsletter form#signUpForm #email {
    width: 100%;
  }
  .page-template-page-stayconnected-php #getNewsletter form#signUpForm #submit-button {
    top: 0px;
    left: 0px;
  }

  #stayConnected h2 {
    font-size: 2.125em;
    margin-bottom: 0.73529em;
  }
  #stayConnected .socialStuff {
    /* padding: 0px 10px 20px 10px; */
    padding-left: 0.3125em;
    overflow: auto;
  }
  #stayConnected .socialIcon {
    width: 33.333333333%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  #stayConnected .socialIcon:nth-child(2n) {
    padding-left: 1.25em;
  }

  /*********************
  	Landing Page
  *********************/
  .page-template-page-landingpage-php .fullSubFeature {
    overflow: auto;
    padding: 60px 0px;
  }
  .page-template-page-landingpage-php .fullSubFeature h2 {
    font-size: 34px;
  }
  .page-template-page-landingpage-php .fullSubFeature h3 {
    font-size: 20px;
    color: #666;
  }
  .page-template-page-landingpage-php .fullSubFeature p {
    padding: 0px;
  }
  .page-template-page-landingpage-php .fullSubFeature .heading {
    width: 40%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-landingpage-php .fullSubFeature .text {
    width: 48.571428572%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
    padding: 0px;
  }
  .page-template-page-landingpage-php .fullSubFeature .text.full {
    width: 82.8571429%;
    float: none;
    margin-left: 8.5714286%;
  }
  .page-template-page-landingpage-php #signUpBanner {
    overflow: auto;
    padding-bottom: 30px;
  }
  .page-template-page-landingpage-php #signUpBanner #getNewsletter {
    padding: 0px;
  }
  .page-template-page-landingpage-php #signUpBanner .heading {
    width: 48.571428572%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-landingpage-php #signUpBanner #signUpForm {
    width: 48.571428572%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
    padding: 0px;
    clear: right;
    padding-top: 20px;
  }
  .page-template-page-landingpage-php #thanksAndMore {
    clear: both;
    overflow: auto;
    padding-bottom: 0px;
  }
  .page-template-page-landingpage-php #thanksAndMore .heading {
    width: 48.571428572%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-landingpage-php #thanksAndMore .options {
    width: 48.571428572%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
    padding: 0px;
    clear: right;
  }
  .page-template-page-landingpage-php #thanksAndMore .option-wrap {
    width: 47.0588235%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-landingpage-php #thanksAndMore .option-wrap:nth-child(2n) {
    margin-left: 5.8823529%;
    float: right;
  }
  .page-template-page-landingpage-php #thanksAndMore #newsletters {
    overflow: auto;
    padding-bottom: 15px;
  }
  .page-template-page-landingpage-php #thanksAndMore #ans-submit-button {
    float: right;
    clear: both;
    margin-bottom: 0px;
  }
  .page-template-page-landingpage-php #thanksAndMore h3 {
    margin-bottom: 7px;
  }
  .page-template-page-landingpage-php #thanksAndMore p.thankyou {
    margin-right: 2.8571429%;
    padding-left: 24px;
    padding-right: 24px;
    float: right;
  }
  .page-template-page-landingpage-php #featuredBoxes {
    background: #fff;
    padding-top: 40px;
  }

  /*********************
  	Web-Only Special
  *********************/
  .page-template-page-webonlycoupon-php #header.noContentBox {
    height: 36px;
  }
  .page-template-page-webonlycoupon-php #main {
    max-width: 780px;
    margin: 0 auto;
  }
  .page-template-page-webonlycoupon-php #main #simpleContentArea {
    margin-top: 80px;
    text-align: center;
    border-bottom: 0px none;
  }
  .page-template-page-webonlycoupon-php #main #simpleContentArea p {
    font-size: 1.25em;
  }
  .page-template-page-webonlycoupon-php #main #simpleContentArea .wrap {
    max-width: 650px;
  }
  .page-template-page-webonlycoupon-php #main .wrap {
    width: 100%;
  }
  .page-template-page-webonlycoupon-php #main .inStores {
    width: 65.128205128%;
    position: relative;
    float: left;
    padding-right: 3.846153846%;
    border-bottom: 0px none;
    border-right: 1px solid #e1e6e7;
    margin-bottom: 0px;
  }
  .page-template-page-webonlycoupon-php #main .inStores .button {
    margin-top: 1.25em;
    margin-bottom: 0em;
  }
  .page-template-page-webonlycoupon-php #main .shopOnline {
    padding-top: 1.25em;
    width: 27.564102564%;
    position: relative;
    float: left;
    margin-left: 3.846153846%;
    border-bottom: 0px none;
    margin-bottom: 0px;
  }
  .page-template-page-webonlycoupon-php #main #CouponArea {
    border-top: 1px solid #e1e6e7;
    border-bottom: 1px solid #e1e6e7;
    margin: 0px;
    overflow: auto;
  }
  .page-template-page-webonlycoupon-php #main #CouponArea .innerWrap {
    width: 100%;
  }
  .page-template-page-webonlycoupon-php #main h3 {
    font-size: 1.25em;
    margin-bottom: 0.625em;
  }
  .page-template-page-webonlycoupon-php #featuredBoxes {
    margin-top: 1.25em;
    clear: both;
  }
  .page-template-page-webonlycoupon-php #featuredBoxes .aContentBox {
    width: 30.7692308%;
    margin-left: 3.8461538%;
  }
  .page-template-page-webonlycoupon-php #featuredBoxes .aContentBox:first-child {
    margin-left: 0%;
  }

  /*********************
  	Connect With Us
  *********************/
  .page-template-page-connectwithus-php .fullSubFeature {
    background: #fff;
    padding-bottom: 0.625em;
    clear: both;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter {
    padding: 0px;
    margin: 0px;
    float: none;
    width: 100%;
    overflow: auto;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.text {
    width: 40%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.text h2 {
    font-size: 2.125em;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form {
    padding-top: 5.5em;
    width: 57.142857143%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form #senderInfo {
    width: 44%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form input#email {
    width: 100%;
  }
  .page-template-page-connectwithus-php #featuredBoxes {
    clear: both;
    padding-top: 2.1875em;
    padding-bottom: 0.625em;
  }
  .page-template-page-connectwithus-php .textLink {
    display: block;
  }
  .page-template-page-connectwithus-php #socialBanner {
    padding-top: 2.1875em;
    background: #fff;
    margin-bottom: 0em;
    padding-bottom: 2.5em;
    overflow: auto;
  }
  .page-template-page-connectwithus-php #socialBanner .wrap {
    width: 93.75%;
  }
  .page-template-page-connectwithus-php #socialBanner h1, .page-template-page-connectwithus-php #socialBanner .h1, .page-template-page-connectwithus-php #socialBanner h2, .page-template-page-connectwithus-php #socialBanner .h2, .page-template-page-connectwithus-php #socialBanner h3, .page-template-page-connectwithus-php #socialBanner .h3, .page-template-page-connectwithus-php #socialBanner h4, .page-template-page-connectwithus-php #socialBanner .h4, .page-template-page-connectwithus-php #socialBanner h5, .page-template-page-connectwithus-php #socialBanner .h5 {
    padding-left: 0px;
  }
  .page-template-page-connectwithus-php #socialBanner .h4 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .page-template-page-connectwithus-php #socialBanner p {
    padding-bottom: 5px;
  }
  .page-template-page-connectwithus-php #featuredBoxes .aContentBox {
    width: 48.5714287%;
    position: relative;
    float: left;
    margin-left: 2.8571429%;
  }
  .page-template-page-connectwithus-php #featuredBoxes .aContentBox .h3 {
    margin-top: -5px;
    padding-top: 0px;
    margin-bottom: 25px;
    line-height: 1em;
  }
  .page-template-page-connectwithus-php #featuredBoxes .aContentBox .row {
    margin-bottom: 0px;
  }
  .page-template-page-connectwithus-php #featuredBoxes .aContentBox img {
    width: 46.153846154%;
    float: left;
  }
  .page-template-page-connectwithus-php #featuredBoxes .aContentBox .text, .page-template-page-connectwithus-php #featuredBoxes .aContentBox .h4 {
    margin-left: 0px;
    width: 47.5%;
    padding-right: 25px;
    float: right;
  }
  .page-template-page-connectwithus-php #featuredBoxes .aContentBox:nth-child(2n-1) {
    margin-left: 0%;
  }
  .page-template-page-connectwithus-php .finePrint {
    background: #fff;
    margin-top: 0px;
  }
  .page-template-page-connectwithus-php .finePrint .wrap {
    padding: 2em 4em 2em 0;
    border-top: solid 1px #e1e6e7;
  }
  .page-template-page-connectwithus-php .finePrint .wrap p {
    font-size: 10px;
  }

  /*********************
  	error 404
  *********************/
  .error404 #main {
    padding-bottom: 5em;
    padding-top: 5em;
  }
  .error404 .article-header h1, .error404 .article-header .h1, .error404 .article-header h2, .error404 .article-header .h2, .error404 .article-header h3, .error404 .article-header .h3, .error404 .article-header h4, .error404 .article-header .h4, .error404 .article-header h5, .error404 .article-header .h5 {
    font-size: 11.75em;
    margin-bottom: 0em;
  }
  .error404 .entry-content {
    margin-top: -1.25em;
  }
  .error404 .entry-content p {
    font-size: 2.125em;
    margin-bottom: 0em;
  }
  .error404 #header.noContentBox {
    height: 30px;
  }
  .error404 #searchform #s {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5em;
  }

  /*********************
  	archive
  *********************/
  .archive article {
    padding: 1.25em 0px;
  }

  /*********************
  	Genaric page
  *********************/
  .page-template-page-genericinfo-php #main {
    padding-top: 3.4375em;
    padding-bottom: 3.4375em;
  }

  /*********************
  	Monger Madness
  *********************/
  /*********************
  	Monger Madness
  *********************/
  #tournamentImage .large {
    display: none;
  }

  #tournamentImage .magnify {
    margin: 0px;
    cursor: auto;
  }

  #tournamentImage .large {
    display: none;
  }

  #tournamentImage .magnify {
    margin: 0px;
  }

  .page-template-page-bigzoomableimage-php #simpleContentArea, .page-template-page-bigimage-php #simpleContentArea {
    margin: 3.125em auto 0em;
  }
  .page-template-page-bigzoomableimage-php #simpleContentArea .subTitle, .page-template-page-bigimage-php #simpleContentArea .subTitle {
    margin-bottom: 0px;
  }
  .page-template-page-bigzoomableimage-php #simpleContentArea p, .page-template-page-bigimage-php #simpleContentArea p {
    font-size: 1.25em;
  }
  .page-template-page-bigzoomableimage-php .finePrint, .page-template-page-bigimage-php .finePrint {
    margin-top: 6em;
  }

  .page-template-page-bigimage-php #header.noContentBox {
    height: 270px;
  }
  .page-template-page-bigimage-php #header.noContentBox #banner {
    height: 276px;
  }
  .page-template-page-bigimage-php .bigimage {
    display: block;
    margin: 0 auto;
  }
  .page-template-page-bigimage-php #simpleContentArea {
    max-width: 865px;
  }
  .page-template-page-bigimage-php #simpleContentArea p {
    color: #7d8891;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em;
  }

  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.625em;
  }

  .widget {
    padding: 0;
    margin: 2.2em 0 0 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  .footer .nav li {
    display: inline-block;
    float: none; }

  .footer #footerbar {
    display: block;
    padding-top: 2.1875em;
  }
  .footer #footerbar ul.tumblr {
    display: block;
    border-bottom: 1px solid #4f5557;
    height: 105px;
    overflow: hidden;
  }
  .footer #footerbar ul.tumblr li {
    position: relative;
    border-right: 1px solid #4f5557;
    width: 31.4285714%;
    float: left;
    margin-left: 2.8571429%;
    padding-top: 10px;
    padding-bottom: 50px;
    				/*
    &:after {
    					content: " ";
    					display: block;
    					width: 100%;
    					height: 100px;
    					background: none repeat scroll 0% 0% $grey;
    					position: absolute;
    					top: 82px;
    					left: 0px;



    				}
    */
  }
  .footer #footerbar ul.tumblr li .title {
    display: block;
    margin-left: 25%;
    margin-right: 5%;
  }
  .footer #footerbar ul.tumblr li .title h5, .footer #footerbar ul.tumblr li .title .h5 {
    color: #7d8891;
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    line-height: normal;
    font-size: 1.125em;
  }
  .footer #footerbar ul.tumblr li .title h5 a, .footer #footerbar ul.tumblr li .title .h5 a {
    color: #7d8891;
  }
  .footer #footerbar ul.tumblr li .date {
    display: block;
    float: left;
    font-weight: 400;
    font-size: 0.625em;
    font-weight: bold;
    background: #545d62;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 13px 5px;
    width: 17.391304348%;
  }
  .footer #footerbar ul.tumblr li .date a {
    color: #b9c2c8;
  }
  .footer #footerbar ul.tumblr li:first-child {
    margin-left: 0;
  }
  .footer #footerbar ul.tumblr li:nth-child(3n-2) {
    margin-left: 0;
  }
  .footer #footerbar ul.tumblr li:nth-child(3n) {
    float: right;
    border-right: 0px;
  }

  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }

  /* end .footer-links */
  /*********************
  		ADMIN
  *********************/
  .admin-bar #wpadminbar {
    height: 1px;
    position: absolute;
  }

  .adminTestBox {
    display: none;
  }

  /*
  .admin-bar {
  	.smallheader {
  		height: 303px;
  	}

  	#header.noContentBox{
  		height: 154px;
  	}

  	.home-header #header {
  		height: 484px;
  	}

  	.adminTestBox {
  		display: block;
  	}
  }
  */
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  .wrap,
  #featuredContent .wrap,
  #featuredBoxes .wrap,
  .featuredBoxes .wrap,
  #banner #bannerContent,
  .page-template-page-storedetail-php .wrap,
  .page-template-page-kitchen-php .wrap {
    /* width: 1050px; */
    max-width: 1050px;
  }

  .header {
    height: 300px;
  }

  #banner {
    display: block;
    width: 100%;
    height: 480px;
    padding-top: 0px;
    margin-top: -138px;
  }
  #banner #bannerContent {
    margin: 257px auto 0 auto;
    /* max-width: 760px; */
    background: transparent;
  }
  #banner #bannerContent #inner-banner {
    position: relative;
    top: 174px;
    position: relative;
    bottom: 20px;
    width: 48.5714286%;
    /* max-width: 520px; */
    /* background: rgba($grey, .95); */
    background: transparent url(../images/boxbg.png) right top repeat-y;
    color: #fff;
    padding: 1.875em 2.85714% 1.75em;
    border-radius: 5px;
  }
  #banner #bannerContent #inner-banner h2 {
    font-size: 2.5em;
    line-height: 1.2em;
    color: #fff;
    padding: 0px;
    margin: 0px;
    font-weight: 300;
    margin-top: -10px;
  }
  #banner #bannerContent #inner-banner p {
    color: #7d8891;
    font-size: 1.25em;
  }
  #banner #bannerContent #inner-banner .button {
    margin-top: 20px;
    display: inline-block;
  }
  #banner #bannerContent #inner-banner .text {
    width: 100%;
    /* position: relative; */
    float: none;
    margin-left: 0%;
    margin-bottom: 0px;
  }
  #banner #bannerContent #inner-banner .arrow {
    display: none;
  }

  .smallheader #banner #bannerContent #inner-banner {
    width: 65.7142857%;
    text-align: center;
    border-radius: 5px 5px 5px 0px;
  }

  .smallheader #banner #bannerContent {
    margin-top: 174px;
  }

  #header.noContentBox {
    height: 150px;
  }

  .noContentBox #banner {
    margin-top: 36px;
  }

  .home-header #header {
    height: 480px;
  }
  .home-header #header #banner {
    margin-top: -144px;
  }
  .home-header #header #banner #bannerContent {
    margin: 180px auto 0px;
  }
  .home-header #header #banner #bannerContent #inner-banner {
    top: 157px;
  }

  .admin-bar .home-header #header #banner {
    margin-top: -176px;
  }
  .admin-bar #banner {
    margin-top: -169px;
  }
  .admin-bar .noContentBox #banner {
    margin-top: 4px;
  }

  #searchDrawer .oss-autocomplete {
    position: absolute;
    margin: 0 auto;
    max-width: 1050px;
    left: 50%;
    top: 66px;
  }
  #searchDrawer .oss-autocompletelist {
    left: -50%;
    width: 23.6%;
    margin-left: 68.6%;
  }

  #featuredContent .aFeaturedContentBox.box5 {
    clear: none;
  }
  #featuredContent .gallery {
    position: relative;
    left: 0;
    top: 0;
  }
  #featuredContent .gallery__controls {
    display: block;
    margin: 0 auto;
    width: 1050px;
    height: 0px;
    background: transparent;
    position: relative;
    top: -218px;
    overflow: visible;
  }
  #featuredContent .gallery__controls-prev {
    cursor: pointer;
    float: left;
    background: #f4f1ee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 32px;
    left: -25px;
  }
  #featuredContent .gallery__controls-prev .icon-alone {
    position: relative;
    top: 8px;
    left: 13px;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    /* IE 10 */
    user-select: none;
  }
  #featuredContent .gallery__controls-next {
    cursor: pointer;
    float: right;
    background: #f4f1ee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 32px;
    right: -25px; }
    #featuredContent .gallery__controls-next .icon-alone {
      position: relative;
      top: 8px;
      left: 12px;
      -moz-user-select: -moz-none;
      -khtml-user-select: none;
      -webkit-user-select: none; }

  /*********************
  FOOTER STYLES
  *********************/
  .footer {
    text-align: left; }
    .footer .wrap {
      width: 93.75%; }
    .footer .tumblr {
      margin-top: 0.625em; }
    .footer .copyright {
      float: left;
      font-size: 0.625em;
      line-height: 1.25em;
      text-align: left;
      /* min-width: 225px; */
      margin-top: 4em;
      padding: 0px 2em 0px 0px;
      margin-right: 1em;
      border-right: 1px solid #4f5557; }
    .footer .nav {
      float: left;
      font-size: 0.625em;
      text-align: left;
      margin-top: 4em; }
      .footer .nav li {
        font-size: 1em; }
        .footer .nav li a {
          padding: 0 1em; }
    .footer #socialLinks {
      float: right;
      font-style: 0.8125em;
      text-align: right; }

  .copyright {
    font-size: 0.625em; }

  /*********************
  
  *********************/
  .page-template-page-recipesandexpertise-php #featuredContent .wrap .box5, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box9, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box13, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box17, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box21, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box25, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box29, .page-template-page-recipesandexpertise-php #featuredContent .wrap .box33 {
    clear: none;
  }

  .wpurp-recipe-grid-filter-box {
    padding-right: 0px;
  }

  .aFeaturedContentBox {
    width: 240px;
    margin-right: 30px;
  }
  .aFeaturedContentBox:nth-child(4n) {
    margin-right: 30px;
  }
  .aFeaturedContentBox:last-child {
    margin-right: 0px;
  }

  .aFeaturedContentBox a {
    display: block;
    /* max-height: 145px; */
    overflow: hidden;
  }

  #getNewsletter {
    padding-left: 21%;
  }

  .aExploareLinks {
    width: 22.8571429%;
  }
  .aExploareLinks:nth-child(2n) {
    margin-right: 51.4285714%;
  }

  .page-child #subNavigation {
    padding-left: 0%;
  }

  /************** NO SIDEBAR **************/
  /************** partners **************/
  /*
  .page-id-518.page-child {
  	#main{
  		article{
  				width: 100%;
  				float: left;
  				max-width: em(780px);
  			}

  		aside {
  			margin-left: 0;

  			width: 0;
  			float: left;
  		}
  	}
  }
  */
  .page-id-518.page-child .wrapper #main {
    width: 85.1851852%;
  }

  #outerHeader #inner-header #submenu {
    padding-right: 0px;
  }

  #mainMenu {
    clear: none;
    width: 74.2857143%;
    position: relative;
    float: left;
    padding-right: 0;
    /* end .menu li */
  }
  #mainMenu ul#menu-main-menu {
    float: right;
  }
  #mainMenu li {
    border-right: 1px solid #e1e6e7;
    border-top: 0px;
  }
  #mainMenu li a {
    display: block;
    color: #2a3133;
    text-decoration: none;
    padding: 0.2em 25px;
    font-weight: bold;
    font-size: 0.8125em;
  }
  #mainMenu li a:hover, #mainMenu li a:focus {
    color: #31a288;
  }
  #mainMenu li:last-child {
    border-right: 0px;
  }

  #outerHeader #inner-header #menu-main-menu {
    padding-right: 0px;
  }

  /*********************
  	OUR STORES
  *********************/
  .page-template-page-child-php #getNewsletter {
    width: 100%;
    padding-left: 0px;
    padding-bottom: 32px;
  }
  .page-template-page-child-php #getNewsletter h2 {
    display: block;
    width: 40%;
    margin-left: 5.7142857%;
    position: relative;
    float: left;
  }
  .page-template-page-child-php #getNewsletter form#signUpForm {
    display: block;
    width: 48.5714286%;
    margin-left: 2.857142857%;
    position: relative;
    float: left;
  }
  .page-template-page-child-php #getNewsletter input#email {
    display: inline;
    width: 75%;
  }

  .findAStore #zipSearch #zipFeild {
    width: 66%;
  }

  .page-template-page-difference-php .fullSubFeature .text, .page-template-page-holiday-php .fullSubFeature .text {
    width: 57.142857143%;
  }

  .page-template-page-nourishcontent-php .boxArea {
    margin-right: 0%;
  }
  .page-template-page-nourishcontent-php ul .aFeaturedContentBox:nth-child(3n) {
    margin-right: 0px;
  }
  .fullSubFeature img {
    padding-top: 20px;
    display: block;
    width: 51.4285715%;
    margin-left: 0;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: -1px;
  }

  .page-template-page-circular-php .fullSubFeature img {
    width: inherit;
  }
  .fullSubFeature.simpleContentAreawImage .text {
    width: 56.1428571%;
  }

  /*********************
  	Shop Online
  *********************/
  .page-template-page-shoponline-php #no_zip_msg:after {
    margin-left: 96px;
  }
  .page-template-page-shoponline-php #no_zip_msg:before {
    margin-left: 93px;
  }

  .js .page-template-page-shoponline-php #pickup-submit {
    display: none;
  }

  .page-template-page-shoponline-old-php #main {
    padding-left: 0%;
  }
  .page-template-page-shoponline-old-php #main #drivethru {
    width: 47.435897436%;
    position: relative;
    float: left;
    margin-top: 0px;
  }
  .page-template-page-shoponline-old-php #main #drivethru #select-choiceWrap {
    width: 64.864864865%;
    position: relative;
    float: left;
    margin-left: 0px;
  }
  .page-template-page-shoponline-old-php #main #drivethru .submitWrap {
    width: 29.72972973%;
    float: right;
    position: relative;
    margin-left: 5.405405405%;
    margin-top: 35px;
  }
  .page-template-page-shoponline-old-php #main #drivethru .submitWrap input[type="submit"] {
    width: 100%;
  }
  .page-template-page-shoponline-old-php #main .or {
    display: block;
    width: 10%;
    position: relative;
    float: left;
    text-align: center;
    padding-top: 2.625em;
  }
  .page-template-page-shoponline-old-php #main .or p {
    color: #fff;
    background: #7d8891;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-transform: uppercase;
    padding: 7px;
    text-align: center;
    vertical-align: middle;
    font-size: 10px;
    margin: 0 auto;
  }
  .page-template-page-shoponline-old-php #main #drivethru input[type="submit"] {
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-page-shoponline-old-php #main #homeDelivery {
    width: 42.307692308%;
    position: relative;
    float: right;
    clear: none;
  }
  .page-template-page-shoponline-old-php #main #homeDelivery input[type="text"] {
    width: 66.666666667%;
  }
  .page-template-page-shoponline-old-php #main #homeDelivery input[type="submit"] {
    width: 33.333333333%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-page-shoponline-old-php #main .formwrap {
    border-bottom: 0px none;
  }
  .page-template-page-shoponline-old-php #main .groupHomeLink {
    margin-top: 0px;
    display: inline-block;
  }
  .page-template-page-shoponline-old-php #otherStuff {
    padding-right: 0%;
  }
  .page-template-page-shoponline-old-php #otherStuff #subFeaturedBoxes .aFeaturedContentBox .h4 {
    font-size: 1.25em;
  }
  .page-template-page-shoponline-old-php .decorativeimage {
    background-size: inherit;
  }

  /*********************
  	SAVINGS AND DEALS
  *********************/
  .page-template-page-savingsanddeals-php #getNewsletter, .page-template-page-circular-php #getNewsletter {
    padding-left: 0%;
  }

  .page-template-page-dealsgrid-php .articlehead {
    background-position: 85% bottom;
  }

  /************** mobile deals **************/
  .page-id-2567.page-child aside {
    padding-right: 0%;
  }

  /*********************
  	circular
  *********************/
  .gmodal .modal-lg {
    width: 900px;
  }

  /************** search results **************/
  .search-results.category-recipes #subNavigation {
    padding-left: 0%;
  }
  .search-results.category-recipes .searchAgain {
    padding-right: 0%;
  }

  .page-template-archive-php #main .archive-title, .page-template-archive-php #subNavigation {
    padding-left: 0%;
  }

  /************** Events **************/
  .tribe-filter-live #subNavigation {
    padding-left: 0em;
  }
  .tribe-filter-live .wrapper #main {
    padding-right: 0px;
  }
  .tribe-filter-live #tribe_events_filters_form {
    width: 80.769230769%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .tribe-filter-live #tribe_events_filters_form #tribe_events_filter_item_eventcategory {
    width: 46.031746%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .tribe-filter-live #tribe_events_filters_form #tribe_events_filter_item_eventcategory .tribe-events-filters-group-heading {
    margin-top: 0.5625em;
    width: 24.137931034%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .tribe-filter-live #tribe_events_filters_form #tribe_events_filter_item_eventcategory .tribe-events-filter-group {
    width: 75.862068966%;
    position: relative;
    float: right;
    margin-left: 0%;
  }
  .tribe-filter-live #tribe_events_filters_form #tribe_events_filter_item_venues {
    width: 49.2063492%;
    position: relative;
    float: left;
    margin-left: 4.761904762%;
  }
  .tribe-filter-live #tribe_events_filters_form #tribe_events_filter_item_venues .tribe-events-filters-group-heading {
    margin-top: 0.5625em;
    width: 37.7419355%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .tribe-filter-live #tribe_events_filters_form #venueSelect {
    width: 62.2580645%;
    position: relative;
    float: right;
    margin-left: 0%;
  }
  .tribe-filter-live #tribe_events_filter_control {
    width: 18.974358974%;
    position: relative;
    float: right;
    margin-left: 0%;
  }
  .tribe-filter-live a#tribe_events_filters_reset {
    float: right;
  }
  .tribe-filter-live #tribe_events_filter_control.tribe-events-filters-mobile-controls {
    margin-top: 0em;
  }
  .tribe-filter-live .tribe-events-before-html {
    padding-bottom: 2.5em;
  }

  .single-tribe_events #main {
    padding-bottom: 50px;
  }
  .single-tribe_events #main #tribe-events-content {
    width: 65.3846154%;
    position: relative;
    float: left;
    margin-left: 0%;
    overflow: hidden;
    border-right: 1px solid #e1e6e7;
    padding-right: 20px;
  }
  .single-tribe_events .sidebarEventStuff {
    width: 30.7692308%;
    position: relative;
    float: right;
    margin-left: 3.8461538%;
  }
  .single-tribe_events header.article-header {
    padding-top: 35px;
  }

  /*********************
  	Connect With Us
  *********************/
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.text {
    width: 48.5714287%;
    position: relative;
    float: left;
    margin-left: 0%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form {
    padding-top: 5.5em;
    width: 48.5714287%;
    position: relative;
    float: right;
    margin-left: 2.8571429%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form #senderInfo {
    width: 45%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form input#email {
    width: 100%;
  }

  /*********************
  	Landing Page
  *********************/
  .page-template-page-landingpage-php #getNewsletter input#email {
    width: 355px;
  }
  .page-template-page-landingpage-php #social .socailWrap {
    padding-bottom: 35px;
  }

  /*********************
  	Careers
  *********************/
  .page-template-page-careers-php.page-child #benefits h2 {
    margin-top: 20px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  #mainMenu #menu-item-2547 a {
    /*
    line-height: 0px;
    		padding-top: 7px;
    */
    padding-left: 55px;
  }
  #mainMenu #menu-item-2547 a:before {
    left: 15px;
  }

  /*********************
  	Connect With Us
  *********************/
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.text p {
    padding-right: 1.25em;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form #senderInfo {
    width: 57%;
  }
  .page-template-page-connectwithus-php .fullSubFeature #getNewsletter div.form input#email {
    width: 100%;
  }

  /*********************
  	Landing Page
  *********************/
  .page-template-page-landingpage-php #getNewsletter input#email {
    width: 397px; }
    
  /*********************
  	savings and deals
  *********************/
  .page-template-page-savingsanddeals-php .fullSubFeature .text p {
	margin-right: -35px;
  }}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /*

  EXAMPLE
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go.

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited 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 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }

  .printthis {
    background-color: white;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .page-template-page-circular #contactBanner, .page-template-page-circular #featuredBoxes, .page-template-page-circular .finePrint, .page-template-page-circular #socialLinks, .page-template-page-circular #mobileNav {
    display: none;
  }
  .page-template-page-circular .printMyList {
    max-width: 1100px;
    padding-top: 20px;
  }
  .page-template-page-circular .printMyList .pull-right {
    padding-left: 30px;
  }
  .page-template-page-circular .printButton {
    display: none;
  }
  .page-template-page-circular .col-md-6.col-xs-6.itemInfo.printCouponCategory {
    width: 50%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-template-page-circular .printMyListHeader {
    padding-left: 15px;
  }
  .page-template-page-circular #banner {
    display: none;
  }
  .page-template-page-circular #logo a:after {
    font-size: 16px;
  }



  .page-template-page-circular #logo {
    display: none;
  }
  .page-template-page-circular #logo_print {
    width: 48.5714286%;
    position: relative;
    float: left;
    margin-left: 0;
    margin-top: 0.1875em;
    margin-bottom: 0.1875em;
    display: block;
  }
  .page-template-page-circular #logo_print img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    max-width: 243px;
  }


}
