/*
This stylesheet was created by Ray Hyde in LESS
(c) 2013 Ray Hyde - www.rayhyde.nl
*/
/* Basic jQuery Slider essential styles */
#slider {
  margin: 35px auto 60px;
}
#slider * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#slider ul.bjqs {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  display: none;
  -webkit-box-shadow: 0 0 10px #888;
  -moz-box-shadow: 0 0 10px #888;
  box-shadow: 0 0 10px #888;
  border: solid 10px #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  behavior: url(css/PIE.htc);
}
#slider ul.bjqs .bjqs-slide {
  position: absolute;
  display: none;
}
#slider ul.bjqs .bjqs-slide .caption {
  position: absolute;
  bottom: -40px;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  color: #fff;
  height: 60px;
  padding: 10px;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  text-align: center;
}
#slider ul.bjqs .bjqs-slide:hover .caption {
  bottom: 0;
}
#slider ul.bjqs-controls {
  list-style: none !important;
  margin: 0;
  padding: 0;
  z-index: 9999;
  display: none;
}
#slider ul.bjqs-controls li {
  list-style-type: none !important;
}
#slider ul.bjqs-controls > li a {
  background: url(../img/prev-next.png) 0 0 no-repeat;
  width: 31px;
  height: 80px;
  opacity: .7;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  text-indent: -9999px;
}
#slider ul.bjqs-controls > li a:hover {
  opacity: 1;
}
#slider ul.bjqs-controls.v-centered li a {
  position: absolute;
}
#slider ul.bjqs-controls.v-centered li.bjqs-next a {
  right: -60px;
  background-position: 100% 0;
}
#slider ul.bjqs-controls.v-centered li.bjqs-prev a {
  left: -60px;
}
#slider ol.bjqs-markers {
  list-style: none !important;
  padding: 0;
  margin: 20px 0 0;
  width: 100%;
}
#slider ol.bjqs-markers.h-centered {
  text-align: center;
}
#slider ol.bjqs-markers li {
  display: inline;
  margin: 10px 5px;
}
#slider ol.bjqs-markers li.active-marker a {
  background: #385f98;
}
#slider ol.bjqs-markers li:hover {
  opacity: .6;
}
#slider ol.bjqs-markers li a {
  display: inline-block;
  cursor: pointer;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  text-indent: -9999px;
}
p.bjqs-caption {
  display: block;
  width: 96%;
  margin: 0;
  padding: 2%;
  position: absolute;
  bottom: 0;
}
