/*
 * jQuery Nivo Slider v2.1
 * 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;
	right:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	right: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:absolute;
	right:5px;
	bottom:0px;
	color:#333;
	width:458px;
	z-index:89;
}
.nivo-caption {
	padding:0;
	margin:0;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	display: block;
	z-index:99;
	cursor:pointer;
    padding: 5px 8px;
    margin: 0 0 5px;
    background-color: rgba(50, 124, 225, 0.7);
    color: #fff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.nivo-directionNav a:hover {
	background-color: #327ce1;
}
.nivo-prevNav {
	position: absolute;
	right: 5px;
	top: 5px;
}
.nivo-nextNav {
	position: absolute;
	right: 5px;
	top: 35px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	position: absolute;
	left: 5px;
	top: 5px;
}
.nivo-controlNav a {
	display: inline-block;
	position:relative;
    width: 10px;
	height: 10px;
	z-index:99;
	cursor:pointer;
	text-indent: -9999px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    margin-right: 5px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.nivo-controlNav a:hover, .nivo-controlNav a.active {
	background: #fff;
}