/*
 * jQuery Nivo Slider v2.7.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;
}
.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:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:40px;
	background:#000;
	color:#fff;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:400px;
	z-index:8;
}

.nivo-caption h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#FFF;
	font-weight:bold;
	margin:10px 0 0 10px;
}
.nivo-caption p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#FFF;
	margin:5px 5px 10px 10px;
}
.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:10px;
	background:url(../../../../images/gui/prev.png) no-repeat !important;
	display:block;
	width:20px;
	height:20px;
	position:absolute !important;
}
.nivo-nextNav {
	right:0px;
	background:url(../../../../images/gui/next.png) no-repeat !important;
	display:block;
	width:20px;
	height:20px;
	position:absolute;
}
/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav{
	right:10px;
	bottom:10px;
	position:absolute;
	padding:10px 10px 10px 40px;
	height:20px;
	background:url(../../../../images/gui/num_container_bg.png) repeat-x;
	z-index:9999999;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
	float:left;
	font-size:10px;
	color:#FFF;
	display:block;
	width:20px;
	height:20px;
	background:url(../../../../images/gui/number_bg.png) no-repeat;
	margin:0 5px;
	text-align:center;
	padding:3px 0 0 0;
	

}
.nivo-controlNav a.active {
	font-weight:bold;
	color:#000;
	background:url(../../../../images/gui/number_bg_active.png) no-repeat;
	text-align:center;
	
}