/*
 * 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:100%;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
	width: 100%;
	height: 100%;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* 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; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	top:20px;
	margin: 0 auto;
	right: 0;
	opacity:0.9;
	padding:10px 20px 10px 14px;
	background-color:#fff;
	z-index: 5;
}
.nivo-caption h1 {
	font-size:22px;
	color:#000000;
	font-family:'Ubuntu Condensed', sans-serif;
}
.nivo-html-caption {
    display:none;
}

/* Direction nav styles (e.g. Next & Prev) */
/*.nivo-directionNav{
	position:absolute;
	top: 50%;
	width: 1200px;
	margin: 0 auto;
	left: 0;
	right: 0;
	height: 0;
	z-index: 101;
}
.nivo-directionNav a {
	position:absolute;
	top: -28px;
	cursor:pointer;
	width: 18px;
	height: 56px;
	-webkit-transition: all 333ms;
	-moz-transition: all 333ms;
	-o-transition: all 333ms;
	transition: all 333ms;
}
.nivo-prevNav {
	left: 0px;
	background: url('../../../images/ss-arrow-left.png') no-repeat center;
}
.nivo-prevNav:hover {
	background: url('../../../images/ss-arrow-left-o.png') no-repeat center;
}
.nivo-nextNav {
	right: 0px;
	background: url('../../../images/ss-arrow-right.png') no-repeat center;
}
.nivo-nextNav:hover {
	background: url('../../../images/ss-arrow-right-o.png') no-repeat center;
}*/

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	display:block;
	position:absolute;
	left: 0;
	bottom:20px;
	width:100%;
	text-align:center;
	z-index:9990;
}
.nivo-controlNav a {
	position:relative;
	cursor:pointer;
	display : inline-block;
	width : 10px;
	height : 10px;
	margin-right : 13px;
	border : 1px solid #e1e1e1;
	background-color : #989796;
	border-radius : 5px;
	font-size : 0;
	transition : all 100ms linear;
	z-index:9;
}
.nivo-controlNav a.active, 
.nivo-controlNav a:hover {
	background-color : #e1e1e1;
}
.nivo-controlNav a:last-child {
	margin-right : 0;
}