/******************************************************************
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/
*/
/*********************
MEASUREMENTS
*********************/
@import url("http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css");
@import url("http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css");
/* line 72, ../scss/partials/_variables.scss */
.clear-floats {
  clear: both;
}

/******************************************************************
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

******************************************************************/
/******************************************************************
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? */
/*********************
MEDIA QUERIES
*********************/
/* line 170, ../scss/partials/_mixins.scss */
.no-gutter {
  padding-left: 0;
  padding-right: 0;
}

/*********************
FONT SIZING
*********************/
/* What I'll do first in here is handle the font-sizing, i have taken over this snippet from CSS Tricks:
 * http://css-tricks.com/rems-ems/
 *
 *
/* Document level adjustments */
/* line 34, ../scss/partials/_typography.scss */
html {
  font-size: 16px;
  /* These settings smoothen the font, when you turn it off the font will look bolder */
}
@media (max-width: 767px) {
  /* line 34, ../scss/partials/_typography.scss */
  html {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 34, ../scss/partials/_typography.scss */
  html {
    font-size: 13px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 34, ../scss/partials/_typography.scss */
  html {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  /* line 34, ../scss/partials/_typography.scss */
  html {
    font-size: 16px;
  }
}

/* Modules will scale with document */
/* line 60, ../scss/partials/_typography.scss */
.header {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* line 65, ../scss/partials/_typography.scss */
.content-sidebar-container, .content-container {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* line 70, ../scss/partials/_typography.scss */
.right-content-container {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* line 75, ../scss/partials/_typography.scss */
.footer {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Type will scale with modules, so handle all measures with 'em' from now on instead of 'px' */
/*********************
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.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 122, ../scss/partials/_typography.scss */
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: 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";
}

/*
 first things first
*/
/* line 147, ../scss/partials/_typography.scss */
body {
  font-family: "Open Sans", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #5b656c;
}

/*********************
LINK STYLES
*********************/
/* line 159, ../scss/partials/_typography.scss */
a, a:visited {
  color: #464e53;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 163, ../scss/partials/_typography.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #31363a;
}
/* line 173, ../scss/partials/_typography.scss */
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);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 187, ../scss/partials/_typography.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 400;
  margin: 0;
  line-height: 1.4em;
  /*
  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 */
}
/* line 198, ../scss/partials/_typography.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 204, ../scss/partials/_typography.scss */
h1, .h1 {
  font-size: 2.5em;
}

/* line 209, ../scss/partials/_typography.scss */
h2, .h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* line 214, ../scss/partials/_typography.scss */
h3, .h3 {
  font-size: 1.3em;
}

/* line 218, ../scss/partials/_typography.scss */
h4, .h4 {
  font-size: 1.1em;
}

/* line 222, ../scss/partials/_typography.scss */
h5, .h5 {
  font-size: 0.846em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/******************************************************************
BUTTONS
******************************************************************/
/* line 233, ../scss/partials/_typography.scss */
.btn, .btn-main, .btn-main:visited, .btn-secondary, .btn-secondary:visited, .btn-gray, .btn-gray:visited {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 6px 15px;
}

/* line 241, ../scss/partials/_typography.scss */
.btn-main, .btn-main:visited {
  color: #fff;
  background: #7298af;
}
/* line 249, ../scss/partials/_typography.scss */
.btn-main:hover, .btn-main:focus, .btn-main:visited:hover, .btn-main:visited:focus {
  background: #93b0c1;
}

/* line 259, ../scss/partials/_typography.scss */
.btn-secondary, .btn-secondary:visited {
  color: #fff;
  background: #6a2e46;
}
/* line 267, ../scss/partials/_typography.scss */
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:visited:hover, .btn-secondary:visited:focus {
  background: #8e3d5e;
  color: #fff;
}

/* line 278, ../scss/partials/_typography.scss */
.btn-gray, .btn-gray:visited {
  color: #fff;
  background: #717171;
}
/* line 286, ../scss/partials/_typography.scss */
.btn-gray:hover, .btn-gray:focus, .btn-gray:visited:hover, .btn-gray:visited:focus {
  background: #8b8b8b;
}

/******************************************************************
CONTENT ELEMENT STYLES
******************************************************************/
/* line 298, ../scss/partials/_typography.scss */
p, ul, ol, span {
  margin: 0;
  padding: 0;
  font-size: 1em;
}

/* line 304, ../scss/partials/_typography.scss */
ul, ol {
  list-style: none;
  list-style-position: outside;
}

/* line 316, ../scss/partials/_typography.scss */
blockquote {
  color: #8e3d5e;
}

/* line 320, ../scss/partials/_typography.scss */
.inside {
  padding-left: 30px !important;
  display: block !important;
}

/******************************************************************
MAIN CONTENT CONTAINER STYLES
******************************************************************/
/* line 331, ../scss/partials/_typography.scss */
#inner-main-content h1, #inner-main-content .h1 {
  font-size: 1.4em;
  color: #8e3d5e;
  border-bottom: 1px solid #e8d9e0;
  padding-bottom: 15px;
  text-transform: uppercase;
}
/* line 339, ../scss/partials/_typography.scss */
#inner-main-content h1.page-title {
  color: #8e3d5e;
  font-size: 1.4em;
  text-transform: uppercase;
  border-bottom: 1px solid #e8d9e0;
  padding-bottom: 15px;
  text-transform: uppercase;
}
/* line 348, ../scss/partials/_typography.scss */
#inner-main-content h2, #inner-main-content .h2 {
  color: #7298af;
  font-size: 1.3em;
  text-transform: uppercase;
}
/* line 355, ../scss/partials/_typography.scss */
#inner-main-content h3, #inner-main-content .h3 {
  font-size: 1.3em;
  margin-top: 15px;
  margin-bottom: 15px;
}
/* line 362, ../scss/partials/_typography.scss */
#inner-main-content h4, #inner-main-content .h4 {
  margin-top: 15px;
  margin-bottom: 15px;
}
/* line 367, ../scss/partials/_typography.scss */
#inner-main-content h5, #inner-main-content .h5 {
  margin-top: 15px;
  margin-bottom: 15px;
}
/* line 374, ../scss/partials/_typography.scss */
#inner-main-content article header.article-header {
  margin-bottom: 30px;
}
/* line 382, ../scss/partials/_typography.scss */
#inner-main-content article section.entry-content p {
  margin-bottom: 30px;
}
/* line 387, ../scss/partials/_typography.scss */
#inner-main-content article section.entry-content ul {
  list-style: disc;
  list-style-position: inside;
  margin-top: 15px;
  margin-bottom: 30px;
}
/* line 395, ../scss/partials/_typography.scss */
#inner-main-content article section.entry-content ol {
  list-style: decimal;
  list-style-position: inside;
  margin-top: 15px;
  margin-bottom: 30px;
}
/* line 405, ../scss/partials/_typography.scss */
#inner-main-content article section.entry-content img.alignleft {
  float: left;
  margin-right: 30px;
}
/* line 412, ../scss/partials/_typography.scss */
#inner-main-content article section.entry-content img.alignright {
  float: right;
  margin-left: 30px;
}
/* line 424, ../scss/partials/_typography.scss */
#inner-main-content article footer.article-footer {
  margin-top: 15px;
}
/* line 428, ../scss/partials/_typography.scss */
#inner-main-content article footer.article-footer:empty {
  margin-top: 0px;
}

