/******************************************************************
Site Name: 
Author: Kook

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.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.cf {
  zoom: 1; }
  .cf:before, .cf:after {
    content: "";
    display: table; }
  .cf: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/
*********************/
/* Darkest Blue */
/* Gold */
/* Charcoal */
/* smoke white */
/*
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.
*/
/*	@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;
	}
*/
/*
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);
*/
/*needed for when using scroll-down easing to anchor point on page*/
.scrollpoint {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden; }

/*********************
Border Radius
*********************/
/*
USAGE: @include border-radius($small-border-radius);
*/
/*********************
Image zoom
*********************/
/*
USAGE: @include transform($zoom);
*/
/*********************
Align Center
*********************/
/*
USAGE: 
@include center(); 
@include center(true, false);
@include center(false, true); 
*/
/*********************
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
*********************/
/* 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; }

/********************************************
MIXIN CREATED FOR WHEN YOU NEED A BREAKPOINT
********************************************/
/*
USAGE: @include bp(baby-screen) {
    width: 100%;
  }
*/
/*********************
BUTTONS
*********************/
.button, button {
  padding: 0.4em 1.5em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #b5912e;
  background: #b5912e;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 300; }
  .button:hover, .button:focus, button:hover, button:focus {
    background: #232323;
    border: 2px solid #232323;
    padding: 0.4em 1.5em;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .button:active, button:active {
    background: #b5912e; }

.button.secondary {
  background: #232323;
  border: 2px solid #232323; }
  .button.secondary:hover, .button.secondary:focus, .button.secondary:active {
    background: black;
    background: 2px solid black;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

#imageslider .button, #bottomblocks .button {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  #imageslider .button:before, #bottomblocks .button:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    opacity: 0;
    position: relative;
    float: right;
    margin-right: -2em;
    font-size: large;
    line-height: 1.6;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  #imageslider .button:hover, #imageslider .button:focus, #imageslider .button:active, #bottomblocks .button:hover, #bottomblocks .button:focus, #bottomblocks .button:active {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    #imageslider .button:hover:before, #imageslider .button:focus:before, #imageslider .button:active:before, #bottomblocks .button:hover:before, #bottomblocks .button:focus:before, #bottomblocks .button:active:before {
      opacity: 1;
      margin-right: -1em; }

/******************************************************************
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.

******************************************************************/
/******************************************************************
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!

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
.slideshow_caption p.h1, .heading h1 {
  font-size: 2em; }

#footer {
  font-size: 0.9em; }

blockquote .h2, body.Home #topblocks h2 {
  font-size: 1.6em; }

.slideshow_caption a.button, #bottomblocks .button {
  font-size: 1.1em; }

/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1240px; }

header .row {
  max-width: 1600px; }

/*********************
HEADER STYLES
*********************/
/*Set height of parallax on home to be bigger than inner pages */
.header .parallax-window {
  height: 400px; }

.header .menu {
  margin: 0 auto;
  width: 100%;
  padding: 1em; }

.header .phone {
  line-height: 3;
  position: relative;
  text-align: right; }
  .header .phone span {
    display: inline-block;
    margin: 0 0.5em; }
  .header .phone .email {
    display: inline-block; }
  .header .phone .button {
    float: none; }

.header #logo {
  position: absolute;
  top: 0.5em;
  left: 2%; }

/***********************
HERO - INNER PAGES
************************/
#hero .topBlock h1, #hero .topBlock .h1 {
  padding: .5em 1em;
  width: auto;
  bottom: inherit;
  position: absolute;
  top: 49.8%;
  left: 49.8%;
  -webkit-transform: translate3d(-50.2%, -50.2%, 0);
  -ms-transform: translate3d(-50.2%, -50.2%, 0);
  -ms-transform: translateX(-50%) translateY(-50%);
  /*correction for IE9*/
  transform: translate3d(-50.2%, -50.2%, 0); }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  width: 95%; }

.topMenu {
  text-align: right; }
  .topMenu a.toggleMenu {
    margin-top: 0.75em;
    padding: 2% 4%; }

/*********************
CONTENT STYLES
*********************/
/* content area all inner pages */
blockquote:before {
  /*margin-bottom:5em;*/
  float: left;
  font-size: 2em; }

/*********************
HOME STYLES
*********************/
body.Home #content #leftcol {
  /*end odd rows*/
  /*end even rows*/ }
  body.Home #content #leftcol > div {
    height: 310px;
    width: 48%;
    margin-left: 2%;
    float: left;
    text-align: center;
    display: inline-block;
    vertical-align: middle; }
    body.Home #content #leftcol > div:nth-child(even) {
      margin-left: 0;
      float: right; }
    body.Home #content #leftcol > div:last-child {
      display: none; }
    body.Home #content #leftcol > div > div {
      text-align: center; }
  body.Home #content #leftcol > div:nth-of-type(even) > div > div.first {
    float: right; }
  body.Home #content #leftcol > div:nth-of-type(even) > div > div.last {
    float: left;
    margin-left: 0; }

