/**
 *   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 {
    position: relative;
    float:left;
    width: 100%;
    margin-top: -50px;
    z-index: 10;
    overflow: hidden;
    text-align: center;
}

.unslider-nav ol {
  list-style: none;
}
.unslider-nav ol li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 40%;
  overflow: hidden;
  text-indent: -9999px;
  border: 3px solid #fff;
  cursor: pointer;
}

.unslider-nav ol li.unslider-active {
  background: #fff;
  cursor: default;
}

.unslider-nav ol li.unslider-active:hover {
  background: #fff;
  curoser: pointer !important;  
}
