/*
 * jQuery Nivo Slider v2.7.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 */

.slider-wrapper {
    width:960px;
    height:407px;
    margin:20px auto;
    position:relative;
	padding:0px


}

.nivoSlider {
	position:relative;
	background:url(../imagens/loading.gif) no-repeat 50% 50%;
	width:960px;
    height:407px;
	margin:0px 0 0 0px;
	overflow: hidden;


}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	width:960px;
	height:407px;

}
.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;
}
/* 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;
	overflow:hidden;
}

.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	right:10px;
	bottom:10px;
	background:#000;
	color:#fff;
	width:520px;
	z-index:8;
	font-family:"Ubuntu",sans-serif;
	font-size:14px;
	text-align:left;
	padding:10px;
	opacity:0.8; /* Overridden by captionOpacity setting */
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border:#717171 1px solid;
}
.nivo-caption strong{font-family:"Oswald",cursive; font-size:22px; font-weight:normal}

.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:100px;
	z-index:9;
	cursor:pointer;
	display:block;
	width:39px;
	height:200px;
	text-indent:-9999px;
	border:0;

}
a.nivo-prevNav {
	left:0px;
	background: url(../imagens/seta_coin_left.png) center no-repeat;
	/*background:url(arrows.png) no-repeat 0% 50%;*/
}
a.nivo-nextNav {
	/*background:url(arrows.png) no-repeat 100% 50%;*/
	background:url(../imagens/seta_coin_right.png) center no-repeat;
	right:0px;
    
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
    position:absolute;
	right:0;
	top:15px;
    margin-left:-30px; 
	cursor:pointer;
	z-index:9999
}
/* Tweak this to center bullets */
.nivo-controlNav a {
	display:inline-block;
    width:22px;
    height:22px;
    background:url(../imagens/bullets.png) no-repeat;
    text-indent:-9999px;
    border:0;
    margin:0px 3px 0 0;
    float:left;
	z-index:9999;

}
.nivo-controlNav a.active {
	 background-position:0 -22px;
	 z-index:9999
}