body.Home #content #leftcol > div > div > div.last img body.Landing #content #leftcol > div {
  padding: 4em 0; }

/*********************
BLOCK LAYOUT
**********************/
.columnlayout > div {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top; }
  .columnlayout > div div {
    width: auto; }

/*********************************
TOP BLOCKS
*********************************/
body.Home #topblocks {
  /*padding: 4em 0 1em 0;*/
  /*.columnlayout {
		> div {
			width: 31.491712705%;
			margin-right: 2.762430939%;
			min-height: 381.25px;
			&:nth-child(3n) {
				margin-right: 0;
			}
		}
	}*/ }
  body.Home #topblocks .block .threecol {
    margin-bottom: 0; }

/*********************************
BOTTOM BLOCKS
*********************************/
#bottomblocks .parallax-window {
  padding: 3em 0; }
  #bottomblocks .parallax-window .borderWrap {
    width: 60%; }

/*********************
RIGHT BLOCKS
*********************/
#rightcol {
  /*margin-top: 0;*/ }

/*********************
NEWS LISTING
*********************/
div.listingImg {
  float: left;
  width: 30%; }

div.listingTxt {
  float: left;
  width: 70%; }

div.caseStudy {
  float: left;
  width: 48%;
  padding: 1em 0 2em 0;
  position: relative;
  margin-right: 1.9%; }

/*********************
GALLERY
*********************/
#gallery li {
  width: 22.5%;
  margin-right: 2%; }

/*********************
VIDEOS
*********************/
.videoWrapper {
  margin-left: 0px;
  margin-right: 0px; }

/*************************
THIS IS FOR THE PARALLAX SCROLL
*************************/
#trusticons .parallax-window {
  position: relative;
  padding: 5em 0;
  height: 500px;
  text-align: center;
  margin-top: 0; }

/*********************
FOOTER STYLES
*********************/
#confidence {
  background: black; }

#address form {
  margin: 0 0; }

#footer > div {
  text-align: left; }
  #footer > div #copyright .first a {
    display: inline; }
  #footer > div #privacy {
    text-align: right; }
  #footer > div #facebook {
    text-align: center; }

/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/*SLIDER*/
/* Bug fix for flashing on Slick slideshow */
/*Full width slider */
ul.responsive3 .slick-list .slick-track .slick-slide img {
  height: 50vh; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.slideshow_caption p.h1 {
  font-size: 2em;
  margin-bottom: 0em; }

.slideshow_caption .slideDescription {
  margin: 0.7em 0 1em 0;
  font-size: 1.2em; }

body.Home .columnlayout h2 {
  font-size: 1.6em; }

#footer {
  font-size: 1em; }

#bottomblocks .button {
  padding: 0.6em 2em; }

.topMenu .nav > li > a {
  font-weight: 600; }

.hideonMobile {
  display: inline-block; }

.hideonDesktop {
  display: none; }

/*************************
Colours
*************************/
.black, .topMenu .nav > li > a {
  color: #1b3766;
  letter-spacing: 0.5px; }

.red, .topMenu .nav > li > a:hover {
  color: #232323; }

a.activerootmenulink {
  font-weight: 500; }

.white, a.down {
  color: #ffffff; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  padding: 0; }

/* Reduce padding on some rows*/
#breadcrumbs .row {
  padding: 1em 0; }

/*********************
SPRITE
*********************/
#logo {
  width: 311px;
  height: 100px;
  background-size: 311px 100px; }

/*********************
HEADER STYLES
*********************/
.header {
  height: auto; }
  .header .phone {
    line-height: 1.5;
    font-size: 1.1em;
    margin-right: 0.75em; }
  .header .menu {
    padding: 0.25em 0;
    top: 0px; }
  .header .clearHeader {
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    /*@include css-gradient(rgba(255,255,255,0.5), transparent);*/
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding-top: 1em;
    border-bottom: 4px solid #b5912e; }
    .header .clearHeader #logo {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      width: 280px;
      height: 86px;
      background-size: 280px 86px; }
    .header .clearHeader #mainMenu {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      padding: 1em 0 0.5em 0; }
  .header .darkHeader {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    /*box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);*/
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 2px solid #b5912e; }
    .header .darkHeader #logo {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      width: 245px;
      height: 75px;
      background-size: 245px 75px; }
    .header .darkHeader #mainMenu {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      padding: 0.5em 0 0.2em 0; }

a.down {
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -ms-transform: translateX(-50%) translateY(0%);
  /*correction*/
  transform: translate3d(-50%, 0, 0);
  font-size: 4em;
  opacity: 0.6;
  font-weight: 300;
  bottom: 1%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  a.down:hover {
    opacity: 1;
    color: #ffffff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }

/**************************
HERO - Home
***************************/
body.Home .header {
  height: 100vh;
  position: relative; }
  body.Home .header #imageslider {
    height: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    width: 100%;
    max-width: none;
    overflow: hidden; }
    body.Home .header #imageslider img {
      max-width: none; }

