/******************************************************************
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;
  }
*/
@font-face {
  font-family: 'Lato-Light';
  src: url("fonts/Lato-Light.eot");
  src: url("fonts/Lato-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Light.woff") format("woff"), url("fonts/Lato-Light.ttf") format("truetype"), url("fonts/Lato-Light.svg#Lato-Light") 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 74, ../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.
*/
/*********************
HEADER STYLES
*********************/
/* line 28, ../scss/breakpoints/_481up.scss */
.custom-controls {
  top: 40%;
  margin: 0;
}

/* line 33, ../scss/breakpoints/_481up.scss */
#inner-header {
  position: relative;
}
/* line 35, ../scss/breakpoints/_481up.scss */
#inner-header .main-header-menu {
  max-width: 575px;
  position: absolute;
  top: 93px;
  left: 184px;
}

/* line 43, ../scss/breakpoints/_481up.scss */
.header {
  background-color: none;
}
/* line 46, ../scss/breakpoints/_481up.scss */
.header #inner-header .left-header {
  float: left;
  margin-top: 0px;
}
/* line 50, ../scss/breakpoints/_481up.scss */
.header #inner-header .right-header {
  position: absolute;
  top: 25px;
  right: 0;
}
/* line 54, ../scss/breakpoints/_481up.scss */
.header #inner-header .right-header .so-me {
  float: right;
  margin-bottom: 10px;
}
/* line 57, ../scss/breakpoints/_481up.scss */
.header #inner-header .right-header .so-me .so-me-ul {
  width: auto;
}
/* line 59, ../scss/breakpoints/_481up.scss */
.header #inner-header .right-header .so-me .so-me-ul .single-so-me {
  float: left;
  margin-right: 5px;
}
/* line 62, ../scss/breakpoints/_481up.scss */
.header #inner-header .right-header .so-me .so-me-ul .single-so-me img {
  height: 20px;
}
/* line 69, ../scss/breakpoints/_481up.scss */
.header #inner-header .hamburger {
  display: none;
}
/* line 72, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav {
  border-radius: 6px 0 0 6px;
  background: #4e8abe;
  margin: 0 0 8px;
  float: right;
  position: relative;
  max-width: 275px;
}
/* line 79, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav li {
  display: inline-block;
  background: #4e8abe url("images/header-menu-bkg.png") no-repeat top right;
}
/* line 82, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav li a {
  color: #fff;
  font-size: auto;
}
/* line 85, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav li a:hover, .header #inner-header .header-nav li a:focus {
  text-decoration: none;
  color: #fff;
}
/* line 92, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav .menu-item-3175 {
  border-radius: 5px 0 0 5px;
  padding: 0 25px 0 20px;
}
/* line 96, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav .menu-item-3176 {
  padding: 0 25px 0 10px;
}
/* line 99, ../scss/breakpoints/_481up.scss */
.header #inner-header .header-nav .menu-item-3177 {
  background: none;
  padding: 0 20px 0 10px;
}
/* line 104, ../scss/breakpoints/_481up.scss */
.header #inner-header .search-area {
  display: block;
  float: right;
  width: 100%;
}
/* line 108, ../scss/breakpoints/_481up.scss */
.header #inner-header .search-area #s {
  height: 22px;
  border-radius: 20px 0 0 20px;
  border: 1px solid #533f1e;
  background: #fff;
  max-width: 139px;
  float: left;
  margin: 0;
  padding: 0 0 0 15px;
}
/* line 118, ../scss/breakpoints/_481up.scss */
.header #inner-header .search-area #searchsubmit {
  background: url("images/search-icon.svg");
  border: 0;
  display: block;
  height: 24px;
  width: 24px;
}
/* line 125, ../scss/breakpoints/_481up.scss */
.header #inner-header .search-area .search-button {
  height: 24px;
  width: 24px;
  float: left;
  position: relative;
}
/* line 131, ../scss/breakpoints/_481up.scss */
.header #inner-header .search-area .search-field {
  float: right;
}

/* line 137, ../scss/breakpoints/_481up.scss */
#logo {
  margin: 16px 0 10px;
  max-width: 130px;
}
/* line 140, ../scss/breakpoints/_481up.scss */
#logo a {
  color: #fff;
}
/* line 142, ../scss/breakpoints/_481up.scss */
#logo a img {
  width: 100%;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 152, ../scss/breakpoints/_481up.scss */
