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

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
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/
*********************/
/*
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
*/
/* line 65, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -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";
}

/******************************************************************
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: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
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.
*/
/* line 25, ../scss/breakpoints/_481up.scss */
.feature-photo {
  /* banner photo across content and sidebar */
}
/* line 27, ../scss/breakpoints/_481up.scss */
.feature-photo img {
  margin-left: -30%;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 36, ../scss/breakpoints/_481up.scss */
.nav {
  /* .menu is clearfixed inside mixins.scss 
  .menu {*/
  /* end .menu ul */
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
  /*}  end .menu */
}
/* line 41, ../scss/breakpoints/_481up.scss */
.nav li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 43, ../scss/breakpoints/_481up.scss */
.nav li a {
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}

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

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name: Montecatini	
Author: BlueCode

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
*********************/
/* line 22, ../scss/breakpoints/_768up.scss */
#container {
  background: url("../images/bg-01.png") 2% 23% no-repeat, url("../images/bg-02.png") 98% 42% no-repeat, url("../images/bg-03.png") 2% 65% no-repeat, url("../images/bg-04.png") 98% 97% no-repeat;
}

/* line 31, ../scss/breakpoints/_768up.scss */
#main {
  padding: 2.3em 1em 1em 1.5em;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 39, ../scss/breakpoints/_768up.scss */
.wrap {
  width: 760px;
}

/*.feature-photo {  banner photo across content and sidebar 
	padding:2.5em 3.5em 0 3.5em;

	img {
	border:9px solid white;
	width:100%;
	}
}*/
/* line 52, ../scss/breakpoints/_768up.scss */
.feature-photo {
  /* banner photo across content and sidebar */
  padding: 1em;
}
/* line 55, ../scss/breakpoints/_768up.scss */
.feature-photo .feature-photo-frame {
  height: auto;
}
/* line 59, ../scss/breakpoints/_768up.scss */
.feature-photo img {
  margin-left: 0;
  width: 100%;
  height: auto;
}

/* line 67, ../scss/breakpoints/_768up.scss */
.hentry {
  margin-bottom: 1.5em;
}

/* entry content */
/* line 73, ../scss/breakpoints/_768up.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 77, ../scss/breakpoints/_768up.scss */
.entry-content .ingredients {
  float: left;
  width: 35%;
  overflow: hidden;
  color: #9b9b99;
}
/* line 85, ../scss/breakpoints/_768up.scss */
.entry-content .directions {
  float: left;
  width: 64%;
  overflow: hidden;
}
/* line 92, ../scss/breakpoints/_768up.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
}

/*********************
HEADER STYLES
*********************/
/* line 103, ../scss/breakpoints/_768up.scss */
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

/* line 108, ../scss/breakpoints/_768up.scss */
#logo {
  margin: 10px 0;
}
/* line 111, ../scss/breakpoints/_768up.scss */
#logo a {
  color: #fff;
}
/* line 115, ../scss/breakpoints/_768up.scss */
#logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 277px;
}

/* line 123, ../scss/breakpoints/_768up.scss */
.header-kicker {
  left: 15px;
  position: absolute;
  top: 42px;
  display: block;
  font-size: 13px;
  line-height: 17px;
}
/* line 131, ../scss/breakpoints/_768up.scss */
.header-kicker img {
  width: 90%;
}

/* line 136, ../scss/breakpoints/_768up.scss */
.header-contact {
  right: 15px;
  top: 30px;
  position: absolute;
  text-align: right;
  font-size: 13px;
  line-height: 17px;
}

