/*
 * jQuery Nivo Slider v2.6
 * 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 {
	overflow: hidden;
}
.nivoSlider {
	background:#FFF url('../images/loading.gif') no-repeat 50% 50%;
	position: relative;
	height:360px;
}
.nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
}
/* 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;
}
/* 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;
	right: 50px;
	top: 90px;
	color: #381;
	opacity: 0.8; /* Overridden by captionOpacity setting */
	width: 410px;
	z-index: 8;
	font: bold 17px/30px 'Ledger', serif;
	text-shadow: 2px 2px 3px #DDD;
	text-transform: uppercase;
}
.nivo-caption p {
	padding: 5px;
	margin: 0;
}
.nivo-caption p span {
	padding-bottom: 10px;
	color: #000;
	display: block;
	font-size: 21px;
}
.nivo-caption a {
	display: inline !important;
}
.nivo-html-caption {
	display: none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	margin-top: -36px;
	border: 0;
	width: 36px;
	background: url('../images/arrows.png') no-repeat;
	height: 36px;
	display: block;
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	z-index: 1000;
	cursor: pointer;
}
a.nivo-nextNav {
	background-position: -36px 0;
	right: 15px;
}
a.nivo-prevNav {
	left: 15px;
}
/* Control nav styles (With NO Numbers, just bullets) */
.nivo-controlNav {
	bottom: 2px;
	left: 0;
	position: absolute;
	z-index: 1000;
	width: 100%;
	padding: 4px 0;
	text-align: center;
}
.nivo-controlNav a {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url('../images/bullets.png') no-repeat;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	cursor: pointer;
}
.nivo-controlNav a.active {
	background-position: 0 -22px;
}
