/**
 *   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 {
  list-style: none;
  text-align: center;
}
.unslider-nav ol li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background: transparent;
  overflow: hidden;
  text-indent: -999em;
  border: 1px solid ##5a5a5a ;
  cursor: pointer;
  -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.unslider-nav ol li.unslider-active {
   background: #ea640d;
   border: 1px solid #ea640d ;
   cursor: default;
}
