/******************************************************************
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: 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.
*/
/*********************
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 */
/*********************
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 */
/*********************
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
*********************/
body {
  padding: 0;
  min-height: 1340px; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 1040px;
  padding: 0 10px; }

select::-ms-expand {
  display: none; }

/*********************
HEADER STYLES
*********************/
/*********************
NAVIGATION STYLES
*********************/
#inner-header {
  position: relative; }
  #inner-header nav {
    display: inline;
    min-height: none;
    position: relative;
    width: auto;
    left: auto;
    margin: 0 auto;
    text-align: center;
    padding: auto;
    min-height: none;
    top: auto;
    z-index: 0; }

.language-selector {
  position: absolute;
  top: 20px;
  margin-top: 0;
  right: 10px;
  font-size: 10px;
  color: #acdb90;
  font-weight: bold; }
  .language-selector a {
    color: #acdb90;
    text-decoration: none; }
  .language-selector a:hover {
    color: #acdb90;
    text-decoration: underline; }

.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav ul {
    background: black;
    margin-top: 0; }
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */ }
    .nav li a {
      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: white;
        text-decoration: underline; }
    .nav li ul.sub-menu,
    .nav li ul.children {
      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; }

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

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

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

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

******************************************************************/
#content {
  margin-top: 0px; }

#logo img {
  width: 280px; }

#menu-main {
  display: block;
  position: relative;
  background-color: #fdf9ee;
  width: 100%;
  top: auto;
  z-index: 0;
  left: auto;
  padding: 0; }
  #menu-main li {
    color: #CAE7B4; }
    #menu-main li:first-child a {
      padding: 0.75em 2em 0.75em 0; }
    #menu-main li:last-child a {
      padding: 0.75em 0 0.75em 2em; }
    #menu-main li:nth-child(odd) {
      background-color: #fdf9ee; }
    #menu-main li a {
      padding: 0.75em 2.7em;
      color: black;
      font-size: 0.85em; }
      #menu-main li a:hover {
        color: #acdb90; }
  #menu-main li.current-menu-item a,
  #menu-main li.current_page_item a,
  #menu-main li.current-page-ancestor a {
    color: #acdb90; }

#home-building {
  display: none; }

.mobile-home-featured-image {
  display: none; }

.tcs {
  float: right;
  width: 240px;
  text-align: right; }

.home .home-content {
  position: relative; }
  .home .home-content .wp-post-image, .home .home-content .fin-rel {
    display: block;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
    margin: 0;
    width: 160px;
    height: 160px; }
  .home .home-content .fin-rel {
    right: auto;
    left: 0;
    top: 0; }
  .home .home-content.entry-content p {
    margin: 0; }
.home .post-43.hentry {
  display: none; }
.home a.button, .home a.button:visited {
  background-color: black;
  float: right;
  text-align: center;
  padding: 15px 20px;
  margin-top: -40px;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  min-width: 0;
  font-family: 'nexabold', "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .home a.button:hover, .home a.button:visited:hover {
    background-color: #464646;
    color: white; }
.home #content {
  margin-top: 0; }
.home #logo {
  margin-top: 1em; }
  .home #logo img {
    width: 280px; }
.home .home-arrow, .home .header .homes-leaves {
  display: none; }
.home .metaslider.metaslider-10 {
  display: inline-block; }
.home hr {
  display: none; }
.home .entry-content h1, .home .entry-content h2, .home .entry-content p {
  padding: 0; }
.home .entry-content h1 {
  margin-top: 0;
  padding-bottom: 8px;
  float: left;
  letter-spacing: 1px;
  font-size: 1.13em; }
.home .entry-content h2 {
  font-size: 2.5em;
  float: left;
  padding-top: 0.5em;
  margin-bottom: 7px; }

#popmake-192, #popmake-220, #popmake-226 {
  padding: 40px !important;
  margin: 0px !important;
  top: 80px !important;
  position: fixed; }
  #popmake-192 .popmake-title, #popmake-220 .popmake-title, #popmake-226 .popmake-title {
    font-size: 1.3em !important; }

