/******************************************************************
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/
*********************/
/* purple - radiant orchid */
/* blue */
/* lighter purple */
/* blue-grey */
/* ultra-light-purple */
/*
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-total, .alert-error, .alert-warning, .alert-success {
  margin: 0.5em 0;
  padding: 0.5em;
  border: 1px solid; }

.alert-help {
  border-color: #d5edf8; }

.alert-total {
  border-color: #d5edf8;
  background-color: white;
  text-align: center;
  color: #d5edf8; }

.alert-error {
  border-color: #aa0000;
  color: #aa0000; }

.alert-warning {
  border-color: #ff5248;
  color: #ff5248; }

.alert-success {
  border-color: #00c3aa;
  color: #00c3aa; }

/*********************
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, .button:visited, .gradient, input#SubmitCheckout, .formbutton {
  font-family: "Amatic SC", cursive;
  padding: 0.25em 0.5em;
  color: white;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px transparent;
  cursor: pointer;
  border: 0;
  line-height: 1em;
  background-color: #b464a7; }
  #button:hover, .button:hover, .button:visited:hover, .gradient:hover, input#SubmitCheckout:hover, .formbutton:hover {
    color: white;
    background-color: #ac539d; }
  #button.bigger, .button.bigger, .button:visited.bigger, .gradient.bigger, input#SubmitCheckout.bigger, .formbutton.bigger {
    font-size: 2em; }
  #button.ViewCart, .button.ViewCart, .button:visited.ViewCart, .gradient.ViewCart, input#SubmitCheckout.ViewCart, .formbutton.ViewCart {
    background-color: #2dbfc5; }
    #button.ViewCart:hover, .button.ViewCart:hover, .button:visited.ViewCart:hover, .gradient.ViewCart:hover, input#SubmitCheckout.ViewCart:hover, .formbutton.ViewCart:hover {
      color: white;
      background-color: #28abb0; }

body.cpstaffdashboardsdefault button {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5em 1em;
  color: #b464a7;
  display: inline-block;
  text-transform: none;
  font-weight: normal;
  text-shadow: none;
  border: 1px solid #d9d9d9;
  background-color: #e6e6e6;
  margin-bottom: 0.5em; }
  body.cpstaffdashboardsdefault button:hover {
    color: white;
    background-color: #b464a7; }
  body.cpstaffdashboardsdefault button.buttonon {
    color: white;
    background-color: #2dbfc5;
    opacity: 0.6; }
    body.cpstaffdashboardsdefault button.buttonon:hover {
      background-color: #28abb0;
      opacity: 1; }

body.cpstaffdashboardsdefault .hasnote {
  color: red; }

/*********************
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, .threeflex {
  width: 22.928176794%; }

/* 22.05%; } /* grid_3  */
.fourcol, .fourflex {
  width: 31.491712705%; }

/* 30.75%; } /* grid_4  */
.fivecol {
  width: 40.055248616%; }

/* 39.45%; } /* grid_5  */
.sixcol, .sixflex {
  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; }

.flexWrap {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%; }
  .flexWrap .threeflex, .flexWrap .sixflex, .flexWrap > h3, .flexWrap > p {
    flex: 1 1 1; }
  .flexWrap .threeflex, .flexWrap .fourflex, .flexWrap .sixflex {
    margin-left: 2.762430939%; }
  .flexWrap > h3, .flexWrap > p {
    width: 99.999999993%; }
  .flexWrap .first {
    margin-left: 0; }

/******************************************************************
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.

******************************************************************/
.header #topline .last p {
  padding-right: 0;
  font-size: 80%; }

/******************************************************************
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
*********************/
a.toggleMenu {
  font-size: 1.7em;
  line-height: 1.4em; }
  a.toggleMenu .fa {
    font-size: 80%; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1400px; }

/*********************
HEADER STYLES
*********************/
#logo {
  width: 280px;
  height: 65px;
  margin-left: 0;
  background-size: 280px 65px; }

.headerone {
  background-color: #b464a7; }
  .headerone #topline {
    text-align: right;
    display: block; }
  .headerone h1 {
    margin: 0 auto; }
  .headerone #bottomline {
    background-color: white; }
    .headerone #bottomline .row .first {
      width: 42%; }
    .headerone #bottomline .row .last {
      width: 46%;
      display: block;
      text-align: right; }
      .headerone #bottomline .row .last p {
        display: inline-block;
        padding-left: 0.5em;
        margin-top: 0; }

#headertwo .row .twocol {
  padding-top: 0em;
  width: 14.364640883%;
  min-width: 165px; }
  #headertwo .row .twocol .toggleMenu {
    background-color: transparent;
    color: #767f87;
    padding: 0.7em 0.5em 0.5em 0.5em; }
#headertwo .row .threecol {
  width: 22.928176794%;
  margin-left: 0;
  padding-top: 0em; }
#headertwo .row .sevencol, #headertwo .row .sixcol {
  padding-top: 0em;
  /*width: 57.182320438000005%;*/
  width: 57%; }
  #headertwo .row .sevencol .toggleMenu, #headertwo .row .sixcol .toggleMenu {
    background-color: transparent;
    color: #767f87; }
#headertwo .row .search {
  margin-top: 0px;
  background-color: transparent;
  border-left: 1px solid white;
  border-right: 1px solid white; }
  #headertwo .row .search form input {
    background-color: transparent; }
#headertwo .row .last {
  border-right: none;
  text-align: right; }
  #headertwo .row .last .galleryIcon {
    border-left: solid 1px #e3e5e6; }

/*********************
NAVIGATION STYLES
*********************/
#headertwo #mainMenu a.toggleMenu {
  /*width: 165px;*/
  /*border-left: solid 1px #e3e5e6;
  border-right: solid 1px #e3e5e6;*/ }
#headertwo #mainMenu .nav {
  /*width: auto;*/ }

/*********************
MENU PANEL
*********************/
.menupanel ul > li > a span {
  display: block; }

/*********************
CONTENT STYLES
*********************/
.hideOnDesktop {
  display: none; }

.desktopOnly {
  /*display: inline;
  float: left;
  margin: 0.5em 0 0.25em 0;*/ }

#hero img {
  max-height: 300px; }

#content {
  margin-top: 0em;
  background: url("../images/bgMyTeddy.png") repeat center top;
  padding-bottom: 2em; }
  #content .row {
    background-color: white;
    padding: 1em;
    margin-bottom: 2em; }
  #content .newsletter {
    margin-bottom: 0em; }

.mobileonly {
  display: none; }

#leftMenu {
  /*min-width: 165px;*/ }

#prodImgLightboxLink {
  margin: 1em auto;
  display: block;
  text-align: center;
  border: 0px; }

/*********************
ACCORDIAN - multi-level
*********************/
ul.confidence li {
  width: 22.928176794%;
  display: list-item;
  margin: 0 0 0 2.762430939%; }
  ul.confidence li:first-child {
    margin: 0 0 0 0; }

/*********************
HOME BLOCK LAYOUT
**********************/
body.Home .columnlayout div {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 0.75em;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: top; }
  body.Home .columnlayout div div {
    width: auto; }
  body.Home .columnlayout div:nth-child(2), body.Home .columnlayout div:nth-child(4), body.Home .columnlayout div:nth-child(6) {
    margin-right: 0; }

#products.featured li {
  margin-bottom: 0em;
  padding-bottom: 0em;
  border-bottom: 0; }

#rightcol #holdSlider ul li {
  width: 22%;
  margin-right: 4%;
  float: left;
  text-align: center; }
  #rightcol #holdSlider ul li:nth-child(4n+4) {
    margin-right: 0; }
  #rightcol #holdSlider ul li:nth-child(1n+5) {
    margin-top: 2em; }

.featured {
  border-top: 1px solid white; }

/******************************************************************
ADMIN DASHBOARD & popups
******************************************************************/
#leftcol .wrap:first-of-type, #leftcol .wrap:nth-of-type(4n+1), .CboxInner .wrap:first-of-type, .CboxInner .wrap:nth-of-type(4n+1) {
  margin-left: 0; }

/*********************
SIDEBARS & ASIDES
*********************/
/*********************
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!
*/
#newsletter {
  border: 0; }
  #newsletter form {
    line-height: 2.5em; }
  #newsletter .input {
    display: inline;
    margin: 0; }
  #newsletter input.submit {
    clear: left;
    color: white;
    background-color: #b464a7;
    margin: 0;
    display: inline; }

#firstFooter .row ul,
#secondFooter .row ul {
  width: auto; }
  #firstFooter .row ul li,
  #secondFooter .row ul li {
    width: 48%;
    float: left;
    text-align: left; }
#firstFooter h3,
#secondFooter h3 {
  text-align: center; }

/*********
Custom - pulled from erp.css for mobile detection. Matt
*********/
#categories li, #products li {
  /*float: left;*/
  width: 31.5%;
  margin-right: 0%;
  /*min-height: 20em;*/
  list-style: none;
  /*display:inline;*/
  padding-bottom: 1em;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top; }

.fb_dialog.fb_dialog_advanced {
  bottom: 70px !important; }

/******************************************************************
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 #topline .last p {
  padding-right: 0.5em;
  font-size: 100%; }

#headertwo .sevencol, #headertwo .sixcol {
  width: 60%; }

/*********************
NAVIGATION STYLES
*********************/
#headertwo {
  /* end .nav */ }
  #headertwo a.toggleMenu {
    border-left: solid 1px #e3e5e6; }
  #headertwo .navOccasions {
    position: absolute;
    z-index: 9999;
    background-color: #fafafa; }
  #headertwo .nav {
    position: relative;
    /* end .menu ul li */ }
    #headertwo .nav > li {
      float: left;
      text-align: center;
      max-width: 120px; }
      #headertwo .nav > li:first-child a {
        border-left: solid 1px #e3e5e6; }
    #headertwo .nav li {
      position: relative;
      /* highlight current page */
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      #headertwo .nav li > a {
        height: 60px;
        /*&:before {
        	content: "";
        	height: 30px;
        	background-position: center -450px;
        	display: block;
        	
        }
        
        &.cat-747:before {
        	background-position: center -300px;
        }
        &.cat-748:before {
        	background-position: center -500px;
        }
        &.cat-749:before {
        	background-position: center -550px;
        }
        &.cat-751:before {
        	background-position: center -400px;
        }*/ }
      #headertwo .nav li a {
        border-bottom: 0;
        background-color: #fafafa;
        border-right: solid 1px #e3e5e6;
        padding: 0.5em 0.65em 0em 0.65em; }
        #headertwo .nav li a:hover, #headertwo .nav li a:focus {
          color: #2dbfc5; }
        #headertwo .nav li a.parent:before {
          display: none; }
      #headertwo .nav li a.activerootmenulink {
        color: #2dbfc5; }
      #headertwo .nav li.hover > a.parent:before {
        content: "\f106"; }
      #headertwo .nav li ul,
      #headertwo .nav li ul.sub-menu,
      #headertwo .nav li ul.children {
        position: absolute;
        z-index: 99;
        left: -9999px; }
        #headertwo .nav li ul li,
        #headertwo .nav li ul.sub-menu li,
        #headertwo .nav li ul.children li {
          /*
          if you need to go deeper, go nuts
          just remember deeper menus suck
          for usability.
          */ }
          #headertwo .nav li ul li a,
          #headertwo .nav li ul.sub-menu li a,
          #headertwo .nav li ul.children li a {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px dotted #999999; }
          #headertwo .nav li ul li:last-child a,
          #headertwo .nav li ul.sub-menu li:last-child a,
          #headertwo .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 {
  color: #2dbfc5; }

/* 
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*/
body.Home .columnlayout div + div + div,
body.Home .columnlayout div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
body.Home .columnlayout div + div + div + div,
body.Home .columnlayout div + div + div + div + div + div + div {
  margin-right: 2%; }

/*# sourceMappingURL=ie.css.map */