/* line 443, ../scss/partials/_typography.scss */
.home #inner-main-content h2 {
  color: #717171;
}

/******************************************************************
SIDEBAR CONTENT STYLES
******************************************************************/
/* line 458, ../scss/partials/_typography.scss */
#right-content-container h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

/******************************************************************
ARCHIVE PAGE TYPO STYLES
******************************************************************/
/* line 471, ../scss/partials/_typography.scss */
.archive .page-title, .search .page-title {
  margin-bottom: 15px;
}
/* line 475, ../scss/partials/_typography.scss */
.archive article, .search article {
  border-bottom: 1px solid #e8d9e0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
/* line 479, ../scss/partials/_typography.scss */
.archive article header.article-header h2, .search article header.article-header h2 {
  color: #7298af !important;
  font-size: 0.9em;
}
/* line 486, ../scss/partials/_typography.scss */
.archive article header.article-header .post-date, .search article header.article-header .post-date {
  font-style: italic;
  color: #7298af;
}
/* line 498, ../scss/partials/_typography.scss */
.archive article:last-of-type, .search article:last-of-type {
  border-bottom: none;
}

/******************************************************************
SINGLE PAGE TYPO STYLES
******************************************************************/
/* line 516, ../scss/partials/_typography.scss */
.single article header .post-date {
  font-style: italic;
  color: #8e3d5e;
}

/******************************************************************
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? */
/*********************
MEDIA QUERIES
*********************/
/* line 170, ../scss/partials/_mixins.scss */
.no-gutter {
  padding-left: 0;
  padding-right: 0;
}

/******************************************************************
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.
*/
/*********************
NAVIGATION STYLES
*********************/
/*********************
POSTS & CONTENT STYLES
*********************/
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* 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
*********************/
/*********************
HEADER STYLES
*********************/
/*********************
NAVIGATION STYLES
*********************/
/*********************
SIDEBARS & ASIDES
*********************/
/*********************
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 50, ../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.

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

*/
