/******************************************************************
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!

******************************************************************/
/*
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.
*/
/* import mixins */
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. 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.

******************************************************************/
* {
  -webkit-hyphens: manual !important;
  -moz-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*********************
CLEARFIXIN'
*********************/
.cf, #leftcol div:nth-of-type(3), .sticky-wrapper, ol, .cycle-slide, .imgcycle, .parallax-window {
  zoom: 1; }
  .cf:before, .cf:after, #leftcol div:nth-of-type(3):before, #leftcol div:nth-of-type(3):after, .sticky-wrapper:before, .sticky-wrapper:after, ol:before, ol:after, .cycle-slide:before, .cycle-slide:after, .imgcycle:before, .imgcycle:after, .parallax-window:before, .parallax-window:after {
    content: "";
    display: table; }
  .cf:after, #leftcol div:nth-of-type(3):after, .sticky-wrapper:after, ol:after, .cycle-slide:after, .imgcycle:after, .parallax-window:after {
    clear: both; }

/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* primary red */
/* dark grey */
/*#063861;  */
/* grey */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	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.
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/*********************
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);
*/
/*********************
Global Mixins for CSS3 prefix
*********************/
/*********************
Border Radius
*********************/
/*
USAGE: @include border-radius($small-border-radius);
*/
/*********************
CIRCLES
*********************/
/*
USAGE: @include border-radius($circle-border-radius);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/******************************
CSS VERTICALLY ALIGN A DIV
*******************************/
/*
USAGE: @include vertical-align;
*/
/*********************
OPACITY
*********************/
/*********************
BOX SIZING
*********************/
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* @include box-sizing(border-box); */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*********************
Align Center
*********************/
/*
USAGE: 
@include center(); 
@include center(true, false);
@include center(false, true); 
*/
/*********************
BUTTONS
*********************/
.button {
  padding: 0.75em 1.5em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #e42527;
  background: transparent;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  color: #e42527;
  margin-bottom: 0.25em;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .button:hover, .button:focus, .button.active {
    color: #fff;
    border: 2px solid #e42527;
    background: #e42527;
    opacity: 1;
    text-decoration: none; }
  .button:active {
    border: 2px solid #e42527;
    background: #e42527; }

a.Snip.button {
  text-transform: capitalize;
  margin: 1em 0;
  padding: 0.4em;
  display: block;
  width: 230px;
  text-align: center; }

.header .button, .connectwith .button, .respond-form .button {
  border: 2px solid #fff;
  color: #fff; }
  .header .button:hover, .header .button:focus, .connectwith .button:hover, .connectwith .button:focus, .respond-form .button:hover, .respond-form .button:focus {
    border: 2px solid #e42527;
    color: #fff; }

.connectwith .button {
  padding: 0.75em 1.5em; }

.respond-form .button, .registerbutton.existing, .registerbutton {
  border: 2px solid #e42527;
  padding: 0.75em 1.5em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  color: #e42527;
  margin-bottom: 0.25em; }
  .respond-form .button:hover, .respond-form .button:focus, .respond-form .button.active, .registerbutton.existing:hover, .registerbutton.existing:focus, .registerbutton.existing.active, .registerbutton:hover, .registerbutton:focus, .registerbutton.active {
    color: #fff;
    border: 2px solid #e42527;
    background: #e42527;
    opacity: 1;
    text-decoration: none; }
  .respond-form .button:active, .registerbutton.existing:active, .registerbutton:active {
    border: 2px solid #e42527;
    background: #e42527; }

.borderbutton {
  background: none;
  border: 2px solid #cccccc;
  color: #4d4d4d; }

.quotebutton, .printbutton {
  /*background:$color-primary;
  border-radius: 0;
  border: 2px solid $color-primary;*/ }
  .quotebutton .fa, .printbutton .fa {
    margin-right: 0.5em;
    margin-top: 0.3em; }
  .quotebutton span, .printbutton span {
    float: right;
    width: 50px; }

li.h6.button {
  padding: 0.75em 1.5em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #8c9297;
  background: transparent;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 0.25em;
  color: #8c9297;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  li.h6.button:hover, li.h6.button:focus, li.h6.button.active {
    color: #fff;
    border: 2px solid #e42527;
    background: #e42527;
    opacity: 1;
    text-decoration: none; }

/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.

The grid below is a combination of the 1140 grid and Twitter Boostrap. 
I liked 1140 but Boostrap's grid was way more detailed so I merged them 
together, let's see how this works out. If you want to use 1140, the original 
values are commented out on each line.

******************************************************************/
.onecol {
  width: 5.801104972%; }

/* 4.85%;  } /* grid_1  */
.twocol {
  width: 14.364640883%; }

/* 13.45%; } /* grid_2  */
.threecol {
  width: 22.928176794%; }

/* 22.05%; } /* grid_3  */
.fourcol {
  width: 31.491712705%; }

/* 30.75%; } /* grid_4  */
.fivecol {
  width: 40.055248616%; }

/* 39.45%; } /* grid_5  */
.sixcol {
  width: 48.618784527%; }

/* 48%;    } /* grid_6  */
.sevencol {
  width: 57.182320438000005%; }

/* 56.75%; } /* grid_7  */
.eightcol {
  width: 65.74585634900001%; }

/* 65.4%;  } /* grid_8  */
.ninecol {
  width: 74.30939226%; }

/* 74.05%; } /* grid_9  */
.tencol {
  width: 82.87292817100001%; }

/* 82.7%;  } /* grid_10 */
.elevencol {
  width: 91.436464082%; }

/* 91.35%; } /* grid_11 */
.twelvecol {
  width: 99.999999993%; }

/* 100%;   } /* grid_12 */
.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol {
  position: relative;
  float: left;
  margin-left: 2.762430939%; }

.first {
  margin-left: 0; }

.last {
  float: right; }

/******************************************************************
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.

******************************************************************/
/*********************
NAVIGATION STYLES
*********************/
/*********************
CONTENT STYLES
*********************/
#rightcol #industryBlocks .block:nth-child(even) {
  margin-right: 4px; }
#rightcol #industryBlocks .block:last-child {
  margin-right: 0; }

/* end #rightcol */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet (Portrait) & 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
*********************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, .testimonial p, .CaseStudy h3, .cd-top i {
  font-size: 200%; }

h2, .h2 {
  min-height: 24px; }

#leftcol .contentblocks li div p i {
  font-size: 300%; }

.connectwith .bigHeader {
  font-size: 4em;
  font-weight: 900; }

/*********************
HEADER STYLES
*********************/
body .header {
  min-height: 300px;
  height: 35vh;
  /*z-index: 8888;*/
  z-index: 3; }
  body .header > .block {
    min-height: 300px;
    height: 35vh; }
    body .header > .block p img {
      /*min-height:300px;
      height: 35vh;*/
      max-width: initial;
      height: initial;
      /*opacity: 0.5;*/ }
    body .header > .block .wrap {
      width: 90%; }

body.Home .header, body.Home .header .parallax-window, #footeryoutube, #imageslider {
  min-height: 400px;
  height: 99vh;
  padding: 0em 0em;
  position: relative; }

.parallax-mirror {
  background-color: #222222; }

body.Home .header {
  background-color: transparent; }

.header {
  /*background-color: transparent;*/ }
  .header .menu {
    margin: 0 auto;
    width: 100%; }
  .header .herotext {
    width: 80%;
    top: 70%; }

.ctas {
  position: absolute;
  bottom: 1em;
  width: 100%;
  z-index: 3;
  text-align: center;
  top: auto; }

/*********************
CONTENT STYLES
*********************/
#whitepaperbutton {
  color: #e42527;
  margin-top: 200px;
  text-align: center;
  border: 2px solid #e42527; }

#content {
  position: relative; }
  #content .row {
    /*padding-top: 1em;
    padding-bottom: 2em;*/
    /*margins not needed on any twelvecol - causing ipad scroll so removed*/ }
    #content .row .twelvecol {
      margin-left: 0%; }

