/**
 *   Here's where everything gets included. You don't need
 *   to change anything here, and doing so might break
 *   stuff. Here be dragons and all that.
 */
/**
 *   Default variables
 *
 *   While these can be set with JavaScript, it's probably
 *   better and faster to just set them here, compile to
 *   CSS and include that instead to use some of that
 *   hardware-accelerated goodness.
 */
.unslider {
  overflow: hidden;
  margin: 0;
  padding: 0;
  max-height: 475px;
  position: relative;
}

.unslider-wrap {
  position: relative;
}

.unslider-wrap.unslider-carousel > li {
  float: left;
}

.unslider-wrap.unslider-carousel > li img {
  width: 100%;
}

.unslider-wrap.unslider-carousel > li div {
  height: 100%;
  width: 960px;
}

.unslider-vertical > ul {
  height: 100%;
}

.unslider-vertical li {
  float: none;
  width: 100%;
}

.unslider-fade {
  position: relative;
}

.unslider-fade .unslider-wrap li {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 8;
}

.unslider-fade .unslider-wrap li.unslider-active {
  z-index: 10;
}

.unslider ul, .unslider ol, .unslider li {
  list-style: none;
  /* Reset any weird spacing */
  margin: 0;
  padding: 0;
  border: none;
}

.unslider-arrow {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  transition: all 300ms ease-in-out;

}

.unslider-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
}

.unslider-arrow.next {
  left: auto;
  right: 20px;
}

.unslider li {
  position: relative;
}
.unslider li span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: none;
  color: white;
  font-size: 20px;


}
