/******************************************************************
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 > div, ol {
  zoom: 1; }
  .cf:before, .cf:after, #leftcol > div > div:before, #leftcol > div > div:after, ol:before, ol:after {
    content: "";
    display: table; }
  .cf:after, #leftcol > div > div:after, ol: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/
*********************/
/* light blue */
/* dark blue */
/* dark grey*/
/* kook blue */
/* light grey */
/* kook blue*/
/*
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: 'texgyreadventorbold';
  src: url("texgyreadventor-bold-webfont.eot");
  src: url("texgyreadventor-bold-webfont.eot?#iefix") format("embedded-opentype"), url("texgyreadventor-bold-webfont.woff") format("woff"), url("texgyreadventor-bold-webfont.ttf") format("truetype"), url("texgyreadventor-bold-webfont.svg#texgyreadventorbold") 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);
*/
/********************************************
MIXIN CREATED FOR WHEN YOU NEED A BREAKPOINT
********************************************/
/*
USAGE: @include bp(baby-screen) {
    width: 100%;
  }
*/
/*********************
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
*******************************/
/*********************
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 {
  border: 0;
  padding: 0.75em 1.25em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  background-color: #bfbfbf;
  color: white;
  font-family: 'Lato', sans-serif; }
  .button:hover, .button:focus, .button:visited:hover, .button:visited:focus {
    color: white;
    background-color: #0e8aae; }
  .button:active, .button:visited:active {
    background-color: #a9e6f8; }
  .button:after, .button:visited:after {
    content: "\f105";
    font-family: FontAwesome;
    padding-left: 0.75em; }

.homebottom .button {
  border: 1px solid white;
  color: white;
  background-color: transparent; }
  .homebottom .button:hover, .homebottom .button:focus {
    color: white;
    border: 1px solid #0e8aae;
    background-color: #12afdd; }

.button.news:after {
  content: none; }

/*********************
BLINKING TEXT
*************************/
.blink_me {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blinker;
  -moz-animation-duration: 2s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blinker;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite; }

@-moz-keyframes blinker {
  0% {
    opacity: 2.0; }

  50% {
    opacity: 0.0; }

  100% {
    opacity: 2.0; } }
@-webkit-keyframes blinker {
  0% {
    opacity: 2.0; }

  50% {
    opacity: 0.0; }

  100% {
    opacity: 2.0; } }
@keyframes blinker {
  0% {
    opacity: 2.0; }

  50% {
    opacity: 0.0; }

  100% {
    opacity: 2.0; } }
/*********************
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.

******************************************************************/
#logo {
  width: 200px;
  height: 150px;
  background-size: 125px 125px; }

/*********************
CONTENT STYLES
*********************/
body.Home #hero {
  /*min-height:400px;*/
  /*height: 80vh;	*/
  height: auto; }

/*********************
HOME BLOCK LAYOUT
**********************/
body #leftcol .columnlayout.row > div {
  width: 48%;
  margin-right: 2%;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: top; }
  body #leftcol .columnlayout.row > div > div {
    width: auto;
    min-height: 240px !important; }
    body #leftcol .columnlayout.row > div > div p a {
      font-size: 1.1em; }

/*********************
NAVIGATION STYLES
*********************/
.header .row {
  height: auto; }

/****************************
BLOCKS LAYOUT - MAIN CONTENT
****************************/
#content > .topblock {
  height: auto; }
  #content > .topblock p img {
    max-width: 100%;
    height: auto;
    margin-left: 0%;
    display: block; }
  #content > .topblock .h1 {
    font-size: 1.5em; }

.topMenu a.toggleMenu em {
  display: inline;
  font-style: normal; }

/* ================================================ */
/* http://responsiveslides.com v1.32 by @viljamis   */
/* Responsive Slideshow, installed 21/11/2012 Ross. */
/* ================================================ */
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  max-height: inherit;
  margin-left: 0%; }

.slideshow_with_captions_container a.prev:before, .slideshow_with_captions_container a.next:before {
  font-size: 4em; }
.slideshow_with_captions_container a.prev, .slideshow_with_captions_container a.next {
  top: 45%; }

/******************************************************************
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
*********************/
h1, .h1 {
  font-size: 2.6em;
  line-height: 1.333em;
  margin-bottom: 0em; }

/*************************
Font colours set here
*************************/
.grey, #frmQuickQuote .h2 {
  color: #666666; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1240px;
  margin: 0 auto; }

#leftcol > div > div, #leftcol > div article {
  max-width: 1240px;
  margin: 0 auto; }
#leftcol article {
  max-width: 1240px;
  margin: 0 auto; }

.header .row, #footer .row {
  max-width: 1640px; }

.header .row #logo {
  width: 200px;
  height: 150px;
  background-size: 200px 150px; }