hr {
  margin: 2em 0em; }

.ctas .fourcol {
  text-align: center;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5em;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .ctas .fourcol a:hover {
    text-decoration: none; }
  .ctas .fourcol:hover {
    background: #222222;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer; }
    .ctas .fourcol:hover i:last-child {
      -webkit-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      color: #e42527; }
  .ctas .fourcol i:first-child {
    display: block;
    font-size: 3rem; }
  .ctas .fourcol i:last-child {
    display: inline-block;
    font-size: 1.5rem; }
  .ctas .fourcol p {
    margin: 0;
    padding: 0; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1300px; }

.Home .row {
  max-width: 1300px; }

/*********************
BLOCK LAYOUT
**********************/
#leftcol div .contentblocks img {
  display: inline; }
#leftcol div .contentblocks li {
  background: #fff; }

#leftcol .sixcol {
  /*text-align: left;*/ }
#leftcol .filter p {
  display: inline-block;
  padding-right: 0.6em; }
#leftcol > div:nth-child(2) {
  /*.first ul {
  	float: right;
  }
  .last ul {
  	float: left;
  }*/ }
#leftcol div .contentblocks li {
  width: 30.2%;
  margin-right: 4%; }
  #leftcol div .contentblocks li p img {
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1; }
    #leftcol div .contentblocks li p img:hover {
      opacity: 0.8; }
  #leftcol div .contentblocks li:nth-child(2n+2) {
    margin-right: 4%; }
  #leftcol div .contentblocks li:nth-child(3n+3) {
    margin-right: 0; }
