/**
 *   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 {
 position:relative;
 z-index:1;
}
.unslider-nav {
  position:absolute;
  top:10px;
  z-index:10;
  left:50%;
  margin-left:424px;
}
.unslider-nav ol {
  list-style: none;
  text-align: center;
}
.unslider-nav ol li {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 4px;
  background: #85b1d6;
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
  overflow: hidden;
  text-indent: -999em;
  border: 3px solid #85b1d6;
  border: 3px solid rgba(255,255,255,0.5);
  border: 3px solid transparent;
  cursor: pointer;
-webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.75);
box-shadow: 0 2px 3px 0 rgba(0,0,0,0.75);

}
.unslider-nav ol li.unslider-active {
  background: #fff;
  border: 3px solid #2d9aee;
  background: #0a3c81;
  cursor: default;
}
