/*
 *  Liquid Slider v2
 *  Copyright 2012 Kevin Batdorf
 *  http://liquidslider.com
 *  MIT license
 */

.no-js .liquid-slider {
  height:350px;
  overflow:scroll;
}
.ls-preloader {  
  background: url(../image/loading.gif) #f2f2f2 no-repeat center 50%;
  opacity:1;
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:2;
}

/*** Containers ***/
.ls-wrapper {
  clear: both;
    margin: 30px auto;
  overflow: auto;
  position: relative;
}
.liquid-slider {
  width: 600px;
  margin: 0 auto;
  float: left;
  overflow: hidden;
  position: relative;
}
.arrows .liquid-slider {
  /* Margin between slider and arrows */
  margin: 0 10px;
}
.ls-responsive .liquid-slider {
  width: 100%;
  margin: 0;
  margin-top: 30px;
}
.panel-container {
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  /* from http://davidwalsh.name/translate3d */
}
.liquid-slider .panel-container .fade {
  width:100%;
  opacity: 0;
  position: absolute;
  top: 0; 
  left: 0;
  display: block;
}

/*** Panels ***/
.liquid-slider .ls-panel {  
  width: 1200px;
  display: block;
  float: left;
}
.panel-wrapper {
  position:relative;
}

/*** Tabbed Navigation ***/
.ls-nav {
  /*overflow:hidden;*/
  clear:both;
    position: relative;
}
.ls-nav:after{
    content: '';
    background: url("../image/bor-back1.jpg") center bottom no-repeat;
    width: 100%;
    height: 4px;
}
.ls-nav a {
  color: #fff;
  margin-right: 1px;
  text-transform: uppercase;
  outline:0;
}
.ls-nav a:hover {
  color: #42ae83;
  text-shadow: none;
}
.ls-nav .current a {
  position: relative;
  /*border-bottom: 2px solid #dab400;*/
}
.ls-nav .current a:before{
    content: '';
    background: #2e775a;
    background: -moz-linear-gradient(left, #2e775a 0%, #429382 37%, #6abd93 70%, #87c856 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2e775a), color-stop(37%,#429382), color-stop(70%,#6abd93), color-stop(100%,#87c856));
    background: -webkit-linear-gradient(left, #2e775a 0%,#429382 37%,#6abd93 70%,#87c856 100%);
    background: -o-linear-gradient(left, #2e775a 0%,#429382 37%,#6abd93 70%,#87c856 100%);
    background: -ms-linear-gradient(left, #2e775a 0%,#429382 37%,#6abd93 70%,#87c856 100%);
    background: linear-gradient(to right, #2e775a 0%,#429382 37%,#6abd93 70%,#87c856 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e775a', endColorstr='#87c856',GradientType=1 );
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0px;
    left: 0;
}
.ls-nav .current a:after{
  content: '';
  background: url("../image/arr.png") bottom center no-repeat;
  width: 9px;
  height: 5px;
  position: absolute;
    bottom: -4px;
  z-index: 2;
  left: 45%;
}
.ls-nav a:hover:after {
}
.currentCrossLink {
  font-weight: bold;
}
.ls-nav ul {  
  padding:0;
  clear: both;
  display: block;
  margin: auto;
  float: none !important;
  /*overflow: hidden;*/
}
.ls-nav ul li {
    display: inline-block;
    vertical-align: top;
    width: 33%;
}
.ls-nav ul li a {
    display: block;
    padding: 15px 0px;
    margin: 0 auto;
    width: 50%;
    font-family: 'OpenSansRegular';
    text-align: center;
    text-decoration: none;
}

/*** Mobile Navigation ***/
.ls-select-box { 
  width: 100%;
  height: 35px;
  overflow: hidden;
  background: url(../image/menu.png) no-repeat right #ddd;
}
.ls-select-box select {  
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance:none;
  background: transparent;
  padding: 5px;
  font-size: 110%;
  border: none;
  height: 35px;
  cursor:pointer;
  outline: 0;
}

/*** Arrow Navigation (non-graphical) ***/
.ls-nav-left, .ls-nav-right {
  top:0;
  float: left;
  clear:both;
}
.ls-nav-left a, .ls-nav-right a {
  background: #000;
  color: #fff;
  padding: 5px;
  width: 100px;
  display: block;
  text-align: center;
  text-decoration: none;
}
.ls-responsive .ls-nav-left {
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-left a {
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-left a:hover {
  background: #747474;
}
.ls-responsive .ls-nav-right {
  position: absolute;
  right: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right a {
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-right a:hover {
  background: #747474;
}

/*** Arrow Navigation (graphical) ***/
.ls-nav-left-arrow, .ls-nav-right-arrow {
  cursor: pointer;
  float: left;
  clear: both;
}
.ls-nav-left-arrow a, .ls-nav-right-arrow a {
  display: block;
}
[class$="-arrow"] {
  width: 25px;
  height: 25px;
  background-image: url(../image/arrow.png);
  background-repeat: no-repeat;
  margin-top: 50px;
  position:relative;
}
.ls-nav-right-arrow {
  background-position: top right;  
  margin-right: 5px;
}
.ls-nav-left-arrow {
  background-position: top left;  
  margin-left: 5px;
}
.ls-nav-left-arrow:hover {
  background-position: bottom left;
}
.ls-nav-right-arrow:hover {
  background-position: bottom right;
}
.ls-responsive .ls-nav-left-arrow {
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right-arrow {
  position: absolute;
  right: 0;
  z-index: 2;
}
