/*
 * jQuery Nivo Slider v2.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, 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;
}
.nivoSlider img {
	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:60;
	display:none;
}
/* The slices in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:50;
	height:100%;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:15px;
	bottom:15px;
	background:#000;
	color:#fff;
	padding: 7px;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width: auto;
	z-index:89;

		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		-khtml-border-radius:5px;
		border-radius:5px;

}
.nivo-caption p {
	padding:5px;
	margin:0;
	font-family:'Droid Sans',arial,serif;
	font-size: 14px;
        text-shadow: none;
}
/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav a {
	position:absolute;
	top:43%;
	z-index:99;
	cursor:pointer;
	text-indent:-9999px;
}
.nivo-prevNav {
	left:30px;

	background: url(../img/leftarrow.png) no-repeat bottom;
	width: 31px;
	height: 46px;
}
.nivo-prevNav:hover {
	background: url(../img/leftarrow.png) no-repeat top;
}
.nivo-nextNav {
	right:30px;
	background: url(../img/rightarrow.png) no-repeat bottom;
	width: 31px;
	height: 46px;
}
.nivo-nextNav:hover {
	background: url(../img/rightarrow.png) no-repeat top;
}

/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav a {
background:url(../img/bullets.png) no-repeat scroll 0 0 transparent;
border:0 none;
display:block;
float:left;
height:10px;
margin-right:3px;
text-indent:-9999px;
width:10px;
	cursor: pointer;
}
.nivo-controlNav a.active {
background-position:-10px 0;
}

.nivo-controlNav {
bottom:-35px;
position:absolute;
right: 0;
}
#slider_module_nivo {
    padding: 15px;
    background: white;
    border: 1px dotted #a2a2a2;
    margin-top: 30px;
    margin-bottom: 35px;
}
