/******************************************************************
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: 'HelveticaNeue-Light';
  src: url("HelveticaNeue-Light.eot?#iefix") format("embedded-opentype"), url("HelveticaNeue-Light.otf") format("opentype"), url("HelveticaNeue-Light.woff") format("woff"), url("HelveticaNeue-Light.ttf") format("truetype"), url("HelveticaNeue-Light.svg#HelveticaNeue-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 72, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: normal;
  word-break: normal;
  word-wrap: normal;
}

/******************************************************************
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 30, ../scss/breakpoints/_481up.scss */
header.header {
  background: #331720;
  /* Old browsers */
  background: -moz-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* FF3.6+ */
  background: -webkit-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* IE10+ */
  background: linear-gradient(left, #331720 30%, #ffff00 30%, #191f21 30%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$red', endColorstr='$black',GradientType=0 );
  /* IE6-9 */
}

/* line 40, ../scss/breakpoints/_481up.scss */
#logo {
  padding: 15px 0;
  margin: 0;
  float: left;
  line-height: 18px;
  font-weight: 100;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #331720;
  /* Old browsers */
  background: -moz-linear-gradient(left, #331720 100px, yellow 100px, #191f21 100px);
  /* FF3.6+ */
  background: -webkit-linear-gradient(left, #331720 100px, yellow 100px, #191f21 100px);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #331720 100px, yellow 100px, #191f21 100px);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #331720 100px, yellow 100px, #191f21 100px);
  /* IE10+ */
  background: linear-gradient(left, #331720 100px, #ffff00 100px, #191f21 100px);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$red', endColorstr='$black',GradientType=0 );
  /* IE6-9 */
}
/* line 57, ../scss/breakpoints/_481up.scss */
#logo a {
  color: white;
  font-weight: 200;
  line-height: 3rem;
}
/* line 65, ../scss/breakpoints/_481up.scss */
#logo span {
  line-height: 18px;
  color: white;
}

/* line 72, ../scss/breakpoints/_481up.scss */
#logo span {
  font-size: 20px;
  line-height: 18px;
  color: white;
  font-weight: 400;
}

/* line 79, ../scss/breakpoints/_481up.scss */
#headdetails {
  padding: 30px 0;
  margin: 0;
  line-height: 1px;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  float: right;
  font-size: 11px;
  text-align: right;
  position: relative;
  color: #fff;
  background-color: #000;
  width: auto;
}
/* line 92, ../scss/breakpoints/_481up.scss */
#headdetails a {
  color: white;
  font-size: 1.7em;
  font-weight: 100;
}
/* line 100, ../scss/breakpoints/_481up.scss */
#headdetails span {
  font-size: 16px;
  line-height: 18px;
  color: white;
}
/* line 105, ../scss/breakpoints/_481up.scss */
#headdetails h2 {
  font-size: 26px;
  background: none;
  margin: 0 0 5px 0;
  display: block;
  line-height: 1.2em;
  text-align: right;
  padding-right: 0;
}

/* line 116, ../scss/breakpoints/_481up.scss */
.one_third {
  width: 50%;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 123, ../scss/breakpoints/_481up.scss */
.wrap {
  padding: 0;
}

/* .menu is clearfixed inside mixins.scss */
/* line 127, ../scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}
/* line 128, ../scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 129, ../scss/breakpoints/_481up.scss */
.menu ul li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 130, ../scss/breakpoints/_481up.scss */
.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
*********************/
/* line 173, ../scss/breakpoints/_481up.scss */
.one_half, .one_third, .two_third, .three_fourth, .one_fourth {
  float: left;
  line-height: 21px;
  margin-bottom: 20px;
  position: relative;
  box-sizing: border-box;
}

/* line 174, ../scss/breakpoints/_481up.scss */
.one_half {
  width: 50%;
}

/* line 175, ../scss/breakpoints/_481up.scss */
.one_third, .one_third, .two_third, .one_fourth, .three_fourth {
  width: 50%;
}

/* line 176, ../scss/breakpoints/_481up.scss */
#home-widget, #latest-news {
  height: 235px;
}

/* line 179, ../scss/breakpoints/_481up.scss */
#home-widget .two_third {
  width: 100%;
}

/* line 180, ../scss/breakpoints/_481up.scss */
.rpwe-li {
  float: left;
  width: 45%;
}

/* line 182, ../scss/breakpoints/_481up.scss */
.rpwe-li.last {
  width: 55%;
}

/* line 184, ../scss/breakpoints/_481up.scss */
.one_fourth {
  width: 25%;
}

/* line 185, ../scss/breakpoints/_481up.scss */
.three_fourth {
  width: 75%;
}

