/*
 * jQuery Nivo Slider v2.7
 * 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;
}
.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: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;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:auto;
	bottom:5%;
	background: url(../images/bar-banner.png) no-repeat scroll 0 0 transparent;
	color:#FFFFFF;
	overflow:visible;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:auto;
	z-index:8;
	max-width:650px;
}
.nivo-caption p {
	margin:0;
	font-size: 25px;
    font-weight: bold;
    padding: 5px 200px 5px 30px;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:40%;
	z-index:9;
	cursor:pointer;
	background: url(../images/arrows2.png) no-repeat scroll 0 0 transparent;
    border: 0 none;
    display: block;
    height: 50px;
    text-indent: -9999px;
    width: 46px;
}
.nivo-directionNav a:hover {
	background: url(../images/arrows2_hover.png) no-repeat scroll 0 0 transparent;

}
a.nivo-prevNav, a.nivo-prevNav:hover {
	left:0px;
}
a.nivo-nextNav, a.nivo-nextNav:hover  {
	background-position: -45px 0;
	right:-1px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}


