/*
 * 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
 */
 /***************************************************
				      GENERAL
***************************************************/ 
  #slideshow-holder{
	width: 940px;
	background-image: url(../images/slideshow-frame.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	height: 324px;
}
#slideshow {
	width: 940px;
	height: 299px;
	margin-top: 10px;
	float: left;
}
#slider {
	position:relative;
	z-index:1;
	width:940px;
	height: 299px;
	overflow: hidden;
}
 /***************************************************
				  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:10px;
	color:#333333;
	opacity:0; /* Overridden by captionOpacity setting */
	width:900px;
	z-index:100;
	background-color: #FFFFFF;
	left: 10px;
	padding: 10px;
	-moz-border-radius:2px; 
	-webkit-border-radius:2px;
	border-radius:2px;	
}
.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/prev-next
***************************************************/
.nivo-directionNav a {
	position:absolute;
	top:40%;
	z-index:999;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
.nivo-directionNav a {
	display:block;
	width:42px;
	height:42px;
	text-indent:-9999px;
	border:0;
}
a.nivo-nextNav {
	background-position:-42px 0;
	right:10px;
}
a.nivo-prevNav {
	left:10px;
}
/***************************************************
				   Control nav styles
***************************************************/
.nivo-controlNav {
position:absolute;top:10px;left:10px;z-index:100;background:transparent;
}
.nivo-controlNav a {
	background-color: #404040;
	float:left;
	padding:0px;
	cursor:pointer;
	height:10px;
	text-indent:-9999px;
	width:10px;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 0;
	-moz-border-radius:2px; 
	-webkit-border-radius:2px;
	border-radius:2px;	
}
.nivo-controlNav a:hover {
	background-color: #9A9A9A;
}
.nivo-controlNav a.active {
	background-color: #ff3c07;
	color: #FFFFFF;
}
.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;
}
