/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	box-shadow: 0 5px 6px rgba(0, 0, 0, 0.05);
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* 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;
	background:white; 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

.nivoSlider .substrate {
  display: none;
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #fff;
  border-radius: 0 0 5px 5px;
  bottom: 0;
  height: 118px;
  left: 0;
  position: absolute;
  width: 770px;
  z-index: 999;
}

/* Caption styles */
.nivo-caption {
  bottom: 0;
  color: #fff;
  height: 70px;
  left: 0;
  opacity: 0.8;
  padding: 10px 40px 30px;
  position: absolute;
  width: 690px;
  z-index: 999999;
}
.nivo-caption h3 {
  color: #fff;
  font-size: 1.833em;
  margin-bottom: 0.2em;
}
.nivo-caption .alignleft {
	margin-right: 1.5em;
	padding: .5em 1.5em .5em 0;
	background: url(default/divider.png) no-repeat right center;
	text-align: right;
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
.nivo-controlNav {
	display: none;
	background: #f2f2f2; /* Old browsers */
	background: -moz-linear-gradient(top, #f2f2f2 0%, #dfdfdf 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f2f2f2 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f2f2f2 0%,#dfdfdf 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f2f2f2 0%,#dfdfdf 100%); /* IE10+ */
	background: linear-gradient(to bottom, #f2f2f2 0%,#dfdfdf 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#dfdfdf',GradientType=0 );
  border-radius: 5px;
  bottom: -13px;
  left: 50%;
  margin-left: -60px;
  padding: 0.4em 1.8em;
  position: absolute;
  z-index: 999999;
}

.nivo-controlNav a {
	display:block;
	cursor: pointer;
	width:18px;
	height:18px;
	background:url(default/bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin-right:0;
	float:left;
}

.nivo-controlNav a.active {
	background-position:0 -22px;
}

.nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(default/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
}

a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}

a.nivo-prevNav {
	left:15px;
}