/*
 * jQuery Nivo Slider v2.0
 * 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


/* ----------------------  Slider Layout -------------------------- */
 
#slider-wrap{
	width: 940px;
	margin: 0 auto;
	background: #FFF url('images/slider-shadow.png') bottom center no-repeat;
	padding: 20px;
	border-bottom: 1px dotted #CCC;
}
#small-slider-wrap{
	background: url('images/diagonal-line-bg.png') repeat;
	width: 590px;
	padding: 10px;
	margin-bottom: 20px;
}
#slider{
	z-index: 5;
	width: 940px;
	height: 280px;
	margin: 0 auto 10px auto;
	position:relative;
	background: #FFF url('images/nivoslider/loading.gif') no-repeat 50% 50%;
}
.small-slider{
	width: 590px !important;
	height: 280px !important;
	margin: 0 !important;
}
#slider img{
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
#slider a {
	border: 0;
}

.nivoSlider{
	position:relative;
}
.nivoSlider img{
	position: absolute;
	top: 0px;
	left: 0px;
}


/* ----------------------  Image With 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;
}


/* ----------------------  Slider Slices -------------------------- */

.nivo-slice {
	display: block;
	position: absolute;
	z-index: 50;
	height: 100%;
}


/* ----------------------  Caption Styles -------------------------- */

.small-slider .nivo-caption {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	opacity: 0.8;
	width: 100%;
	z-index: 89;
}
.small-slider .nivo-caption p{
	font-size: 1.29em;
	color: #999;
	font-weight: 700;
	padding: 20px;
	margin: 0;
}

/* ----------------------  Control nav styles (e.g. 1,2,3...) -------------------------- */

.nivo-controlNav a{
	position: relative;
	z-index: 99;
	cursor: pointer;
}
.nivo-controlNav a.active{
	font-weight: bold;
}
.nivo-controlNav{
	position: absolute;
	left: 47%;
	bottom: -20px;
}
.nivo-controlNav a{
	display: block;
	width: 15px;
	height: 10px;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}

/* ---------------------- Direction nav styles (e.g. Next & Prev) -------------------------- */

.nivo-directionNav a{
	position: absolute;
	top: 45%;
	z-index: 99;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	border: 0;
	cursor: pointer;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
}
a.nivo-nextNav{
	background: url('images/arrow-next.png') no-repeat;
	background-position: 0 0;
	right: 15px;
}
a.nivo-nextNav:hover{
	background: url('images/arrow-next.png') no-repeat;
	background-position: 0 -30px;
}
a.nivo-prevNav{
	background: url('images/arrow-previous.png') no-repeat;
	background-position: 0 0;
	left: 15px;

}
a.nivo-prevNav:hover{
	background: url('images/arrow-previous.png') no-repeat;
	background-position: 0 -30px;
}


/* ---------------------- Slider Color Styles -------------------------- */


.black .nivo-controlNav a{
	background: #757575;
}
.black .nivo-controlNav a.active{
	background: #000;
}
.blue .nivo-controlNav a{
	background: #277CFC;
}
.blue .nivo-controlNav a.active{
	background: #1F48FC;
}
.red .nivo-controlNav a{
	background: #EB0000;
}
.red .nivo-controlNav a.active{
	background: #C20000;
}