@font-face {
    font-family: 'corisande-boldregular';
    src: url('/fonts/corib___-webfont.eot');
    src: url('/fonts/corib___-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/corib___-webfont.woff') format('woff'),
         url('/fonts/corib___-webfont.ttf') format('truetype'),
         url('/fonts/corib___-webfont.svg#corisande-boldregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* Orbit Graceful Loading */
.slideshow-wrapper {
  position: relative; }
  .slideshow-wrapper ul {
    list-style-type: none;
    margin: 0; }
    .slideshow-wrapper ul li,
    .slideshow-wrapper ul li .orbit-caption {
      display: none; }
    .slideshow-wrapper ul li:first-child {
      display: block; }
  .slideshow-wrapper .orbit-container {
    background-color: transparent; }
    .slideshow-wrapper .orbit-container li {
      display: block; }
      .slideshow-wrapper .orbit-container li .orbit-caption {
        display: block; }

.preloader {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  border: solid 3px;
  border-color: #555555 white;
  -webkit-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 1.5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  animation-name: rotate;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

.orbit-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: whitesmoke; }
  .orbit-container .orbit-slides-container {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative; }
    .orbit-container .orbit-slides-container img {
      display: block;
      max-width: 100%; }
    .orbit-container .orbit-slides-container > * {
      position: absolute;
      top: 0;
      width: 100%;
      margin-left: 100%; }
      .orbit-container .orbit-slides-container > *:first-child {
        margin-left: 0%; }
      .orbit-container .orbit-slides-container > * .orbit-caption {
        position: absolute;
        bottom: 0;
        background-color: black;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        width: 100%;
        padding: 10px 14px;
        font-size: 0.875em; }
  .orbit-container .orbit-slide-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    color: white;
    background: rgba(0, 0, 0, 0);
    z-index: 10; }
    .orbit-container .orbit-slide-number span {
      font-weight: 700;
      padding: 0.3125em; }
  .orbit-container .orbit-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 6px;
    width: 100px;
    z-index: 10; }
    .orbit-container .orbit-timer .orbit-progress {
      height: 100%;
      background-color: black;
      background-color: rgba(0, 0, 0, 0.6);
      display: block;
      width: 0%; }
    .orbit-container .orbit-timer > span {
      display: none;
      position: absolute;
      top: 10px;
      right: 0px;
      width: 11px;
      height: 14px;
      border: solid 4px black;
      border-top: none;
      border-bottom: none; }
    .orbit-container .orbit-timer.paused > span {
      right: -6px;
      top: 9px;
      width: 11px;
      height: 14px;
      border: inset 8px;
      border-right-style: solid;
      border-color: transparent transparent transparent black; }
  .orbit-container:hover .orbit-timer > span {
    display: block; }
  .orbit-container .orbit-prev,
  .orbit-container .orbit-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 60px;
    line-height: 50px;
    color: white;
    text-indent: -9999px !important;
    z-index: 10; 
    
  }
    .orbit-container .orbit-prev > span,
    .orbit-container .orbit-next > span {
      position: absolute;
      top: 50%;
      margin-top: -16px;
      display: block;
      width: 0;
      height: 0;
      border: inset 16px; }
  .orbit-container .orbit-prev {
    left: 0; }
    .orbit-container .orbit-prev > span {
      border-right-style: solid;
      border-color: transparent;
      border-right-color: #fff; 
    }
    .orbit-container .orbit-prev:hover > span {
      border-right-color: #ccc;
      opacity: 0.8;
      filter: alpha(opacity=80); }
  .orbit-container .orbit-next {
    right: 0; }
    .orbit-container .orbit-next > span {
      border-color: transparent;
      border-left-style: solid;
      border-left-color: #fff;
      left: 50%;
      margin-left: -8px; }
    .orbit-container .orbit-next:hover > span {
      border-left-color: #ccc; 
      opacity: 0.8;
      filter: alpha(opacity=80);}

.orbit-bullets {
  margin: 0 auto 30px auto;
  overflow: hidden;
  position: relative;
  top: 10px; }
  .orbit-bullets li {
    display: block;
    width: 10px;
    height: 10px;
    background: #999999;
    float: left;
    margin-right: 6px;
    border: solid 1px #555555;
    -webkit-border-radius: 1000px;
    border-radius: 1000px; }
    .orbit-bullets li.active {
      background: #555555; }
    .orbit-bullets li:last-child {
      margin-right: 0; }

.touch .orbit-container .orbit-prev,
.touch .orbit-container .orbit-next {
  display: none; }
.touch .orbit-bullets {
  display: none; }

@media only screen and (min-width: 768px) {
  .touch .orbit-container .orbit-prev,
  .touch .orbit-container .orbit-next {
    display: inherit; }
  .touch .orbit-bullets {
    display: block; } }
@media only screen and (max-width: 768px) {
  .orbit-stack-on-small .orbit-slides-container {
    height: auto !important; }
  .orbit-stack-on-small .orbit-slides-container > * {
    position: relative;
    margin-left: 0% !important; }
  .orbit-stack-on-small .orbit-timer,
  .orbit-stack-on-small .orbit-next,
  .orbit-stack-on-small .orbit-prev,
  .orbit-stack-on-small .orbit-bullets {
    display: none; } }

/* homepage slider */

#splash {width:860px; height:320px; position: relative;}
#splash .orbit-container {width:860px; height:320px;}
#splash #featured {visibility: hidden;}
#splash .orbit-container #featured {visibility: visible;}
#splash .orbit-container .orbit-slides-container > div {height:320px;}
#splash .orbit-container .orbit-prev, .orbit-container .orbit-next {
  filter: alpha(opacity=20);
  opacity: 0.2;
}
#splash .orbit-container .orbit-timer {display: none;}

#splash .orbit-container a.img-link {display: block; height: 320px; width: 860px; position: absolute; top: 0;}

#splash .orbit-container .slide-nav {
  position: absolute;
  top: 276px;
  left: 0px;
  height: 13px;
  z-index: 99;
}

#splash .orbit-container a.clean-link, #splash .orbit-container a.green-link, #splash .orbit-container a.pet-link {display: block; height: 44px; width: 75px; position: absolute; top: 0; }

#splash .orbit-container a.clean-link { height: 44px; width: 50px; left: 16px; }

#splash .orbit-container a.green-link {height: 44px; width: 29px; left: 67px; }

#splash .orbit-container a.pet-link {height: 44px; width: 51px; left: 98px;}

#splash .orbit-container a.clean-link:hover {
  background: url("/images/spotshot/bg_clean_hover.jpg") no-repeat 0 0;

}

#splash .orbit-container a.green-link:hover {
  background: url("/images/spotshot/bg_green_hover.jpg") no-repeat 0 0;
 left: 67px;
}

#splash .orbit-container a.pet-link:hover {
  background: url("/images/spotshot/bg_pet_hover.jpg") no-repeat 0 0;
 left: 98px;
}

#splash .orbit-container a.clean-text, #splash .orbit-container a.green-text, #splash .orbit-container a.pet-text {
  display: none;
  text-transform: uppercase;
  font-weight: bold;
  background: #FFF;
  position: relative;
  top: 18px;
  left: 155px;
  font-size: 12px;
  padding: 10px 90px 10px 0;
  color: #00549C;
}
.slide0-a{background:url("/images/spotshot/spot-shot-web-header.jpg") no-repeat 0 0;}
.slide1-a{background:url("/images/spotshot/bg-slide1-a.jpg") no-repeat 0 0;}

/*.slide1-b{background:url("/images/spotshot/bg-slide1-a.jpg") no-repeat 0 0;}
.slide1-c{background:url("/images/spotshot/bg-slide1-b.jpg") no-repeat 0 0;}
.slide1-d{background:url("/images/spotshot/bg-slide1-c.jpg") no-repeat 0 0;}*/

.slide2-a{background:url("/images/spotshot/bg-slide2-a.jpg") no-repeat 0 0;}
/*.slide2-b{background:url("/images/spotshot/bg-slide2-b.jpg") no-repeat 0 0;}
.slide2-c{background:url("/images/spotshot/bg-slide2-c.jpg") no-repeat 0 0;}*/

.slide3-a{background:url("/images/spotshot/bg-slide3-a.jpg") no-repeat 0 0;}
/*.slide3-b{background:url("/images/spotshot/bg-slide3-b.jpg") no-repeat 0 0;}
.slide3-c{background:url("/images/spotshot/bg-slide3-c.jpg") no-repeat 0 0;}
.slide3-d{background:url("/images/spotshot/bg-slide3-d.jpg") no-repeat 0 0;}*/

.slide4-a{background:url("/images/spotshot/bg-slidebluray-a.jpg") no-repeat 0 0;}