#leftcol > div:nth-child(3) div h4 {
  padding-top: 2em; }
#leftcol > div:nth-child(3) div ul li {
  /*display: inline-block;*/
  /*padding: 0.3em 1.5em 2% 1.5em;*/ }
#leftcol > div:nth-child(4) .youtubecontainer {
  width: 70%;
  margin: 1em auto; }
#leftcol article .first {
  text-align: center; }
#leftcol article .first, #leftcol article .last {
  width: 100%;
  float: none;
  margin-left: 0; }
#leftcol article .twelvecol {
  margin-left: 0; }

.columnlayout .newsBlock {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 0.75em;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top; }
  .columnlayout .newsBlock:nth-child(3), .columnlayout .newsBlock:nth-child(6), .columnlayout .newsBlock:nth-child(9) {
    margin-right: 0; }

/*********************
LEFTCOL
**********************/
#leftcol {
  min-height: 400px;
  /*padding: 0.5em;*/ }

.imgcycle {
  padding-top: 1em;
  padding-bottom: 2em; }

.sixcol .imgcycle {
  width: 31%; }

.slideshow_with_captions_container .slideshow_caption {
  left: 48%;
  width: 45%; }
  .slideshow_with_captions_container .slideshow_caption p {
    visibility: visible; }
    .slideshow_with_captions_container .slideshow_caption p span {
      font-size: 1.8em;
      color: #222222; }
  .slideshow_with_captions_container .slideshow_caption a.button {
    display: inline-block; }
.slideshow_with_captions_container a.prev, .slideshow_with_captions_container a.next {
  display: block;
  width: 50px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  visibility: hidden;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left; }
  .slideshow_with_captions_container a.prev:before, .slideshow_with_captions_container a.next:before {
    font-family: FontAwesome;
    display: block;
    visibility: visible;
    font-size: 3em;
    padding: 0 0.1em;
    /*background: rgba($black, 0.5);*/
    width: 0.5em;
    position: absolute;
    line-height: 0; }
.slideshow_with_captions_container a.prev {
  left: 0; }
  .slideshow_with_captions_container a.prev:before {
    content: "\f104";
    left: 0; }
.slideshow_with_captions_container a.next {
  right: 0;
  text-align: right; }
  .slideshow_with_captions_container a.next:before {
    content: "\f105";
    right: 0; }

/******************************
FULL WIDTH VIDEO - content section
******************************/
.fullwidth-window {
  min-height: 400px;
  height: 80vh; }

.videoPreLoad p {
  min-height: 400px;
  height: 80vh; }
  .videoPreLoad p img {
    width: 100% !important;
    height: 80vh;
    max-width: none; }

/******************************
PARALLAX BLOCKS - content section
******************************/
.parallax-window {
  padding: 2em 0em;
  min-height: 300px;
  /*height: 35vh;*/
  position: relative; }

/******************************
CASE STUDY BLOCKS (LEFT BLOCKS) 
******************************/
.CaseStudy > div.parallax-window {
  min-height: 400px;
  height: 50vh; }
.CaseStudy > div > div p:first-of-type {
  display: inline; }
.CaseStudy > div > div p .button {
  margin-top: 0.5em; }

/*********************
LEFT BLOCKS
*********************/
.leftBlocks {
  /* ul.childandsiblinglinks li{
  	display: inline-block;
  	
  	&:after{	
  		content: ' | ';
  		margin: 0 0.3em;
  	}
  	&:last-child:after{
  		content: none;
  	}
  	&:first-child:after{
  		content: none;
  	}
  	
  } */ }

/*********************
RIGHT BLOCKS
*********************/
/*********************
BOTTOM BLOCKS
*********************/
.designForum .bottomBlocks .block {
  width: 31.491712705%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  float: left;
  margin-left: 2.762430939%; }
  .designForum .bottomBlocks .block:first-child {
    margin-left: 0; }
  .designForum .bottomBlocks .block:nth-child(3n+3) {
    float: right; }

/*********************
NEWS LISTING
*********************/
div.listingImg {
  float: left;
  width: 40%; }

div.listingTxt {
  float: left;
  width: 58%;
  text-align: left;
  margin-left: 2%; }

div.caseStudy {
  float: left;
  width: 48%;
  padding: 1em 0 2em 0;
  position: relative;
  margin-right: 1.9%; }

/*********************
GALLERY
*********************/
#gallery li {
  width: 22.5%;
  margin-left: 2%;
  padding-top: 1em;
  padding-bottom: 1em; }

