/*
 * 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 */
.nivoSlider {
	position:relative;
	background:rgb(255,255,255);
	background:rgba(255,255,255,0.5) url("../images/ajax-loader.gif") no-repeat center;
	box-shadow:0px 0px 7px 0px #999;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}

.nivoSlider a {
	border:0px;
	display:block;
}

/* 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:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	display:none;
}
.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:45%;
	z-index:9;
	cursor:pointer;
	background-color:white;
	box-shadow:1px 1px 3px #000;
	border-color:#000;
	border-style:solid;
}
.nivo-prevNav {
	left:0px;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
	padding:4px 10px 4px 6px;
	border-width:1px 1px 1px 0px;
}
.nivo-nextNav {
	right:0px;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	padding:4px 6px 4px 10px;
	border-width:1px 0px 1px 1px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav.image-control-container {
	position:absolute;
	bottom:10px;
	left:10px;
}

.nivo-controlNav.non-image-control-container {
	position:absolute;
	bottom:10px;
	right:10px;
}

.nivo-controlNav a.non-image-control {
	width:30px;
	height:30px;
	background:url('../images/Circle.png') center no-repeat;
	text-decoration:none;
	border:0px;
	padding:0px;
	font-size:0px;
	text-indent:-3000px;
}

.nivo-controlNav a.image-control {
	background-color:#E1F5FB;
	border:1px solid #24a9e2;
	box-shadow:0px 0px 7px -1px #000;
	font-weight:bold;
	text-align:center;
	margin:0px 3px 0px 0px;
	
}

.nivo-controlNav a {
	display:block;
	float:left;
	position:relative;	
	z-index:9;
	cursor:pointer;
}

.nivo-controlNav a img {
	position:static;
}

a.nivo-control:hover {
	text-decoration:none;
}

.nivo-controlNav a.active.non-image-control {
	background:url('../images/CircleHover.png') center no-repeat;
}

.nivo-controlNav a.active.image-control {
	background-color:#24a9e2;
	color:#fff;
	border:1px solid #fff;
}