#topblocks {
  background: #333333;
  border-top: 2px solid #b5912e;
  border-bottom: 2px solid #b5912e; }
  #topblocks .first {
    text-align: right; }
  #topblocks .years {
    width: 150px; }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  width: 74.30939226%; }

#mainMenu {
  padding: 1em 0 0.5em 0; }

.topMenu {
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  float: right;
  clear: none;
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    border: 0;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block;
      padding: 0 0.6em;
      /*Prominent contact link*/
      /*turn some of the main nav items OFF for public*/
      /*&:first-child > a{
				display:none;
			}
			
			&:nth-child(6) {
				display:none;
			}
			&:nth-child(7) {
				display:none;
			}
			*/ }
      .topMenu .nav > li > a:hover, .topMenu .nav > li > a:focus {
        background: transparent; }
      .topMenu .nav > li > a.parent:after {
        content: "\f107";
        font-family: "Font Awesome 5 Pro";
        display: block;
        float: right;
        font-size: large;
        padding-left: 0.3em;
        line-height: 1.5; }
      .topMenu .nav > li:first-child {
        display: none; }
    .topMenu .nav li {
      position: relative;
      /* highlight current page */
      /*
			plan your menus and drop-downs wisely.
			*/
      /* showing sub-menus */ }
      .topMenu .nav li a {
        padding: 0.5em 0em;
        background: none;
        border-bottom: none; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        color: #232323; }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 9999;
        left: -9999px;
        border-top: 2px solid #1b3766; }
        .topMenu .nav li ul li,
        .topMenu .nav li ul.sub-menu li,
        .topMenu .nav li ul.children li {
          /*
					if you need to go deeper, go nuts
					just remember deeper menus suck
					for usability.
					*/ }
          .topMenu .nav li ul li a,
          .topMenu .nav li ul.sub-menu li a,
          .topMenu .nav li ul.children li a {
            padding: 0.5em 0.5em;
            display: block;
            width: 200px;
            border-top: none;
            border-radius: 0;
            margin-right: 0; }
            .topMenu .nav li ul li a:hover, .topMenu .nav li ul li a:focus,
            .topMenu .nav li ul.sub-menu li a:hover,
            .topMenu .nav li ul.sub-menu li a:focus,
            .topMenu .nav li ul.children li a:hover,
            .topMenu .nav li ul.children li a:focus {
              border-top: none; }
          .topMenu .nav li ul li ul,
          .topMenu .nav li ul.sub-menu li ul,
          .topMenu .nav li ul.children li ul {
            border-top: none; }

/* end .topMenu */
.nav > li.hover > ul {
  left: 0; }

.nav li li ul {
  left: -9999px;
  z-index: 99;
  position: absolute; }

.nav li li.hover ul {
  left: 100%;
  top: 0;
  z-index: 99;
  position: absolute; }

/* active state on home - not sure where else to put this for now*/
/*Home*/
body.Home #content #leftcol > div {
  width: 31%;
  margin-left: 2%;
  float: left; }
  body.Home #content #leftcol > div:nth-child(even) {
    margin-left: 2%;
    float: left; }
  body.Home #content #leftcol > div:nth-child(3), body.Home #content #leftcol > div:nth-child(6), body.Home #content #leftcol > div:nth-child(9) {
    margin-left: 0;
    float: right; }

/*Full width slider */
ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
  padding: 1em;
  text-align: center;
  min-width: 300px;
  max-width: 50%; }
  ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption .button {
    padding: 0.6em 2em; }
  ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption .slideDescription {
    display: block; }

ul.responsive3 .slick-list .slick-track .slick-slide img {
  display: block;
  height: auto;
  float: left;
  width: initial;
  max-width: initial; }

.slick-prev, .slick-next {
  top: 40%; }

/*************************
THIS IS FOR THE PARALLAX SCROLL
*************************/
#trusticons h4 {
  font-size: 16px; }

#trusticons .parallax-window {
  position: relative;
  padding: 5em 0;
  height: 500px;
  text-align: center;
  margin-top: 0; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  height: 60px;
  width: 60px;
  right: 30px;
  bottom: 30px; }

/******************************************************************
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. 

******************************************************************/
/* STICKY NAV - This is where the header is set to be sticky. 
We can also change colour and size here - effects all take place onScroll (waypoints triggers this) */
#content {
  height: auto; }

.slick-prev, .slick-next {
  top: 50%; }

.slick-next {
  right: 50px; }

.slick-prev {
  left: 50px; }

/*.slick-slider .slick-track, .slick-slider .slick-list { -webkit-perspective: 1000px; }*/
/* 
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 4th*/
.columnlayout div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
.columnlayout div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div .columnlayout div + div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 2%; }

/*# sourceMappingURL=ie.css.map */
