/**
 *   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;
	margin-top: 20px;
	display: block;
}
.unslider-nav ol li {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-top: 0;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    text-indent: -999em;
    border: 5px solid #B7CD2C;
    cursor: pointer;
    background-color: #B7CD2C;
}
.unslider-nav ol li.unslider-active {
    cursor: default;
    border: 5px solid #666666;
    background-color: #666666;
}