.header .row .last {
  margin-top: 0.2em; }
  .header .row .last .phoneNumber {
    margin-top: 0; }
  .header .row .last p a {
    display: inline-block; }
  .header .row .last #headersearch #searchInput {
    width: 180px; }

/*********************
CONTENT STYLES
*********************/
#hero {
  position: relative;
  overflow: hidden; }
  #hero img {
    margin-bottom: 0; }

#content .row {
  padding: 1.5em 0em; }
#content #leftcol #breadcrumbs {
  padding: 0.5em; }

body.Home .filter, body.admhome .filter {
  position: absolute;
  bottom: 0;
  left: 20%; }
  body.Home .filter .filtercontainer, body.admhome .filter .filtercontainer {
    background: rgba(255, 255, 255, 0.65);
    padding-top: 1em;
    padding-left: 1em; }
  body.Home .filter h2, body.admhome .filter h2 {
    background: #104f8b;
    color: white;
    padding: 0.7em;
    padding-left: 1em;
    width: 240px;
    text-transform: uppercase;
    margin-bottom: 0; }
  body.Home .filter div p, body.admhome .filter div p {
    display: inline-block;
    font-weight: 700;
    font-size: 1.2em; }
    body.Home .filter div p select, body.Home .filter div p input, body.admhome .filter div p select, body.admhome .filter div p input {
      padding: 1em;
      border: none; }
  body.Home .filter .LotSize, body.admhome .filter .LotSize {
    padding-left: 1em; }
    body.Home .filter .LotSize span, body.admhome .filter .LotSize span {
      font-weight: 400; }
  body.Home .filter .btn, body.admhome .filter .btn {
    background: #555555;
    color: white;
    border: none;
    padding: 1em; }

body.Community .respond-form form input[type=text],
body.Community .respond-form form input[type=email],
body.Community .respond-form form input[type=url],
body.Community .respond-form form select,
body.Community .respond-form form textarea {
  width: 70%; }
body.Community .respond-form form textarea {
  width: 70%; }

/*********************
HOME BLOCK LAYOUT
***********************/
body #leftcol .columnlayout.row > div {
  width: 31.5%;
  margin-right: 2.75%;
  /*&:nth-child(7) {
  	width: 98.5%;
  }*/ }
  body #leftcol .columnlayout.row > div > div {
    width: auto;
    min-height: 230px !important; }
    body #leftcol .columnlayout.row > div > div p a {
      font-size: 1.4em; }
  body #leftcol .columnlayout.row > div:nth-child(2), body #leftcol .columnlayout.row > div:nth-child(4) {
    margin-right: 2.75%; }
  body #leftcol .columnlayout.row > div:nth-child(3), body #leftcol .columnlayout.row > div:nth-child(6), body #leftcol .columnlayout.row > div:nth-child(9) {
    margin-right: 0; }

body.columnlayout4col #leftcol.blockslayout .blocks.columnlayout.row > div {
  width: 23.8%;
  margin-right: 1.5%; }
  body.columnlayout4col #leftcol.blockslayout .blocks.columnlayout.row > div:nth-child(4), body.columnlayout4col #leftcol.blockslayout .blocks.columnlayout.row > div:nth-child(8) {
    margin-right: 0; }

.row, body.Home #content > .block {
  width: 96%;
  margin: 0 auto; }

#content > .topblock .h1 {
  text-align: center;
  width: 100%;
  font-size: 3em; }

#leftcol > div > div {
  padding: 1.5em 0; }

blockquote {
  font-size: 1.2em;
  padding: 1em 0 0 2.5em;
  margin: 1em 3em 1em 0em; }
  blockquote:before {
    content: "\f10d";
    font-family: FontAwesome;
    color: #0e8aae;
    position: absolute;
    left: 0;
    top: -0.2em;
    font-size: 1em; }
  blockquote:after {
    content: "\f10e";
    font-family: FontAwesome;
    color: #0e8aae;
    position: absolute;
    right: 0;
    bottom: 0.8em;
    font-size: 1em; }
  blockquote em {
    color: #555555;
    display: block;
    text-align: right;
    font-size: 0.8em;
    font-style: normal; }
    blockquote em:before {
      content: "\2014";
      padding-right: 0.5em; }
    blockquote em:after {
      content: "\2014";
      padding-left: 0.5em; }

.slideshow_with_captions_container .slideshow_caption {
  top: 50%; }
  .slideshow_with_captions_container .slideshow_caption p {
    max-height: none;
    visibility: visible; }

/*.cycle-slideshow {
	min-height: 600px!important;
}
.first {
	.cycle-slideshow {
		min-height: 600px!important;
	}
}
*/
/*********************
BLOCKS
*********************/
#rightcol {
  margin-top: 3.2em; }

