/******************************************************************
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, #leftcol > div {
  zoom: 1; }
  .cf:before, .cf:after, #leftcol > div:before, #leftcol > div:after {
    content: "";
    display: table; }
  .cf:after, #leftcol > div: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/
*********************/
/* Blue */
/* green */
/* black */
/* dark 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.
*/
/*	@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);
*/
/*********************
Border Radius
*********************/
/*
USAGE: @include border-radius($small-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); */
/*********************
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; }

/*********************
BUTTONS
*********************/
.button, .button:visited, .formbutton {
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  border: 0;
  /*border: 1px solid darken($link-color, 13%);
  border-top-color: darken($link-color, 7%);
  border-left-color: darken($link-color, 7%);*/
  padding: 0.5em 1em;
  color: white;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  margin: 0 auto 20px auto;
  line-height: 21px;
  border-radius: 4px;
  /*@include css-gradient($link-color, darken($link-color, 5%));*/
  background-color: #8dc53e; }
  .button:hover, .button:focus, .button:visited:hover, .button:visited:focus, .formbutton:hover, .formbutton:focus {
    color: white;
    border: 0;
  	/*border-top-color: darken($link-color, 20%);
 	border-left-color: darken($link-color, 20%);
	@include css-gradient(darken($link-color, 5%), darken($link-color, 10%));*/
    background-color: #7fb436; }
  .button:active, .button:visited:active, .formbutton:active {
    background-color: #278e93;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#227b7f), to(#278e93));
    background-image: -webkit-linear-gradient(top, #227b7f, #278e93);
    background-image: -moz-linear-gradient(top, #227b7f, #278e93);
    background-image: -o-linear-gradient(top, #227b7f, #278e93);
    background-image: linear-gradient(to bottom, #227b7f, #278e93); }

/*********************
FONT AWESOME
*********************/
/******************************************************************
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
*********************/
/* .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!

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
.cf:after, #leftcol > div:after {
  clear: both;
  margin: 1em; }

h1, .h1 {
  font-size: 2.3em; }

h2, .h2 {
  font-size: 1.4em; }

/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1140px; }

/*********************
HEADER STYLES
*********************/
.header .last {
  width: 54.30939226%; }
.header #headtop {
  padding: 1em 0 0 0;
  text-align: right;
  padding-left: 20%; }
.header .login {
  display: block;
  background: white;
  color: #292929;
  font-weight: 400;
  padding: 0.05em 1em;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  float: right;
  font-size: 90%; }

/*********************
NAVIGATION STYLES
*********************/
.topMenu .nav {
  width: 100%; }

/*********************
CONTENT STYLES
*********************/
#content {
  /*background: lighten($color-quaternary, 65%);*/ }
  #content .row {
    /*background: $white;*/
    padding-bottom: 2em; }

blockquote:before {
  margin-bottom: 5em;
  float: left; }

#hero {
  padding: 2em 0 3em 0; }
  #hero .first {
    text-align: left;
    display: block;
    padding-top: 1em; }
  #hero h2 {
    font-size: 1.4em;
    color: white;
    padding-bottom: 0em;
    margin-bottom: 0em;
    text-shadow: 0px 2px 2px rgba(33, 33, 33, 0.4);
    padding-right: 2em;
    line-height: 1.4em; }
  #hero h3 {
    font-size: 1em;
    color: white;
    padding-bottom: 0em;
    padding-top: 0;
    margin-bottom: 0em;
    text-shadow: 0px 2px 2px rgba(33, 33, 33, 0.4);
    padding-right: 2em;
    line-height: 1.4em; }
  #hero .GetInTouch {
    background: #105e3e;
    color: white;
    padding: 0.7em 1em;
    display: inline-block;
    text-shadow: 0px 2px 2px rgba(33, 33, 33, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 1em; }

/*********************
HOME BLOCK LAYOUT
**********************/
.Projects .columnlayout div {
  width: 31%; }
  .Projects .columnlayout div div {
    width: auto; }

.columnlayout div {
  width: 23.5%;
  margin-right: 1.5%;
  margin-bottom: 0.75em;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: top; }
  .columnlayout div div {
    width: auto; }
  .columnlayout div p:first-of-type a {
    -webkit-filter: brightness(75%); }
    .columnlayout div p:first-of-type a:hover {
      -webkit-filter: grayscale(100%);
      -webkit-filter: brightness(100%); }
  .columnlayout div:nth-child(4), .columnlayout div:nth-child(8), .columnlayout div:nth-child(12) {
    margin-right: 0; }

/*********************
CONTACT BLOCK LAYOUT
**********************/
body.ContactUs div#div347 {
  float: right;
  width: 48%;
  margin-left: 2%; }
body.ContactUs div#div314 {
  float: left;
  width: 49%; }

.respond-form form img {
  float: left;
  /*max-width: 175px;*/
  width: 100%; }

/*********************
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; }

/*********************
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!
*/
#firstFooter .first {
  text-align: left;
  margin-top: 1em; }
#firstFooter .last {
  text-align: right;
  margin-top: 2em; }

#firstFooter .last,
#secondFooter .last {
  text-align: right; }
#firstFooter ul,
#secondFooter ul {
  width: auto; }
  #firstFooter ul li,
  #secondFooter ul li {
    display: inline;
    margin-left: 2em; }
#firstFooter #copyright,
#secondFooter #copyright {
  text-align: left; }
#firstFooter #credit,
#secondFooter #credit {
  text-align: right; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
/*********************
HEADER STYLES
*********************/
.header .last {
  width: 74.30939226%; }
.header #headtop {
  padding-left: 30%; }

#hero {
  /*background-color: #5d85a9;*/
  padding: 1em 0 1em 0; }
  #hero h2 {
    font-size: 1.8em;
    line-height: 1.4em;
    padding-right: 2em; }
  #hero h3 {
    font-size: 1.2em;
    line-height: 1.4em; }

/*********************
NAVIGATION STYLES
*********************/
.topMenu {
  width: 100%;
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    border: 0;
    float: right;
    text-transform: uppercase;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      float: left; }
    .topMenu .nav li {
      position: relative;
      z-index: 9000;
      /* highlight current page */
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      .topMenu .nav li a {
        border: none;
        color: white;
        font-weight: 400;
        background: #434343;
        border-bottom: #434343 3px solid; }
        .topMenu .nav li a:hover, .topMenu .nav li a:focus {
          color: white;
          border-bottom: #105e3e 3px solid;
          background: #434343; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        border-bottom: #105e3e 3px solid;
        color: white;
        background: #434343; }
      .topMenu .nav li.hover a.parent:before {
        display: none; }
      .topMenu .nav li:last-child a {
        /*padding-right:0;*/ }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 99;
        left: -9999px; }
        .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-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            font-size: 90%;
            border-bottom: none;
            background: #434343; }
            .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 {
              color: #178a5b;
              border-bottom: none; }
          .topMenu .nav li ul li:last-child a,
          .topMenu .nav li ul.sub-menu li:last-child a,
          .topMenu .nav li ul.children li:last-child a {
            border-bottom: 0; }

/* 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*/
body.Home .topMenu .nav > li:first-child a {
  border-bottom: #105e3e 3px solid; }

/******************************************************************
FORM STYLES
******************************************************************/
.respond-form form img {
  float: left;
  width: 100%; }
  .respond-form form img.fullwidth {
    max-width: 235px; }

/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop. 

******************************************************************/
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/* 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 */
