/*
* jQuery Nivo Slider v3.1
* http://nivo.dev7studios.com
*
* Copyright 2012, Dev7studios
* Free to use and abuse under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
 
The Nivo Slider styles*/
DIV.slider-wrapper
{
	position: relative;
	top: 0px;
	width: 85%;
	padding: 0;
	margin: 0 auto;

}
.nivoSlider
{
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	border: 5px solid #fff;	
	margin:0 auto;

}
.nivoSlider IMG
{
	position: absolute;
	top: 0px;
	left: 0px;
	max-width: none;
}
.nivo-main-image
{
	display: block !important;
	position: relative !important;
	width: 100% !important;
}
/*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: 100%;
	top: 0;
}
.nivo-box
{
	display: block;
	position: absolute;
	z-index: 5;
	overflow: hidden;
}
.nivo-box IMG
{
	display: block;
}
/*Caption styles*/
.nivo-caption
{
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: #000;
	color: #FFF;
	width: 100%;
	z-index: 8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter: alpha(opacity=8);
	-webkit-box-sizing: border-box;
/*Safari/Chrome, other WebKit*/
	-moz-box-sizing: border-box;
/*Firefox, other Gecko*/
	box-sizing: border-box;
/*Opera/IE 8+*/
}
.nivo-caption P
{
	padding: 5px;
	margin: 0;
}
.nivo-caption A
{
	display: inline !important;
}
.nivo-html-caption
{
	display: none;
}
/*Direction nav styles (e.g. Next & Prev)*/
.nivo-directionNav A
{
	position: absolute;
	top: 45%;
	z-index: 9;
	cursor: pointer;
}
.nivo-prevNav
{
	left: 0px;
}
.nivo-nextNav
{
	right: 0px;
}
/*Control nav styles (e.g. 1,2,3...)*/
.nivo-controlNav
{
	text-align: center;
	padding: 15px 0;
}
.nivo-controlNav A
{
	cursor: pointer;
}
.nivo-controlNav A.active
{
	font-weight: bold;
}

/* Pure CSS3 jQuery-Like fadeIn
---------------------------------------------------- */
.fadeIn {
	
	/* CSS needed for animation
	---------------------------------------------------- */
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	-o-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	-o-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}

/* Animation Times - Time for image to fade in
---------------------------------------------------- */
.fadeIn-3s {
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
}

.fadeIn-5s {
	-webkit-animation-duration:5s;
	-moz-animation-duration:5s;
	-o-animation-duration:5s;
	animation-duration:5s;
}

/* Animation Delay - Time for image to be delayed
---------------------------------------------------- */
.fadeIn-Delay-3s {
	-webkit-animation-delay:1s;
	-moz-animation-delay:1s;
	-o-animation-delay:1s;
	animation-delay:1s;
}

.fadeIn-Delay-5s {
	-webkit-animation-delay:5s;
	-moz-animation-delay:5s;
	-o-animation-delay:5s;
	animation-delay:5s;
}

/* Key Frames
---------------------------------------------------- */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-o-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }