/*
 * jQuery Nivo Slider v2.6
 * 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 */
#slider {
	height: 225px !important;
}

.nivoSlider {
	position:relative;
	margin: 0 auto;	
	width: 700px;
	background:#fff url(loading.gif) no-repeat 50% 50%;
}
.nivoSlider img {
	display:none;
	position:absolute;
	top:0px;
	left:0px;
}

.slider-wrapper {
	position: relative;
	background:url(img) no-repeat 50% 50%;
	width: 700px;
}

/* 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;
	top: 20px;
	background:#044e10;
	opacity:0.8; /* Overridden by captionOpacity setting */
	max-width: 300px;
	z-index:8;	
	padding: 15px;
	text-align: left;
}
.nivo-caption h2 {
	color:#fff;
	margin: 0 0 0 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}

.nivo-caption p {
	color:#fff;
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}
.nivo-caption a {
	display:inline !important;
	color: #fff;
}
.nivo-caption a:hover {
	color: #222;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position: absolute;	
	top:45%;
	z-index:9;
	cursor:pointer;
	
	display:block;
	width:30px;
	height:30px;
	background:url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	
}
.nivo-prevNav {
	left:15px;
}
.nivo-nextNav {
	background-position: -30px 0 !important;
	right:15px;

}

.nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;

}
.nivo-prevNav {
	
	
	left:15px;
	
}
.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}

#slider .nivo-controlNav {
	position:absolute;
	bottom: 20px;
	right: 20px;
	width: 650px;
	text-align: right;
}
#slider .nivo-controlNav img {
	display:inline; /* Unhide the thumbnails */
	position:relative;
	margin-left:5px;
	opacity: 0.3;
}

#slider .nivo-controlNav a.active img {
	opacity: 1;
}