.feature-nav li {
  display: block;
  width: 50%;
  float: left;
  padding: 1px;
  margin-bottom: 0;
  min-height: 100px;
}
/* line 159, ../scss/breakpoints/_481up.scss */
.feature-nav li a {
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 44px;
  padding: 50px;
}
/* line 165, ../scss/breakpoints/_481up.scss */
.feature-nav li a:hover {
  background: #9bae89;
}

/* line 172, ../scss/breakpoints/_481up.scss */
.main-header-menu {
  display: block;
}

/* line 175, ../scss/breakpoints/_481up.scss */
.c-menu {
  display: none;
}

/* .menu is clearfixed inside mixins.scss */
/* line 179, ../scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}
/* line 180, ../scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 181, ../scss/breakpoints/_481up.scss */
.menu ul li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 182, ../scss/breakpoints/_481up.scss */
.menu ul li a {
  display: block;
  color: #4e8abe;
  text-decoration: none;
  padding: 0.75em;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
/* line 203, ../scss/breakpoints/_481up.scss */
.menu ul li ul.sub-menu,
.menu ul li ul.children {
  margin: 0;
}
/* line 207, ../scss/breakpoints/_481up.scss */
.menu ul li ul.sub-menu li a,
.menu ul li ul.children li a {
  text-align: left;
}

/* end .menu */
/* line 227, ../scss/breakpoints/_481up.scss */
.c-button {
  display: none;
}

/*********************
HOME PAGE CONTENT STYLES
*********************/
/* line 233, ../scss/breakpoints/_481up.scss */
#homie-slide {
  display: block;
}

/* line 236, ../scss/breakpoints/_481up.scss */
.prev, .next {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 30%;
  cursor: pointer;
  background-size: 100%;
}

/* line 244, ../scss/breakpoints/_481up.scss */
.prev {
  background-image: url(styles/images/prev-arrow.png);
  background-repeat: no-repeat;
  margin-left: 0px;
}

/* line 249, ../scss/breakpoints/_481up.scss */
.next {
  background-image: url(styles/images/next-arrow.png);
  background-repeat: no-repeat;
  right: 0;
  margin-right: 0px;
}

/* line 255, ../scss/breakpoints/_481up.scss */
.page-numbers .next, .page-numbers .prev {
  background-image: none;
  position: relative;
  background: none;
}

/* line 261, ../scss/breakpoints/_481up.scss */
.home h1 {
  text-align: center;
  color: #533f1e;
  padding: 0;
  margin: 20px 0 0;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5em;
}
/* line 270, ../scss/breakpoints/_481up.scss */
.home p {
  font-family: Lato-Light;
  text-align: center;
  color: #533f1e;
  font-size: 2em;
  padding: 0;
  margin: 0 0 20px;
}
/* line 278, ../scss/breakpoints/_481up.scss */
.home .rotator-ul {
  margin: 0;
  max-height: 381px;
  border-top: 4px solid #9bae89;
  border-bottom: 4px solid #9bae89;
}
/* line 283, ../scss/breakpoints/_481up.scss */
.home .rotator-ul a {
  margin: 0;
  padding: 0;
}

/* line 289, ../scss/breakpoints/_481up.scss */
#menu-features {
  margin: 0;
}

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

/* end .entry-content */
/* line 319, ../scss/breakpoints/_481up.scss */
.tile-ul {
  list-style-type: none;
  width: 100%;
}
/* line 323, ../scss/breakpoints/_481up.scss */
.tile-ul:after {
  content: "";
  display: table;
  clear: both;
}
/* line 328, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles {
  display: block;
  /* inline-block have an extra 4px margin wich makes it harder to use in this situation */
  width: 32%;
  /* You get it (100/3) but use exact number */
  float: left;
  /* if you use block elements you have to float them */
  text-transform: uppercase;
  margin-right: 5px;
  margin-bottom: 5px;
}
/* line 337, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles figure {
  margin: 0;
  /* to normalize figure element */
}
/* line 341, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-title {
  position: relative;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: -19px;
}
/* line 347, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-title .tile-title-link {
  font-size: 12px;
  padding: 3px 0 3px 5px;
  width: 100%;
  color: #fff;
  font-weight: 900;
}
/* line 355, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-image {
  max-height: 160px;
}
/* line 357, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-image img {
  width: 100%;
  height: auto;
}
/* line 362, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-excerpt {
  font-size: 12px;
  padding: 5px;
  color: #fff;
  background-color: #666666;
  width: 100%;
  min-height: 55px;
  margin-top: -3px;
  word-break: keep-all;
}
/* line 371, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-excerpt .excerpt-read-more {
  text-align: right;
  color: #fff;
  font-weight: 900;
}
/* line 375, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-excerpt .excerpt-read-more .excerpt-read-more-link {
  color: #fff;
}
/* line 378, ../scss/breakpoints/_481up.scss */
.tile-ul .post-tiles .tile-excerpt .excerpt-read-more:hover {
  color: #fff;
}
/* line 385, ../scss/breakpoints/_481up.scss */
.tile-ul .tile-3, .tile-ul tile-6 {
  margin-right: 0;
}

/*********************
FOOTER STYLES
*********************/
/* line 393, ../scss/breakpoints/_481up.scss */
.footer {
  clear: both;
  background-color: #fff;
  color: #848484;
}
/* line 397, ../scss/breakpoints/_481up.scss */
.footer p {
  text-align: center;
}
/* line 400, ../scss/breakpoints/_481up.scss */
.footer a {
  color: #848484;
  text-decoration: none;
}
/* line 404, ../scss/breakpoints/_481up.scss */
.footer span {
  display: inline-block;
}
/* line 407, ../scss/breakpoints/_481up.scss */
.footer .footer-copy {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 18px;
}
/* line 412, ../scss/breakpoints/_481up.scss */
.footer .footer-nav {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  font-size: 12px;
}
/* line 418, ../scss/breakpoints/_481up.scss */
.footer #menu-footer-menu {
  display: inline-block;
}
/* line 420, ../scss/breakpoints/_481up.scss */
.footer #menu-footer-menu li {
  display: inline-block;
}
/* line 424, ../scss/breakpoints/_481up.scss */
.footer .partner-logos-ul {
  text-align: center;
}
/* line 426, ../scss/breakpoints/_481up.scss */
.footer .partner-logos-ul .single-partner-logo {
  max-height: 36px;
  max-width: 33.33%;
  display: inline;
  margin-right: 20px;
}
/* line 431, ../scss/breakpoints/_481up.scss */
.footer .partner-logos-ul .single-partner-logo img {
  height: 36px;
  width: auto;
  max-height: 36px;
}

/*
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 */
/******************************************************************
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
*********************/
/* line 26, ../scss/breakpoints/_768up.scss */
.wrap {
  width: 760px;
}

/*********************
HEADER STYLES
*********************/
/* line 34, ../scss/breakpoints/_768up.scss */
#inner-header {
  position: relative;
}
/* line 36, ../scss/breakpoints/_768up.scss */
#inner-header .main-header-menu {
  max-width: 575px;
  position: absolute;
  top: 93px;
  left: 184px;
}