/* line 145, ../scss/breakpoints/_768up.scss */
.zh {
  display: block;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 151, ../scss/breakpoints/_768up.scss */
nav {
  position: relative;
}

/* line 156, ../scss/breakpoints/_768up.scss */
.wing-left {
  position: absolute;
  display: block;
  top: 0;
  left: -6px;
  width: 6px;
  height: 42px;
  background-image: url("../images/wing-left.png");
}

/* line 166, ../scss/breakpoints/_768up.scss */
.wing-right {
  position: absolute;
  display: block;
  top: 0;
  right: -6px;
  width: 6px;
  height: 42px;
  background-image: url("../images/wing-right.png");
}

/* line 178, ../scss/breakpoints/_768up.scss */
.hamburger {
  display: none;
}

/* line 184, ../scss/breakpoints/_768up.scss */
.social-icons {
  position: absolute;
  top: -48px;
  right: 15px;
}
/* line 189, ../scss/breakpoints/_768up.scss */
.social-icons div {
  float: left;
  margin-left: 5px;
}

/* line 196, ../scss/breakpoints/_768up.scss */
.top-nav {
  background-color: #6b5d20;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF6B5D20', endColorstr='#FF6A5C1F');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZiNWQyMCIvPjxzdG9wIG9mZnNldD0iMzMlIiBzdG9wLWNvbG9yPSIjZmZmNTljIi8+PHN0b3Agb2Zmc2V0PSI0OCUiIHN0b3AtY29sb3I9IiNmZmY1OWMiLz48c3RvcCBvZmZzZXQ9IjYyJSIgc3RvcC1jb2xvcj0iI2ZmZjU5YyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzZhNWMxZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #6b5d20), color-stop(33%, #fff59c), color-stop(48%, #fff59c), color-stop(62%, #fff59c), color-stop(100%, #6a5c1f));
  background-image: -moz-linear-gradient(left, #6b5d20 0%, #fff59c 33%, #fff59c 48%, #fff59c 62%, #6a5c1f 100%);
  background-image: -webkit-linear-gradient(left, #6b5d20 0%, #fff59c 33%, #fff59c 48%, #fff59c 62%, #6a5c1f 100%);
  background-image: linear-gradient(to right, #6b5d20 0%, #fff59c 33%, #fff59c 48%, #fff59c 62%, #6a5c1f 100%);
  border-bottom: 2px solid #b1a478;
  padding: 5px 0 5px 55px;
  height: 40px;
  border: 0;
  display: block;
  /* highlight current page */
  /* end current highlighters */
}
/* line 210, ../scss/breakpoints/_768up.scss */
.top-nav li a:hover, .top-nav li a:focus {
  color: #fff;
  background-color: #c02721;
}
/* line 221, ../scss/breakpoints/_768up.scss */
.top-nav li.current-menu-item a,
.top-nav li.current_page_item a,
.top-nav li.current_page_ancestor a {
  background-color: #010000;
  color: #fff59c;
}

/* end top-nav */
/* line 229, ../scss/breakpoints/_768up.scss */
.nav {
  display: block;
  /* end .menu ul li */
}
/* line 233, ../scss/breakpoints/_768up.scss */
.nav ul {
  background: #323944;
  margin-top: 0;
}
/* line 237, ../scss/breakpoints/_768up.scss */
.nav li {
  float: left;
  position: relative;
  margin: 0 1px;
  -webkit-transform: skew(-16deg);
  -moz-transform: skew(-16deg);
  -o-transform: skew(-16deg);
  transform: skew(-16deg);
  border: none;
  border-right: 1px solid #010000;
  border-left: 1px solid #010000;
}
/* line 250, ../scss/breakpoints/_768up.scss */
.nav li a {
  border-bottom: none;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
/* line 252, ../scss/breakpoints/_768up.scss */
.nav li a span {
  -webkit-transform: skew(16deg);
  -moz-transform: skew(16deg);
  -o-transform: skew(16deg);
  transform: skew(16deg);
  display: block;
}
/* line 271, ../scss/breakpoints/_768up.scss */
.nav li:first-child {
  border-left: none;
}
/* line 274, ../scss/breakpoints/_768up.scss */
.nav li:last-child {
  border-right: none;
}

/* end .nav */
/*********************
SIDEBARS & ASIDES
*********************/
/* line 290, ../scss/breakpoints/_768up.scss */
.sidebar {
  padding-right: 1em;
  padding-left: 0.5em;
  background-color: transparent;
}

/* line 300, ../scss/breakpoints/_768up.scss */
.widget {
  padding: 0;
}
/* line 305, ../scss/breakpoints/_768up.scss */
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}
/* line 313, ../scss/breakpoints/_768up.scss */
.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
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/* line 421, ../scss/breakpoints/_768up.scss */
.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 */
/******************************************************************
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.

******************************************************************/
/* line 11, ../scss/breakpoints/_1030up.scss */
.wrap {
  width: 1040px;
}

/* line 15, ../scss/breakpoints/_1030up.scss */
#main {
  padding: 2em 2.5em 2em 4em;
}

/*.feature-photo {  banner photo across content and sidebar 
	padding:2.5em 3.5em 0 3.5em;

	img {
	border:9px solid white;
	width:100%;
	}
}*/
/* line 28, ../scss/breakpoints/_1030up.scss */
.social-icons {
  position: absolute;
  top: 5px;
  right: 3.3em;
}
/* line 33, ../scss/breakpoints/_1030up.scss */
.social-icons div {
  float: left;
  margin-left: 5px;
}
/* line 39, ../scss/breakpoints/_1030up.scss */
.social-icons .sf, .social-icons .si, .social-icons .st, .social-icons .sl {
  background-position: 0 0;
}

/* line 42, ../scss/breakpoints/_1030up.scss */
.feature-photo {
  /* banner photo across content and sidebar */
  padding: 2.5em 3.5em 0 3.5em;
}
/* line 45, ../scss/breakpoints/_1030up.scss */
.feature-photo .feature-photo-frame {
  height: auto;
}

/* line 51, ../scss/breakpoints/_1030up.scss */
.sidebar {
  padding: 0 3em 0 0;
  margin-top: 2.2em;
}

/* line 57, ../scss/breakpoints/_1030up.scss */
.header-kicker {
  left: 55px;
  top: 45px;
}
/* line 60, ../scss/breakpoints/_1030up.scss */
.header-kicker img {
  width: auto;
}

/* line 65, ../scss/breakpoints/_1030up.scss */
.header-contact {
  right: 55px;
  top: 45px;
}

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