/*********************
VIDEOS
*********************/
.videoWrapper {
  margin-left: 0px;
  margin-right: 0px;
  min-height: 244px; }

/*********************
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!
*/
#newsBlocks .row .columnlayout {
  display: flex;
  justify-content: space-between; }
#newsBlocks .newsBlock {
  flex: 1; }

.middle {
  text-align: left;
  /*margin-top:1em;	*/ }

#firstFooter .first {
  text-align: left;
  /*margin-top:1em;*/ }
#firstFooter .last {
  text-align: right;
  margin-top: 1em; }

#firstFooter .last,
#secondFooter .last {
  text-align: right; }
#firstFooter ul,
#secondFooter ul {
  width: auto; }
  #firstFooter ul li,
  #secondFooter ul li {
    margin-left: 2em; }
#firstFooter #copyright,
#secondFooter #copyright {
  text-align: left; }
#firstFooter .fourcol:nth-child(2),
#secondFooter .fourcol:nth-child(2) {
  padding-left: 2em; }
#firstFooter #credit,
#secondFooter #credit {
  text-align: right; }

/*************************
PIE CHARTS
********************/
#leftcol .holdChart {
  list-style: none; }
  #leftcol .holdChart li {
    display: inline-block;
    width: 24%; }

.easyPieChart {
  position: relative;
  text-align: center; }

.easyPieChart canvas {
  position: absolute;
  top: 0;
  left: 0; }

.percentage,
.label {
  text-align: center;
  color: #333;
  font-weight: 100;
  font-size: 1.2em;
  margin-bottom: 0.3em; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  right: 20px;
  bottom: 20px; }

body.roombuilderindex #roomselect ul li, body.RoomBuilderindex #roomselect ul li {
  width: 20%; }

body.roombuilderindex #shortdesc, body.RoomBuilderindex #shortdesc {
  position: absolute; }

/*Account Control Panel*/
.topLine {
  background: #fff; }

/*Control Panel*/
#AccountCP {
  display: inline-block;
  margin-bottom: 0;
  width: 100%;
  /*Right side of Control Panel*/ }
  #AccountCP ul {
    margin: 0;
    list-style: none;
    float: right; }
    #AccountCP ul .ctrlPanelTitle {
      background: none; }
      #AccountCP ul .ctrlPanelTitle span {
        display: block;
        font-size: 150%;
        letter-spacing: -1px;
        padding: 1em 0.5em 1em 0.5em; }
    #AccountCP ul li {
      display: block;
      float: left;
      /*Control Panel title*/ }
      #AccountCP ul li a {
        display: block;
        /* 				padding: 0.2em 0.5em; 
         */
        border-top: none;
        border-bottom: none; }
    #AccountCP ul .myOrders a {
      background-position: center -200px; }
  #AccountCP ul#RightCP {
    float: right;
    text-align: right; }
    #AccountCP ul#RightCP li {
      display: inline;
      background: none; }
      #AccountCP ul#RightCP li a {
        display: block;
        float: left;
        padding: 3em 0.6em 1em 0;
        border: none;
        background: transparent none; }
      #AccountCP ul#RightCP li li:hover {
        background: transparent none; }

.paddedtable {
  margin-bottom: 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. 

******************************************************************/
.header #logo {
  position: fixed; }
.header .menu {
  padding: 0.25em 0 0em 0; }
.header .clearHeader {
  padding: 1.8em 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .clearHeader #logo {
    display: block;
    width: 220px;
    height: 89px;
    background-size: 220px 89px;
    margin: 0 auto;
    position: absolute;
    top: 0.25em;
    left: 5%;
    z-index: 9999; }
.header .darkHeader {
  padding: 1em 0;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.64);
  z-index: 999999999999;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .darkHeader #logo {
    background-image: url("../images/logo_icon.png");
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
.header #ninecol {
  position: relative; }
  .header #ninecol ul li {
    float: none;
    padding: 0.1em 0; }

/* 
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/
******************************************************************/
/* IE 8 and below Target every third home services div to remove right padding - adjascent slibling selectors*/
/*target every 3r'd*/
.columnlayout div + div + div,
.columnlayout div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
.columnlayout div + div + div + div,
.columnlayout div + div + div + div + div + div + div {
  margin-right: 2%; }

/*# sourceMappingURL=ie.css.map */
