/**
 *   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 {
  -webkit-tap-highlight-color: rgba(227, 181, 54, 0); /* Try this at 0 for just the slider dots */
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 12px; 
  margin: .7em .4em;
  background: transparent;
  
  overflow: hidden;
  text-indent: -999em;
 
  border: 1px solid #777;
  transition: .1s;
  cursor: pointer;
  vertical-align: bottom;
  transition: .25s;
}
.unslider-nav ol li:hover {
	background-color: rgba(233,188,62,1);
	background-color: rgba(233,233,233,.7);
	background-color: #666;
	transition: 0;
}
	
.unslider-nav ol li.unslider-active {
  background: #C19416;
  background: #D00;
  color: #fff;
  cursor: default;
}
