/*
 * jQuery Nivo Slider v2.4
 * 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;
	border:10px solid #fff;
	float:left;
	margin:0 75px 40px 0;
	width: 471px; height: 391px;
	box-shadow:0px 5px 6px 3px rgba(0,0,0,1);
	-moz-box-shadow:0px 5px 6px 3px rgba(0,0,0,1);
	-webkit-box-shadow:0px 5px 6px 3px rgba(0,0,0,1);
}
.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%;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav { background:url(../images/navi-bg.png) 0 0 repeat-x; position:absolute; z-index:999; overflow:hidden; bottom:-46px;
	border-radius:13px;
	-moz-border-radius:13px;
	-webkit-border-radius:13px;
	box-shadow:0 2px 2px rgba(0,0,0,0.75);
	-moz-box-shadow:0 2px 2px rgba(0,0,0,0.75);
	-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.75);
	left:190px;
}
.nivo-directionNav a {
	top:45%;
	cursor:pointer;
	display:inline-block;
	text-indent:-100px;
	width:45px; height:46px;
}
.nivo-prevNav {
	background:url(../images/prev.png) 50% 50% no-repeat;
	border-right:1px solid #000;
}
.nivo-nextNav {
	background:url(../images/next.png) 50% 50% no-repeat;
	border-left:1px solid #2a2929;
}
.nivo-prevNav:hover {
	background:url(../images/prev-hover.png) 50% 50% no-repeat;
}
.nivo-nextNav:hover {
	background:url(../images/next-hover.png) 50% 50% no-repeat;
}