#frmQuickQuote .h2 {
  background-color: transparent; }

#firstcol .block {
  display: block; }

.bottomBlocks iframe {
  margin-top: 2em; }

/*********************
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-left: 2%;
  padding-top: 1em;
  padding-bottom: 1em; }

/*********************
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!
*/
#footer .row ul li {
  display: inline; }

.homebottom .eightcol .respond-form form td {
  display: table-cell;
  width: auto; }
.homebottom .eightcol .respond-form form input[type=text], .homebottom .eightcol .respond-form form .respond-form form input[type=email], .homebottom .eightcol .respond-form form .respond-form form input[type=url], .homebottom .eightcol .respond-form form .respond-form form textarea {
  width: 98%; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.homebottom h5, .header .row p {
  font-weight: 700; }

/*********************
NAVIGATION STYLES
*********************/
#mainMenu {
  width: 100%; }

.topMenu {
  width: 80%;
  margin-bottom: 0;
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    border: 0;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0em;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block; }
      .topMenu .nav > li a {
        padding: 1.25em 0.4em 1.25em 0.4em;
        border-bottom: 0;
        background-color: white;
        color: #0e8aae; }
      .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 {
        /*text-transform: uppercase;*/
        text-align: center; }
        .topMenu .nav li a:hover, .topMenu .nav li a:focus {
          color: #555555; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        background-color: #0e8aae;
        color: white; }
      .topMenu .nav li:hover a.parent:before {
        display: none; }
      .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 {
            display: block;
            width: 15em;
            padding: 0.25em 0.5em;
            margin: 0 0em;
            text-align: left;
            font-size: 1em; }
            .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-bottom: 1px solid #666666;
              color: white; }
          .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 li ul {
  left: -9999px;
  z-index: 99;
  position: absolute; }

.nav li li.hover ul {
  left: 100%;
  top: 0;
  z-index: 99;
  position: absolute; }

/****************************
BLOCKS LAYOUT - MAIN CONTENT
****************************/
/*.cycle-slideshow {
	min-height: 400px!important;
}
.first {
	.cycle-slideshow {
		min-height: 400px!important;
	}
}
*/
/*********************
HOME BLOCK LAYOUT
**********************/
body #leftcol .columnlayout.row > div > div {
  min-height: 270px !important; }

/*********************
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!
*/
/******************************************************************
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. 

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1 {
  font-size: 2em; }

.header h1, .header .h1 {
  font-size: 2em; }

h2, .h2, a.toggleMenu {
  font-size: 2em; }

h3, .h3, .button, .homebottom h5 {
  font-size: 1em; }

/*********************
CONTENT STYLES
*********************/
#content .row {
  padding: 2em 0em; }
#content > .topblock .h1 {
  font-size: 3.5em; }

#leftcol > div > div, #leftcol > div article {
  padding: 2em 0; }
#leftcol article {
  padding: 2em 0; }

blockquote {
  font-size: 1.2em;
  padding: 1em 0 0 2.5em;
  margin: 1em 3em 1em 0em; }
  blockquote:before {
    font-size: 25px; }
  blockquote:after {
    font-size: 25px; }

.Home #leftcol > div > div, #leftcol.blockslayout > div > div {
  padding: 3em 0; }
.Home #leftcol > div.columnlayout:before, #leftcol.blockslayout > div.columnlayout:before {
  padding-bottom: 0.5em; }
.Home #leftcol > div.columnlayout > div, #leftcol.blockslayout > div.columnlayout > div {
  padding: 1em 0; }

.slideshow_with_captions_container .slideshow_caption {
  width: 27em;
  width: 60%;
  font-size: 1.25em;
  text-align: left;
  top: 50%; }

/*.cycle-slideshow {
	min-height: 320px!important;
}
.first {
	.cycle-slideshow {
		min-height: 320px!important;
	}
}
.last {
	.cycle-slideshow {
		min-height: 320px!important;
	}
}*/
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/* IE 8 and below Target every third home services div to remove right padding - adjascent slibling selectors*/
/* IE 8 and below Target every third home services div to remove right padding - adjascent slibling selectors*/
/*target every 3r'd*/
body #leftcol .columnlayout.row div + div + div,
body #leftcol .columnlayout.row div + div + div + div + div + div,
body #leftcol .columnlayout.row div + div + div + div + div + div + div + div + div,
body #leftcol .columnlayout.row div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
body #leftcol .columnlayout.row div + div + div + div,
body #leftcol .columnlayout.row div + div + div + div + div + div + div,
body #leftcol .columnlayout.row div + div + div + div + div + div + div + div + div + div,
body #leftcol .columnlayout.row div + div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 2.75%; }

/*# sourceMappingURL=ie.css.map */