/* line 186, ../scss/breakpoints/_481up.scss */
.one_half:last-child, .one_third:last-child, .two_third:last-child, .three_fourth:last-child, .one_fourth:last-child {
  clear: right;
}

/* entry content */
/* line 189, ../scss/breakpoints/_481up.scss */
.entry-content {
  /* at this larger size, we can start to align images */
}
/* line 193, ../scss/breakpoints/_481up.scss */
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
/* line 198, ../scss/breakpoints/_481up.scss */
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
/* line 203, ../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:
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
*********************/
/* line 22, ../scss/breakpoints/_768up.scss */
h1, .h1 {
  font-size: 1.5em;
  line-height: 2em;
  font-weight: 300;
}

/* line 28, ../scss/breakpoints/_768up.scss */
h2, .h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-bottom: 0.875em;
  font-weight: 300;
}

/* line 35, ../scss/breakpoints/_768up.scss */
h3, .h3 {
  font-size: 1.125em;
  line-height: 2em;
  font-weight: 300;
}

/* line 41, ../scss/breakpoints/_768up.scss */
h4, .h4 {
  font-size: 1.4em;
  line-height: 2em;
  font-weight: 300;
}

/* line 47, ../scss/breakpoints/_768up.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 53, ../scss/breakpoints/_768up.scss */
.mobonly {
  display: none;
}

/* line 54, ../scss/breakpoints/_768up.scss */
.one_third {
  width: 33.333%;
}

/* line 57, ../scss/breakpoints/_768up.scss */
.two_third {
  width: 66.666%;
}

/* line 58, ../scss/breakpoints/_768up.scss */
.one_fourth {
  width: 25%;
}

/* line 59, ../scss/breakpoints/_768up.scss */
.three_fourth {
  width: 75%;
}

/*********************
LAYOUT & GRID STYLES    
*********************/
/* line 63, ../scss/breakpoints/_768up.scss */
#container {
  max-width: 100%;
  overflow: hidden;
}

/* line 64, ../scss/breakpoints/_768up.scss */
#content {
  padding: 0;
}

/* line 65, ../scss/breakpoints/_768up.scss */
.wrap {
  width: 760px;
  padding: 0;
}

/* line 70, ../scss/breakpoints/_768up.scss */
#logo {
  float: left;
  padding-left: 0;
}

/* line 71, ../scss/breakpoints/_768up.scss */
.hentry header {
  max-width: 500px;
}

/*********************
HEADER STYLES
*********************/
/* line 79, ../scss/breakpoints/_768up.scss */
header.header {
  background: #331720;
  /* Old browsers */
  background: -moz-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* FF3.6+ */
  background: -webkit-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #331720 30%, yellow 30%, #191f21 30%);
  /* IE10+ */
  background: linear-gradient(left, #331720 30%, #ffff00 30%, #191f21 30%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$red', endColorstr='$black',GradientType=0 );
  /* IE6-9 */
}

/* line 89, ../scss/breakpoints/_768up.scss */
#logo {
  padding: 1.5em 0;
  margin: 0;
  line-height: 18px;
  font-weight: 100;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #331720;
  /* Old browsers */
  background: -moz-linear-gradient(left, #331720 200px, yellow 200px, #191f21 200px);
  /* FF3.6+ */
  background: -webkit-linear-gradient(left, #331720 200px, yellow 200px, #191f21 200px);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #331720 200px, yellow 200px, #191f21 200px);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #331720 200px, yellow 200px, #191f21 200px);
  /* IE10+ */
  background: linear-gradient(left, #331720 200px, #ffff00 200px, #191f21 200px);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$red', endColorstr='$black',GradientType=0 );
  /* IE6-9 */
}
/* line 105, ../scss/breakpoints/_768up.scss */
#logo a {
  color: white;
  font-size: 2.7em;
  font-weight: 200;
  line-height: 3rem;
}
/* line 114, ../scss/breakpoints/_768up.scss */
#logo span {
  font-size: 16px;
  line-height: 18px;
  color: white;
}

/* line 122, ../scss/breakpoints/_768up.scss */
#logo span {
  font-size: 20px;
  line-height: 18px;
  color: white;
  font-weight: 400;
}

/* line 128, ../scss/breakpoints/_768up.scss */
#menu-main-menu {
  margin-bottom: 15px;
}

/* line 131, ../scss/breakpoints/_768up.scss */
#headdetails {
  padding: 51px 10px 0 0;
}
/* line 134, ../scss/breakpoints/_768up.scss */
#headdetails h2 {
  font-size: 26px;
  background: none;
  margin: 0 0 5px 0;
  display: block;
  line-height: 1.2em;
  text-align: right;
  padding-right: 0;
}