#splash .orbit-container h2 {
  font: normal 80px/0.7em 'corisande-boldregular', Arial, Helvetica, sans-serif; 
}

#splash .orbit-container h3 {
  font: normal 38px/1.2em 'corisande-boldregular', Arial, Helvetica, sans-serif;
}

#splash .orbit-container p {
  font-family: 'corisande-boldregular';
  text-shadow: 2px 2px 5px #FFF;
}

#splash .orbit-container h2, #splash .orbit-container h3 {
  color: #0053a0;
  margin-left: 30px;
  text-shadow: 2px 2px 10px #FFF;

  /*text-align: center;*/
}

#splash .orbit-container p, #splash .orbit-container a.learn-more {
  margin-left: 30px;
  line-height: 1.2em;
}

#splash .orbit-container a.learn-more { 
  text-transform: uppercase;
  color: #FFF;
  background: #3C78A8;
  padding: 5px 15px;
  border-radius: 10px;

  /*GRADIENT*/
  background: #fdb71a; /* Old browsers */
  background: -moz-linear-gradient(top,  #fdb71a 0%, #fb750d 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdb71a), color-stop(100%,#fb750d)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #fdb71a 0%,#fb750d 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #fdb71a 0%,#fb750d 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #fdb71a 0%,#fb750d 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #fdb71a 0%,#fb750d 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdb71a', endColorstr='#fb750d',GradientType=0 ); /* IE6-9 */

}

/*SLIDE GROUP 1*/

#splash .orbit-container .slide1-a h2 {color: #1a97d7;}
#splash .orbit-container .slide1-a h3 {margin-top: 25px; margin-left: 70px;}
#splash .orbit-container .slide1-a p {text-align: left; color: #01457e; font-size: 22px; margin-bottom: 20px; text-transform: uppercase; margin-left: 70px;}
#splash .orbit-container .slide1-a a.learn-more { margin-left: 70px;}


/*SLIDE GROUP 2*/

#splash .orbit-container .slide2-a h2 {color: #1a97d7;}
#splash .orbit-container .slide2-a h3 {margin-top: 25px; margin-left: 70px;}
#splash .orbit-container .slide2-a p {text-align: left; color: #01457e; font-size: 22px; margin-bottom: 20px; text-transform: uppercase; margin-left: 70px;}
#splash .orbit-container .slide2-a a.learn-more { margin-left: 70px;}

/*#splash .orbit-container .slide2-a h3, #splash .orbit-container .slide2-b h3, #splash .orbit-container .slide2-c h2 {
  text-shadow: none;
  color: #fff;
}

#splash .orbit-container .slide2-a h3, #splash .orbit-container .slide2-b h3 {text-align: left;margin-left: 440px; margin-top: 15px; font-size: 22px;}
#splash .orbit-container .slide2-c h2 {text-align: left; margin-top: 15px;}
#splash .orbit-container .slide2-c p {text-align: left; color: #91cbfa; font-size: 14px; font-weight: bold; margin-bottom: 20px;}*/


/*SLIDE GROUP 3*/

#splash .orbit-container .slide3-a h2 {color: #1a97d7;}
#splash .orbit-container .slide3-a h3 {margin-top: 25px; margin-left: 70px;}
#splash .orbit-container .slide3-a p {text-align: left; color: #01457e; font-size: 22px; margin-bottom: 20px; text-transform: uppercase; margin-left: 70px;}
#splash .orbit-container .slide3-a a.learn-more { margin-left: 70px;}

/*#splash .orbit-container .slide3-a h3, #splash .orbit-container .slide3-b h3, #splash .orbit-container .slide3-d h2 {
  text-align: left; 
  margin-top: 160px; 
  margin-left: 540px;
}

#splash .orbit-container .slide3-a{}
#splash .orbit-container .slide3-b{}
#splash .orbit-container .slide3-c h2 {
  text-align: center;
  margin-top: 13px;
  margin-left: 330px;
  font-size: 56px;
  color: #FFF;
  text-shadow: 2px 2px 10px #CDC3B7;
}

#splash .orbit-container .slide3-d h2, #splash .orbit-container .slide3-d p, #splash .orbit-container .slide3-d a.learn-more { margin-left: 635px;}

#splash .orbit-container .slide3-d p { 
  color: #FFF;
  text-shadow: 1px 1px 5px #5a3600;
  font-size: 16px;
  font-weight: bold;
  margin-top: -10px;
}*/


