/* Nivo Slider - Home Slide Show */

/* NOTE: 'slideshowContainer' is in 'home.css' */

.slideshow_container { /* keep for now used for other (old) pages... */
        width: 683px;
        height: 300px;
        position: relative;
        background-color: #fff;
	overflow: hidden;
}

.nivoSlider {
	width: 727px; /* Change this to your images width */
	height: 287px; /* Change this to your images height */
	position: relative;
	display: block;
	/* background: url(../images/slideshow/loading.gif) no-repeat 50% 50%; */
}

.nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
	/* display: none; */
}

/* If there is a link... (needed for i.e.) */
.nivoSlider a.nivo-imageLink {
	background-color:#fff; 
	filter:alpha(opacity=0); 
	opacity: 0;
}

.slideshow_image_link {
	width: 575px;
	height: 255px;
	margin: auto;
	position: relative;
	z-index: 1;
	display: block;
	/* border: 3px solid #d7e7f8; */
}

/* Nav Buttons (green circles) */
.nivo-controlNav {
	width: 683px;
	height: 23px;
	margin-left: 22px;
	padding: 0px;
	position: absolute;
	/* top: 264px; */
	top: 92%;
	/* was 101 below */
	z-index: 99;
}

.nivo-controlNav a, .nivo-controlNav img {
	width: 24px;
	height: 23px;
	margin-right: 0px;
	font-size: 0px;
	background:url(../images/slideshow_indicator.png) no-repeat;
	float:left;
}

.nivo-controlNav a:hover, .nivo-controlNav img:hover {
	cursor: pointer;
	cursor: grab;
}

.nivo-controlNav a.active {
	background:url(../images/slideshow_indicator_active.png) no-repeat;
}

/* Direction Indicators (arrows) */
.nivoSlider .nivo-directionNav a {
	filter:alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	z-index: 101;
}

.nivoSlider:hover .nivo-directionNav a { 
	filter:alpha(opacity=100);
	opacity: 1; 
}

a.nivo-nextNav {
	width: 47px;
	height: 46px;
	font-size: 0px;
	background:url(../images/slideshow_right_arrow.png) no-repeat;
	position: absolute;
	top: 125px;
	right: -2px;
	cursor: pointer;
	cursor: grab;
}

a.nivo-prevNav {
	width: 47px;
	height: 46px;  
	font-size: 0px;
	background:url(../images/slideshow_left_arrow.png) no-repeat;
	position: absolute;
	top: 125px;
	left: -2px;
	cursor: pointer;
	cursor: grab;
}