/*
 * jQuery Nivo Slider v1.8
 * 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;
	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: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;
	bottom:0px;
	color:#fff;
	opacity:0; /* Overridden by captionOpacity setting */
	width:910px;
	z-index:100;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: 50px;
	background-color: #000000;
	left: 0px;
}
.nivo-caption p {
	padding:0px;
	margin:0px;
	font-variant: normal;
}
.nivo-caption p em {
	font-size: 26px;
	font-style: normal;
	display: block;
	padding-bottom: 25px;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:35%;
	z-index:999;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
.nivo-directionNav a {
	display:block;
	width:31px;
	height:34px;
	text-indent:-9999px;
	border:0;
	background-image: url(../images/arrows.png);
	background-repeat: no-repeat;
}
a.nivo-nextNav {
	background-position:-32px 0;
	right:10px;
}
a.nivo-prevNav {
	left:10px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	display:block;
	float:left;
	width:13px;
	height:13px;
	outline-style:none;
	outline-width:medium;
	background-image: url(../images/dot_off.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 2px;
	position:relative;
	z-index:99;
	cursor:pointer;
	background-position: left top;
	text-indent: -9999px;
}
.nivo-controlNav {
	position: absolute;
	right: 5px;
	bottom: -38px;
	z-index: 999;
}
.nivo-controlNav a:hover {
	background-repeat: no-repeat;
	background-position: left top;
}
.nivo-controlNav a.active {
	background-image: url(../images/dot_on.png);
	background-repeat: no-repeat;
	background-position: left top;
}
.nivo-controlNav img {
	display:inline;
	position:relative;
	margin-right:10px;
}
.nivo-controlNav a.active img {
	-moz-box-shadow:0px 0px 5px #fff;
	-webkit-box-shadow:0px 0px 5px #fff;
	box-shadow:0px 0px 5px #fff;
}

#sliderwrap {
	width:945px;
	height:318px;
	overflow:hidden;
	background-image: url(../images/slideshow-bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
#slider {
	position:relative;
	z-index:1;
	width:960px;
	height: 280px;
}