#thankyoupop {
  text-align: center;
  min-height: 450px; }
  #thankyoupop h2 {
    color: black; }
  #thankyoupop p {
    color: black !important;
    font-family: 'nexabold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    text-transform: uppercase; }

#menu-item-27 {
  display: block; }

#menu-item-53 {
  display: none; }

#menu-main #menu-item-69 {
  background-color: #fdf9ee !important;
  font-family: 'nexaregular', "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.fix-right {
  float: right;
  padding-right: 0; }

.mobile-nav {
  display: none; }

.entry-content {
  text-align: left; }
  .entry-content hr {
    margin: 50px 30px; }
  .entry-content img {
    margin: 1em 0; }
  .entry-content h3 {
    display: none; }
  .entry-content h1 {
    padding: 75px 30px 0;
    letter-spacing: 1px; }

.post-32 h1 {
  padding: 40px 30px 0; }

.post-15 h1, .post-215 h1, .post-220 h1 {
  padding: 19px 30px 0; }

.post-215 a.button, .post-215 a.button:visited, .post-220 a.button, .post-220 a.button:visited {
  background-color: black;
  line-height: 1.3;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  min-width: 0;
  margin-top: 10px;
  font-family: 'nexabold', "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .post-215 a.button:hover, .post-215 a.button:visited:hover, .post-220 a.button:hover, .post-220 a.button:visited:hover {
    background-color: #464646;
    color: white; }
.post-215 hr, .post-220 hr {
  margin: 36px 30px; }

.popmake.responsive .popmake-content img {
  width: 100%; }

.page-template-page-register-php .fix-right, .page-template-page-thankyou-php .fix-right {
  display: block;
  text-align: center; }
  .page-template-page-register-php .fix-right hr, .page-template-page-thankyou-php .fix-right hr {
    margin: 30px auto; }
.page-template-page-register-php .post-75 .entry-content .rego-menu h1, .page-template-page-thankyou-php .post-75 .entry-content .rego-menu h1 {
  font-family: "caslongraphiqueefregular", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 1.8em;
  text-transform: none;
  padding-top: 0px; }
.page-template-page-register-php .post-75 .entry-content .rego-menu h2, .page-template-page-thankyou-php .post-75 .entry-content .rego-menu h2 {
  padding-bottom: 20px;
  font-family: 'nexaregular', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  text-transform: uppercase;
  font-size: 1em; }
.page-template-page-register-php .post-75 .entry-content .rego-menu hr, .page-template-page-thankyou-php .post-75 .entry-content .rego-menu hr {
  background-color: black;
  display: inline-block;
  margin: 30px; }
