/*
 * jQuery Nivo Slider v2.4
 * 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;
	padding:0px;margin:0px;
    background-size:cover;
    width:100%;
    height:220px;
}

.nivoSlider img {
	position:absolute;
	top:0px; left:0px;
	height:100%;
	width:100%;
}


/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px; left:0px;
	width:100%;
	height:100%;
	/*width:300px;height:220px;*/
	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%;   		 
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	position:absolute;
	right:0px;top:0px;
	
	background: #000000;
	/*-moz-border-radius: 6px;  -webkit-border-radius: 6px;*/
    padding: 2px;
    border: 1px solid #CCC;
    opacity: 0.7;
    z-index: 99;
    height:26px;
	}
	
.nivo-controlNav:hover{opacity: 1;}
	
.nivo-controlNav a {
	display:block;
	height:22px;
	width:20px;
	text-indent:-9999px;
	border:0;
	margin-right:0px;
	float:left;
	background:url(../images/bullets.png) no-repeat;
}

.nivo-controlNav a.active {
	background-position:0 -22px;
}

/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav {display:block;}

.nivo-directionNav a {
	display:none;
	height:30px;
	width:30px;
	background:url(../images/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	top:90%;
}
a.nivo-nextNav 
{
	background-position: -30px 0px;
	position:relative;
	top:70px;left:270px;
}

a.nivo-nextNav:hover
{
	background-position:0px 0px;
	position:relative;
	top:70px;left:270px;
	}

a.nivo-prevNav 
{
	position:relative;
	top:80px;left:1px;
	background-position:0px 0px;
}
a.nivo-prevNav:hover
{
    background-position:0px 0px;
	top:80px;left: 2px;

}

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;bottom:0px;
	background:#000;
	color:#fff;
	opacity:0.8; 
	width:100%;
	z-index:89;
	text-align:justify;
}
.nivo-caption p {
	padding:5px;
	margin:0;
	color:#fff;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}

