/**
 *   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-nav ol {
  display:none;
  /*background-color: #333;*/
  background-color: rgba(219, 132, 37, 1.0);
  padding: .75em .5em .5em .5em;
  list-style: none;
  text-align: center;
  margin-bottom:0px !important;
  box-shadow: 0 0 5px 3px #2d2d2d;
}
.unslider-nav ol li {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 .5em;
  background: transparent;
  border-radius: 1em;
  overflow: hidden;
  text-indent: -999em;
  border: 2px solid #fff;
  cursor: pointer;
}
.unslider-nav ol li.unslider-active {
  background-color: rgba(255, 255, 255, 1.0);
  cursor: default;
}