.page-template-page-register-php .entry-content, .page-template-page-thankyou-php .entry-content {
  background-color: transparent;
  margin: 0; }
  .page-template-page-register-php .entry-content h1, .page-template-page-register-php .entry-content h2, .page-template-page-register-php .entry-content p, .page-template-page-register-php .entry-content .wpcf7 .wpcf7-list-item-label, .page-template-page-thankyou-php .entry-content h1, .page-template-page-thankyou-php .entry-content h2, .page-template-page-thankyou-php .entry-content p, .page-template-page-thankyou-php .entry-content .wpcf7 .wpcf7-list-item-label {
    color: black; }
  .page-template-page-register-php .entry-content hr, .page-template-page-thankyou-php .entry-content hr {
    background-color: black;
    display: none; }
  .page-template-page-register-php .entry-content p.submit-np, .page-template-page-thankyou-php .entry-content p.submit-np {
    padding: 10px 30px;
    position: relative; }
  .page-template-page-register-php .entry-content .rego-menu h1, .page-template-page-register-php .entry-content .fix-right h1, .page-template-page-register-php .entry-content .page-id-75 h1, .page-template-page-thankyou-php .entry-content .rego-menu h1, .page-template-page-thankyou-php .entry-content .fix-right h1, .page-template-page-thankyou-php .entry-content .page-id-75 h1 {
    font-family: "caslongraphiqueefregular", "Georgia", Cambria, Times New Roman, Times, serif;
    font-size: 1.8em;
    text-transform: none;
    padding-top: 0px; }
  .page-template-page-register-php .entry-content .rego-menu h2, .page-template-page-register-php .entry-content .fix-right h2, .page-template-page-register-php .entry-content .page-id-75 h2, .page-template-page-thankyou-php .entry-content .rego-menu h2, .page-template-page-thankyou-php .entry-content .fix-right h2, .page-template-page-thankyou-php .entry-content .page-id-75 h2 {
    padding-bottom: 20px; }
  .page-template-page-register-php .entry-content .rego-menu, .page-template-page-thankyou-php .entry-content .rego-menu {
    min-height: 450px;
    background-color: rgba(255, 255, 255, 0.8);
    padding-right: 0; }
    .page-template-page-register-php .entry-content .rego-menu input[type="text"], .page-template-page-register-php .entry-content .rego-menu input[type="password"], .page-template-page-register-php .entry-content .rego-menu input[type="datetime"], .page-template-page-register-php .entry-content .rego-menu input[type="datetime-local"], .page-template-page-register-php .entry-content .rego-menu input[type="date"], .page-template-page-register-php .entry-content .rego-menu input[type="month"], .page-template-page-register-php .entry-content .rego-menu input[type="time"], .page-template-page-register-php .entry-content .rego-menu input[type="week"], .page-template-page-register-php .entry-content .rego-menu input[type="number"], .page-template-page-register-php .entry-content .rego-menu input[type="email"], .page-template-page-register-php .entry-content .rego-menu input[type="url"], .page-template-page-register-php .entry-content .rego-menu input[type="search"], .page-template-page-register-php .entry-content .rego-menu input[type="tel"], .page-template-page-register-php .entry-content .rego-menu input[type="color"], .page-template-page-register-php .entry-content .rego-menu select, .page-template-page-register-php .entry-content .rego-menu textarea, .page-template-page-register-php .entry-content .rego-menu .field, .page-template-page-thankyou-php .entry-content .rego-menu input[type="text"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="password"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="datetime"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="datetime-local"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="date"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="month"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="time"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="week"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="number"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="email"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="url"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="search"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="tel"], .page-template-page-thankyou-php .entry-content .rego-menu input[type="color"], .page-template-page-thankyou-php .entry-content .rego-menu select, .page-template-page-thankyou-php .entry-content .rego-menu textarea, .page-template-page-thankyou-php .entry-content .rego-menu .field {
      color: black;
      border-color: black; }
    .page-template-page-register-php .entry-content .rego-menu ::-webkit-input-placeholder, .page-template-page-thankyou-php .entry-content .rego-menu ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: black; }
    .page-template-page-register-php .entry-content .rego-menu :-moz-placeholder, .page-template-page-thankyou-php .entry-content .rego-menu :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: black;
      opacity: 1; }
    .page-template-page-register-php .entry-content .rego-menu ::-moz-placeholder, .page-template-page-thankyou-php .entry-content .rego-menu ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: black;
      opacity: 1; }
    .page-template-page-register-php .entry-content .rego-menu :-ms-input-placeholder, .page-template-page-thankyou-php .entry-content .rego-menu :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: black; }

#text-4 {
  margin-top: 6.45em; }

#text-2 {
  display: none; }

.widget {
  padding: 0; }

#text-5 {
  padding-right: 0;
  padding-left: 30px;
  float: right;
  margin-bottom: 0; }
  #text-5 img {
    float: right; }

.footnav {
  float: right; }

#menu-item-117 a {
  padding-right: 0; }

#menu-footer {
  float: right;
  margin-top: 9px; }
  #menu-footer li a {
    color: black;
    text-decoration: underline; }
    #menu-footer li a:hover {
      text-decoration: none; }

.hentry {
  background-size: cover; }

.popmake-content p {
  margin: 0;
  padding: 0; }
.popmake-content img {
  display: block; }

.popmake-close {
  font-family: 'nexabold', "Helvetica Neue", Helvetica, Arial, sans-serif !important; }

.wpcf7 .wpcf7-submit {
  padding: 10px 0 10px 12px;
  font-size: 1.2em;
  text-align: left; }
.wpcf7 .submit-arrow {
  color: white;
  position: absolute;
  top: 6px;
  right: 40px;
  font-size: 1.8em;
  display: inline; }
.wpcf7 .ajax-over {
  background-color: white;
  opacity: 0.8;
  position: absolute;
  top: -400px;
  left: 0;
  width: 100%;
  height: 464px;
  display: none; }
  .wpcf7 .ajax-over img.ajax-loader {
    top: 50%;
    position: absolute;
    left: 50%;
    margin: -8px 0 0 -8px; }

a.button {
  background-color: transparent;
  color: black;
  text-decoration: underline;
  border: none;
  padding: 0 20px 0 0;
  font-size: 1em;
  text-transform: uppercase;
  font-family: 'nexabold', "Helvetica Neue", Helvetica, Arial, sans-serif !important; }
  a.button:visited, a.button:focus, a.button:visited:focus {
    color: black; }
  a.button:visited:hover {
    color: #acdb90; }

.hom {
  display: inline-block; }

.hod {
  display: none; }

a.button.hom {
  display: inline-block; }

a.button.hod {
  display: none; }

.metaslider .caption-wrap {
  display: inline !important;
  background-color: transparent !important;
  color: black !important;
  bottom: -30px !important; }
.metaslider .caption {
  text-align: right;
  font-family: 'nexaregular', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.7em;
  letter-spacing: 1.5px; }
  .metaslider .caption span {
    font-family: 'nexabold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: bold; }
  .metaslider .caption div.goleft {
    float: left; }

.rich-button {
  display: inline-block;
  color: white;
  text-align: center;
  transition: all 0.5s ease-in-out;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }
  .rich-button:hover, .rich-button:visited, .rich-button:focus, .rich-button:visited:hover, .rich-button:visited:focus {
    color: white;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%); }
  .rich-button h2 {
    padding: 3em 0 2.5em;
    font-size: 1.9em;
    text-shadow: 0 0 6px #000; }
  .rich-button div {
    background-size: cover;
    background-position: center center;
    transition: all 0.1s ease-in-out; }

.top-footer .location-button.d-1of4 {
  padding-right: 0 !important; }

.blog .d-1of3 {
  padding-right: 0;
  margin-right: 1.33%;
  width: 32.33%; }
.blog .d-1of3:last-child {
  margin-right: 0; }
.blog .entry-content {
  padding: 1.8em; }
  .blog .entry-content hr {
    margin: 30px 0; }
  .blog .entry-content p {
    padding: 0;
    text-align: left;
    min-height: 320px; }
.blog img {
  margin-bottom: 0; }

.footer {
  clear: both;
  background-color: #fdf9ee;
  color: black;
  display: block;
  font-size: 0.85em; }
  .footer .bottom-footer {
    border-top: 1px solid black; }
  .footer .top-footer {
    border-top: 1px solid black;
    margin-top: 26px;
    padding: 20px 0; }

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

******************************************************************/
#menu-main {
  display: block;
  position: relative;
  background-color: #fdf9ee;
  width: 100%;
  top: auto;
  z-index: 0;
  left: auto;
  padding: 0; }
  #menu-main li {
    color: #CAE7B4; }
    #menu-main li:first-child a {
      padding: 0.75em 2.7em 0.75em 0; }
    #menu-main li:last-child a {
      padding: 0.75em 0 0.75em 2.7em; }
    #menu-main li:nth-child(odd) {
      background-color: #fdf9ee; }
    #menu-main li a {
      padding: 0.75em 2.62em;
      color: black;
      font-size: 0.85em; }
      #menu-main li a:hover {
        color: #acdb90; }
  #menu-main li.current-menu-item a,
  #menu-main li.current_page_item a,
  #menu-main li.current-page-ancestor a {
    color: #acdb90; }

video, .wp-video, .mejs-container, .mejs-poster, .mejs-overlay {
  width: 1040px    !important;
  height: 585px   !important; }

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