/* line 46, ../scss/breakpoints/_768up.scss */
.header {
  background-color: none;
}
/* line 49, ../scss/breakpoints/_768up.scss */
.header #inner-header .left-header {
  float: left;
  margin-top: 0px;
}
/* line 53, ../scss/breakpoints/_768up.scss */
.header #inner-header .right-header {
  position: absolute;
  top: 25px;
  right: 0;
}
/* line 57, ../scss/breakpoints/_768up.scss */
.header #inner-header .right-header .so-me {
  float: right;
  margin-bottom: 15px;
}
/* line 60, ../scss/breakpoints/_768up.scss */
.header #inner-header .right-header .so-me .so-me-ul {
  width: auto;
}
/* line 62, ../scss/breakpoints/_768up.scss */
.header #inner-header .right-header .so-me .so-me-ul .single-so-me {
  float: left;
  margin-right: 5px;
}
/* line 65, ../scss/breakpoints/_768up.scss */
.header #inner-header .right-header .so-me .so-me-ul .single-so-me img {
  height: 20px;
}
/* line 72, ../scss/breakpoints/_768up.scss */
.header #inner-header .hamburger {
  display: none;
}
/* line 75, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav {
  border-radius: 6px 0 0 6px;
  background: #4e8abe;
  margin: 0 0 8px;
  float: right;
  position: relative;
  max-width: 275px;
}
/* line 82, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav li {
  display: inline-block;
  background: #4e8abe url("images/header-menu-bkg.png") no-repeat top right;
}
/* line 85, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav li a {
  color: #fff;
  font-size: auto;
}
/* line 88, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav li a:hover, .header #inner-header .header-nav li a:focus {
  text-decoration: none;
  color: #fff;
}
/* line 95, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav .menu-item-3175 {
  border-radius: 5px 0 0 5px;
  padding: 0 25px 0 20px;
}
/* line 99, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav .menu-item-3176 {
  padding: 0 25px 0 10px;
}
/* line 102, ../scss/breakpoints/_768up.scss */
.header #inner-header .header-nav .menu-item-3177 {
  background: none;
  padding: 0 20px 0 10px;
}
/* line 107, ../scss/breakpoints/_768up.scss */
.header #inner-header .search-area {
  display: block;
  float: right;
  width: 100%;
}
/* line 111, ../scss/breakpoints/_768up.scss */
.header #inner-header .search-area #s {
  height: 22px;
  border-radius: 20px 0 0 20px;
  border: 1px solid #533f1e;
  background: #fff;
  max-width: 139px;
  float: left;
  margin: 0;
  padding: 0 0 0 15px;
}
/* line 121, ../scss/breakpoints/_768up.scss */
.header #inner-header .search-area #searchsubmit {
  background: url("images/search-icon.svg");
  border: 0;
  display: block;
  height: 24px;
  width: 24px;
}
/* line 128, ../scss/breakpoints/_768up.scss */
.header #inner-header .search-area .search-button {
  height: 24px;
  width: 24px;
  float: left;
  position: relative;
}
/* line 134, ../scss/breakpoints/_768up.scss */
.header #inner-header .search-area .search-field {
  float: right;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 144, ../scss/breakpoints/_768up.scss */
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 146, ../scss/breakpoints/_768up.scss */
.nav ul {
  margin-top: 0;
}
/* line 149, ../scss/breakpoints/_768up.scss */
.nav li {
  float: left;
  position: relative;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
/* line 153, ../scss/breakpoints/_768up.scss */
.nav li a {
  border-bottom: 0;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
/* line 160, ../scss/breakpoints/_768up.scss */
.nav li a:hover, .nav li a:focus {
  color: #002d5d;
  text-decoration: none;
}
/* line 172, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu,
.nav li ul.children {
  margin: 0;
  border-top: 0;
  background: rgba(83, 63, 30, 0.85);
  position: absolute;
  visibility: hidden;
  z-index: 8999;
  top: 50px;
  padding: 10px 0;
  /* highlight sub-menu current page */
}
/* line 182, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu:after,
.nav li ul.children:after {
  position: absolute;
  left: 20px;
  margin-left: 0px;
  top: -8px;
  width: 0;
  height: 0;
  content: '';
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 8px solid #533f1e;
}
/* line 194, ../scss/breakpoints/_768up.scss */
.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.
  */
}
/* line 196, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  color: #fff;
  text-decoration: none;
  text-align: left;
}
/* line 205, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus,
.nav li ul.children li a:hover,
.nav li ul.children li a:focus {
  text-decoration: none;
  color: #4e8abe;
}
/* line 211, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li a:link,
.nav li ul.children li a:link {
  text-decoration: none;
}
/* line 220, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
/* line 230, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li ul,
.nav li ul.children li ul {
  top: 0;
  left: 100%;
  border-left: none;
  border-right: none;
  border-bottom: none;
}
/* line 239, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li ul.sub-menu:after,
.nav li ul.sub-menu li ul.children:after,
.nav li ul.children li ul.sub-menu:after,
.nav li ul.children li ul.children:after {
  border-left: none;
  border-right: none;
  border-bottom: none;
}
/* line 256, ../scss/breakpoints/_768up.scss */
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}

/* end .nav */
/*********************
SIDEBARS & ASIDES
*********************/
/* line 276, ../scss/breakpoints/_768up.scss */
.sidebar {
  margin-top: 2.2em;
}

/* line 280, ../scss/breakpoints/_768up.scss */
.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em;
}

/* line 285, ../scss/breakpoints/_768up.scss */
.widget {
  padding: 0 10px;
  margin: 2.2em 0;
}
/* line 290, ../scss/breakpoints/_768up.scss */
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}
/* line 298, ../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 406, ../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 12, ../scss/breakpoints/_1030up.scss */
.wrap {
  width: 1024px;
}

/* line 16, ../scss/breakpoints/_1030up.scss */
.header {
  background-color: none;
}
/* line 18, ../scss/breakpoints/_1030up.scss */
.header #inner-header {
  position: relative;
}
/* line 20, ../scss/breakpoints/_1030up.scss */
.header #inner-header .right-header {
  position: absolute;
  top: 30px;
  right: 0;
}
/* line 25, ../scss/breakpoints/_1030up.scss */
.header #inner-header .main-header-menu {
  max-width: 575px;
  position: absolute;
  top: 55px;
  left: 220px;
}

/*
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 { ... }

*/