/* line 144, ../scss/breakpoints/_768up.scss */
#mobile-nav-button {
  top: -140px;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 148, ../scss/breakpoints/_768up.scss */
.enquiry-box {
  display: block;
}

/* line 149, ../scss/breakpoints/_768up.scss */
.sidebar {
  margin-top: 0;
}

/* line 152, ../scss/breakpoints/_768up.scss */
#text-21 {
  padding: 0 10px;
  overflow: hidden;
}

/* line 153, ../scss/breakpoints/_768up.scss */
.widget {
  margin: 0;
}
/* line 158, ../scss/breakpoints/_768up.scss */
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}
/* line 166, ../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 274, ../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 */
/* line 288, ../scss/breakpoints/_768up.scss */
.entry-content .gallerygrid a {
  max-height: 160px;
}

/* line 289, ../scss/breakpoints/_768up.scss */
.frm_forms.frm_style_formidable-style.with_frm_style {
  max-width: 500px;
  direction: ltr;
}

/* line 295, ../scss/breakpoints/_768up.scss */
#frm_form_7_container .field_half {
  float: left !important;
  width: 45% !important;
  clear: none;
  margin-right: 5%;
  box-sizing: border-box;
  padding-left: 10px;
}
/* line 304, ../scss/breakpoints/_768up.scss */
#frm_form_7_container h3 {
  box-sizing: border-box;
  padding-left: 15px;
  margin: auto;
  text-align: center;
  display: block;
}
/* line 311, ../scss/breakpoints/_768up.scss */
#frm_form_7_container p {
  padding-left: 0;
}
/* line 314, ../scss/breakpoints/_768up.scss */
#frm_form_7_container textarea {
  width: 91% !important;
  margin-left: 3%;
  margin-right: 6%;
}

/* line 320, ../scss/breakpoints/_768up.scss */
#frm_form_7_container {
  margin: auto;
}

/* line 323, ../scss/breakpoints/_768up.scss */
#frm_form_7_container .frm_submit, #frm_form_7_container #frm_field_123_container.frm_form_field.form-field.horizontal_radio.frm_inline_container.field_half {
  padding-left: 15px;
}

/* line 327, ../scss/breakpoints/_768up.scss */
.slider.wrap {
  margin-top: 20px;
}

/******************************************************************
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: 1030px;
  padding: 0 20px;
}

/* line 16, ../scss/breakpoints/_1030up.scss */
.hentry header {
  max-width: 780px;
}

/* line 19, ../scss/breakpoints/_1030up.scss */
.rpwe-summary {
  font-size: 16px;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 23, ../scss/breakpoints/_1030up.scss */
#mainNav {
  display: table;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  left: auto;
  z-index: inherit;
}

/* line 24, ../scss/breakpoints/_1030up.scss */
#mainNav > div {
  display: table-cell;
  text-align: center;
  background: #fff;
}

/* line 25, ../scss/breakpoints/_1030up.scss */
#menu-main-menu > li {
  border-right: 1px solid #ccc;
  line-height: 20px;
}

/* line 26, ../scss/breakpoints/_1030up.scss */
#menu-main-menu > li:last-child {
  border-right: none;
}

/* line 27, ../scss/breakpoints/_1030up.scss */
#mobile-nav-button {
  display: none;
}

/* line 29, ../scss/breakpoints/_1030up.scss */
.nomob {
  display: block;
}

/* line 30, ../scss/breakpoints/_1030up.scss */
.sub-menu li:first-child {
  display: block;
}

/* line 32, ../scss/breakpoints/_1030up.scss */
nav ul {
  background: white;
  margin-top: 0;
  text-align: left;
  display: inline-block;
}

/* line 39, ../scss/breakpoints/_1030up.scss */
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 41, ../scss/breakpoints/_1030up.scss */
.nav li {
  float: left;
  position: relative;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
/* line 49, ../scss/breakpoints/_1030up.scss */
.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 */
}
/* line 57, ../scss/breakpoints/_1030up.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 59, ../scss/breakpoints/_1030up.scss */
.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;
}
/* line 76, ../scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
/* line 86, ../scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li ul,
.nav li ul.children li ul {
  top: 0;
  left: 100%;
}
/* line 101, ../scss/breakpoints/_1030up.scss */
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}

/* end .nav */
/* line 116, ../scss/breakpoints/_1030up.scss */
.nav li a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 0 0.75em;
}

/* line 122, ../scss/breakpoints/_1030up.scss */
.entry-content .gallerygrid a {
  max-height: none;
}

/* line 123, ../scss/breakpoints/_1030up.scss */
#home-widget .two_third {
  width: 66.666%;
}

/* line 124, ../scss/breakpoints/_1030up.scss */
.slider.wrap {
  margin-top: 0px;
}

/*
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 { ... }

*/
