/*
 * jQuery Nivo Slider v2.5.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;
	margin-top: 89px;
	margin-left: 24px;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}

/* 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;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:120px;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left: -50px;
	line-height: 18px;;
	width: 20px;
	height: 20px;
	background: url(images/arrow_left.png) no-repeat;
	background-color: #a7a7a7;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	color: #fbfbfb;
	text-indent: -9999px;
}

.nivo-nextNav {
	right: -118px;
	width: 20px;
	height: 20px;
	margin-left: 10px;
	margin-right: 90px;
	background: url(images/arrow_right.png) no-repeat;
	background-color: #a7a7a7;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	color: #fbfbfb;
	text-indent: -9999px;
}

.nivo-nextNav:hover, .nivo-prevNav:hover {
	background-color: #2b2b2b;

}


/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav {
	top: 10px;
	left: 90px;
	position: absolute;
	margin-top: 420px;
}

.nivo-controlNav a {
	text-indent: -9999px;
	display: block;
	float: left;
	height: 8px;
	width: 8px;
	margin-right: 4px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background-color: #a7a7a7;
	

}
.nivo-controlNav a.active {
	background-color: #2b2b2b;
}