/**
 *   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: 16px;
  height: 16px;
  border-radius: 1em;
  margin: .6em .6em;
  background: transparent;
  background: #000;
  color: #fff;
  overflow: hidden;
  text-indent: -999em;
  /*border: 1px solid #C19416;
  border: 1px solid rgba(193,148,22,.4);*/
  border: 1px solid rgba(255,255,255,.2);
 
  transition: .1s;
  cursor: pointer;
  vertical-align: bottom;
  
   -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
	 
}
.unslider-nav ol li:hover {
	/*background-color: rgba(233,188,62,1);
	background-color: rgba(233,233,233,.7);
	background-color: #E3B536;*/
	background-color: #FFF;
	transition: none;
}
	
.unslider-nav ol li.unslider-active {
  background: #C19416;
  background: #bbb;
  color: #000;
  cursor: default;
}
