/*
 * jQuery Nivo Slider v1.8
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, 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:60;
	display:none;
}
/* The slices in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:50;
	height:100%;
}
/* Caption styles */
.nivo-caption {
	position: relative;
	top:430px;
	left:0px;
	bottom:0px;
	background:#FFFFFF;
	color:#444444;
	text-align: center;
	/* opacity:0.8; Overridden by captionOpacity setting */
	width:100%;
	z-index:89;
	font-size: 15px;
	font-weight: bold;
}
.nivo-caption p {
	padding:5px;
    font-size: 18px;
	margin:0;
}
.nivo-caption a:link {
	padding:5px;
    font-size: 18px;
    color: #000000;
	margin:0;
}
.nivo-caption a:visited {
	padding:5px;
    font-size: 18px;
    color: #000000;
	margin:0;
}
.nivo-caption a:hover {
	padding:5px;
    font-size: 18px;
    color: #D1083E;
    text-decoration: underline;
	margin:0;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:105%;
	z-index:99;
	cursor:pointer;
}
.nivo-prevNav {
	background: transparent url(../images/left_arrow.png) left top no-repeat;
	width: 50px;
	height: 50px;
	left:100px;
	/*
	text-indent: 25px;
	line-height: 38px;
	*/
}
.nivo-nextNav {
	background: transparent url(../images/right_arrow.png) left top no-repeat;
	width: 50px;
	height: 50px;
	right:100px;
	/*
	text-indent: -30px;
	line-height: 37px;
	*/
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:99;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}
