﻿/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* 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;
	background: white; 
	filter:alpha(opacity=0); 
	opacity: 0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display: block;
	position: absolute;
	z-index: 5;
	height: 100%;
	top: 0;
}
.nivo-box {
	display: block;
	position: absolute;
	z-index: 5;
	overflow: hidden;
}
.nivo-box img { display: block; }

/* Caption styles */
.nivo-caption {
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: #000;
	color: #fff;
	width: 100%;
	z-index: 8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding: 5px;
	margin: 0;
}
.nivo-caption a {
	display: inline !important;
}
.nivo-html-caption {
    display: none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position: absolute;
	bottom: 0;
	z-index: 9;
	cursor: pointer;
}
.nivo-prevNav {
	left: -80px;
}
.nivo-nextNav {
	right: -80px;
}
.slideshow .nivoSlider:hover .nivo-prevNav {
	left: 15px;
}
.slideshow .nivoSlider:hover .nivo-nextNav {
	right: 15px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align: center;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight: bold;
}



/************************************/
/*********** SLIDER THEME ***********/
/************************************/
.slideshow {
	position: relative;
	margin-bottom: 60px;
}
.slideshow .nivoSlider {
	position: relative;
	max-width: 100% !important;
	height: auto !important;
	background: #fff url('../image/loading.gif') no-repeat 50% 50%;
}
.slideshow .nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
}
.slideshow .nivoSlider a {
	border: 0;
	display: block;
}
.slideshow .nivo-controlNav {
	position: relative;
	height: 0;
	bottom: -15px;
	text-align: center;
	z-index: 99;
}
.slideshow .nivo-controlNav a {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 7px;
	text-indent: -99999px;
	border-width: 1px;
	border-style: solid;
	border-color: #555;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.slideshow .nivo-controlNav a:hover {
	background-color: #555;
}
.slideshow .nivo-controlNav a.active {
	background-color: #555;
}
.slideshow .nivo-directionNav a {
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.1);
	margin: -30px 0 0 0;
	display: block;
	position: absolute;
	top: 50%;
	cursor: pointer;
	text-indent: -9999px;
	opacity: 0;
	filter: Alpha(opacity=0);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-khtml-border-radius: 30px;
	border-radius: 30px;
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
.slideshow .nivoSlider:hover .nivo-directionNav a {
	opacity: 1;
	filter: Alpha(opacity=100); /* IE8 and earlier */
}
.slideshow .nivo-directionNav a:hover {
}
.slideshow a.nivo-nextNav {
	background-image: url('../image/slider-next.png');
	background-position: center;
	background-repeat: no-repeat;
}
.slideshow a.nivo-nextNav:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transition: rotate(360deg);
	transform: rotate(360deg);
}
.slideshow a.nivo-prevNav {
	background-image: url('../image/slider-prev.png');
	background-position: center;
	background-repeat: no-repeat;
}
.slideshow a.nivo-prevNav:hover {
	-webkit-transform: rotate(-360deg);
	-moz-transform: rotate(-360deg);
	-o-transform: rotate(-360deg);
	-ms-transition: rotate(-360deg);
	transform: rotate(-360deg);
}
.slideshow .nivo-caption {
	text-shadow:none;
	font-family: Georgia, Arial, sans-serif;
}
.slideshow .nivo-caption a {
	color:#efe9d1;
	text-decoration:underline;
}