@charset "UTF-8";

/* Icons */
@font-face {
	font-family: 'slick';
	font-weight: normal;
	font-style: normal;
	src: url('/fonts/slick.eot');
	src: url('/fonts/slick.eot?#iefix') format('embedded-opentype'),
		url('/fonts/slick.woff') format('woff'), url('/fonts/slick.ttf')
		format('truetype'), url('/fonts/slick.svg#slick') format('svg');
}

/* Slideshow container */
.slideshow-container {
	display: block;
	height: 100%;
	margin: auto;
	z-index: 400;
}

.my-slides {
	height: 100%;
	display: none;
	text-align: center;
}

.slide-img {
	cursor: url(/images/cursor/hoveroverlay-32-0.png),
					url(/images/cursor/hoveroverlay-32-0.jpg),
					url(/images/cursor/magnify.cur),
	 				crosshair;
	height: 100%;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 0px;
	height: 10px;
	width: auto;
	margin-top: 0px;
	padding: 140px 16px;
	transition: 0.6s ease;

	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	color: black;
	opacity: 0;
}

/* Position the "next button" to the right */
.next {
	right: 0;
}

/* Caption text */
.text {
	color: #f2f2f2;
	font-size: 25px;
	padding: 8px 0px;
	position: absolute;
	bottom: -55px;
	width: 100%;
	text-align: center;
	opacity: 0;
	font-style: italic;
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 2s;
	animation-name: fade;
	animation-duration: 2s;
}

.fadetext {
	-webkit-animation-name: fadetext;
	-webkit-animation-duration: 5s;
	animation-name: fadetext;
	animation-duration: 5s;
}


@-webkit-keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@-webkit-keyframes fadetext {
	from {opacity: 1}
	to {opacity: 0}
}

@keyframes fadetext {
	/*   from {opacity: 1} */
	/*   to {opacity: 0} */ 
	0% {opacity: 1}
	10% {opacity: 0.95}
	20% {opacity: 0.90}
	30% {opacity: 0.85}
	40% {opacity: 0.80}
	50% {opacity: 0.75}
	60% {opacity: 0.70}
	70% {opacity: 0.65}
	80% {opacity : 0.60}
	90% {opacity:0.30}
	100% {opacity:0}
}