/*
 * 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 */
.nivoSlider {
	position:relative;
	width: 680px;
	height: 352px;
}
.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: 352px;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height: 352px;
	z-index:8;
	opacity: 100%;
}
.nivo-caption p {
	padding:0;
	margin:0;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav
{
	position: absolute;
	top: 0px;
	left: -80px;
	width: 580px;
}
.nivo-directionNav A,
.nivo-directionNav A:visited
{
	position:absolute;
	top:0;
	z-index:9;
	cursor:pointer;
	width: 80px;
	height: 500px;
	text-indent: -9999px;
	outline: none;
	color: #fff;
	font-size: 0px;
	line-height: 0px;
	background-position: 0 0;
	background-repeat: no-repeat;
}
A.nivo-prevNav {
	left:0px;
	background-image: url(../images/slider-arrow-left.png);
}
A.nivo-nextNav {
	right:0px;
	background-image: url(../images/slider-arrow-right.png);
}
.nivo-directionNav A:hover { background-position: 0 -500px; }
.nivo-directionNav A:active { background-position: 0 -1000px; }


/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav
{
	position: absolute;
	top: 310px;
	right: 20px;
	z-index: 1000;
}
.nivo-controlNav A,
.nivo-controlNav A:visited
{
	position:relative;
	z-index:9;
	display: block;
	float: left;
	width: 17px;
	height: 17px;
	background: url(../images/slider-nav.png) no-repeat 0 -17px;
	text-indent: -9999px;
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
	margin-left: 5px;
}
.nivo-controlNav A:hover
{
	background-position: 0 -34px;
}
.nivo-controlNav A.active,
.nivo-controlNav A:visited.active,
.nivo-controlNav A:hover.active
{
	background-position: 0 0;
}





