/*
 * 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: url('../images/loading.gif') no-repeat 50% 50%;
	position: relative;
	min-height:344px;
}
.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 {
	padding: 15px;
	background: url('../images/bg_caption01.png') 0 0 repeat-y;
	width:468px;
	position: absolute;
	right: 20px;
	bottom: 30px;
	color: #FFF;
	opacity: 0.8; /* Overridden by captionOpacity setting */
	z-index: 8;
	font: normal 19px/28px "Times New Roman", Times, serif;
	text-shadow: 0px 0px 5px #000;
}
.nivo-caption p {
	padding: 0 !important;
	margin: 0;
}
.nivo-caption p span {
	font-size:22px;
	display: block;
	text-transform:uppercase;
}
.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 {
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -60px; /* Tweak this to center bullets */
	z-index: 1000;
}
.nivo-controlNav a {
	display: block;
	width: 22px;
	height: 22px;
	background: url('../images/bullets.png') no-repeat;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
	cursor: pointer;
}
.nivo-controlNav a.active {
	background-position: 0 -22px;
}
