/**
 *   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{
  width: 100%;
  max-width: 950px;
  min-width: 250px;
  margin: 0 auto;
  box-sizing: border-box;
  height: 30px;
  position: relative;
  margin: 0 auto;
  /*background-color: aqua;*/
  clear: both;
  padding-top: 10px;
}

.unslider-nav ol {
  widows: auto;
  height: auto;
  list-style: none;
  text-align: center;
  font-size: 0pt;
}
.unslider-nav ol li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
  text-indent: -999em;
  border: 2px solid #cccccc;
  cursor: pointer;
}
.unslider-nav ol li.unslider-active {
  background: #cccccc;
  cursor: default;
}


/* ==========================================================================
  @media screen and (max-width: 450px)
========================================================================== */

@media screen and (max-width: 650px) {

  .unslider-nav ol {
    margin-top: 40px;
    text-align: center;
  }

}