/*
 * jQuery Nivo Slider v2.5.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	display:block;
	height: 100%;
	background:url('images/loading.gif') no-repeat 50% 50%;
	-moz-box-shadow: inset 0 0 20px 0 #444;
    -webkit-box-shadow: inset 0 0 20px 0 #444;
}
.nivoSlider img {
	display: none;
	position:absolute;
	top:0px;
	left:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	/* background:#fff; */
	color:#000;
	height:100px;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:100%;
	z-index:8;
}
.nivo-caption p {
	padding:20px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	color:#cdb52d;/* #cfb105; */
	cursor:pointer;
	display:block;
	font-family: Tahoma;
	font-weight: bold;
	float:left;
	position:absolute;
	top:287px;
	z-index:9;
	text-shadow:0 0 3px #600033;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.nivo-prevNav {
	right:70px;
}
.nivo-nextNav {
	right:20px;
}
/* Control nav styles (e.g. 1,2,3...) */

/*Neopixel Design Custom styles*/
.nivo-controlNav{position:absolute;right:120px;top:283px;}
.nivo-controlNav a.nivo-control{
  -webkit-transition:-webkit-transform .3s ease-out;
  -o-transition:-o-transform .2s ease-out;
  -moz-transition:-moz-transform .2s ease-out;
  -moz-user-select: none;
  -webkit-user-select: none;
  transition:transform .2s ease-out;
  background-image:url(../images/bullets.jpg);
  background-repeat:no-repeat;
  border: 0 none;
  cursor:pointer;
  display: block;
  float: left;
  height: 23px;
  margin-right: 3px;
  position:relative;
  text-indent: -9999px;
  width: 28px;
  z-index:9;
}

.nivo-controlNav a.active {
	-webkit-transform:scale(0.8);
	-o-transform:scale(0.8);
	-moz-transform:scale(0.8);
	background-position:0 -23px;
}

/*---------------------*/


