/*
 * jQuery Nivo Slider v2.7.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, 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;
	width:690px;
	/* 2024-04 web acc (start)*/
	/*height:180px;*/
	height:210px;
	/* 2024-04 web acc (end)*/
	overflow: hidden;
	/*border: solid 1px black;*/
}
.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:6;
	display:none;
}
/* 2024-04 web acc (start)
.nivoSlider a {
  border:0;
  display:block;
  background-color: #fff;
  filter:alpha(opacity=0);
  opacity: 0;
  -webkit-opacity:0;
  -moz-opacity:0;
  -khtml-opacity:0;
}
2024-04 web acc (end) */
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	font-size:18px;
	position:absolute;
	padding: 6px 8px 6px 8px;
	left:20px;
	bottom: 15px;
	background:#FFFFFF;
	color:#1D1D1D;
	width:auto;
	z-index:8;
	display:none;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	opacity:0.8; /* Overridden by captionOpacity setting */
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
	/*visibility:hidden;*/
}
.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 {
	display: block;
	/*top:45%;*/
	border: 0;
	cursor: pointer;
	/*border-block: solid 1px red;*/
}
.nivo-prevNav {
	position: absolute;
	background: url(../images/arrows.png) no-repeat;
	z-index: 9;
	top: 181px;
	left: 360px;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
}
.nivo-nextNav {
	position: absolute;
	background: url(../images/arrows.png) no-repeat;
	background-position: -30px 0;
	z-index: 9;
	top: 181px;
	left: 405px;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
	color:white; 
	display:block;
	float:left;
	margin-left:5px;
	background:url(../images/point.png) no-repeat;
	width:10px;
	height:10px;
	text-indent:-9999px;
}
.nivo-controlNav a.active {
	background:url(../images/point_active.png) no-repeat;
	color:white; 
}


/*added by Kun*/
/*2024-04 web acc (start)
.nivo-controlNav { position:absolute; right:20px; bottom:15px;  }
2024-04 web acc (end) */
.nivo-controlNav { position:absolute; left:495px; bottom:-21px;  }


/*added by Phyron*/
.nivo-playpauseNav a {
	display: block;
	border: 0;
	cursor: pointer;
}
.nivo-playpauseNav {
	position: absolute;
	background: url(../images/pause.png) no-repeat;
	z-index: 10;
	top: 181px;
	left: 450px;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
}