<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --- module: effects slide --- */

/* common
---------------------------------------------------- */
.indexSlide {
	position: relative;
}
.indexSlide .sliderContainer {
	overflow: hidden;
	position: relative;
}


/* item
---------------------------------------------------- */
.indexSlide .item {
	width: 100%;
	height: 550px !important;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-size: cover !important;
	background-position: center center;
	position: relative;
	float: left;
	cursor: grab;
	background-color: #ffffff;

	background-size: cover;
	background-position: center center;
	
	/*--border--*/
	border: 15px solid #f0f0f0;
	box-sizing: border-box;
}
.indexSlide .item a {
	text-decoration: none;
	color: #535353;
}
.indexSlide .item a:hover {
	color: #7B848F;
}
.indexSlide .item span {
	display: block;
}
.indexSlide .item .image {

}
.indexSlide .item .title {
	font-weight: 700;
	padding: 20px 0px 10px 0px;
}
.indexSlide .item .modTeaser p {
	color: #3d3d3d;
	width: 365px;
	text-align: left;
	position: absolute;
	bottom: 0px;
	margin: 0px 0px 50px 20px;
	padding: 5px 10px 5px 10px;
	font-size: 27px;
	line-height: 32px;
	font-weight: 300;
	background-color: rgba(255,255,255,0.85);
}


/* prev/next
---------------------------------------------------- */
.indexSlide .sliderArrow {
	width: 100%;
	position: absolute;
	/*top: 50%;  -&gt; calculate via js */
	display: none; /* initially hide */
}
.indexSlide .next, .indexSlide .prev {
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	width: 30px;
	height: 40px;
	margin-top: -20px; /* -&gt; minus height/2 */
	opacity: 0.5;
	position: absolute;
}
.indexSlide .next:hover, .indexSlide .prev:hover {
	opacity: 0.8;
}
.indexSlide .next {
	_background-image: url(../../images/portal/icon_arrow_med_white_left.png);
	right: 0px;
}
.indexSlide .prev {
	_background-image: url(../../images/portal/icon_arrow_med_white_right.png);
}


/* thumbitem
---------------------------------------------------- */
.indexSlide .thumb {
	position: absolute;
	z-index: 1;
	overflow: hidden;
	width: 600px;
	height: 130px;
	padding: 10px 10px 0px 0px;
	bottom: 0px;
	right: 0px;

}
.indexSlide .thumbitem {
	float: right;
	display: block;
	width: 120px;
	height: 80px;
	margin: 10px 10px 10px 0px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	background-color: #F0F0F0;
	
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	border: 5px solid #f0f0f0;
	-webkit-box-shadow: 4px 4px 6px 1px rgba(125,125,125,1);
	-moz-box-shadow: 4px 4px 6px 1px rgba(125,125,125,1);
	box-shadow: 4px 4px 6px 1px rgba(125,125,125,1);
}
.indexSlide .thumbitem.selected {
	width: 170px;
	height: 111px;
	margin-top: -10px;
}

/* pagination
---------------------------------------------------- */
.indexSlide .pagination {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}
.indexSlide .pagination span {
	display: block;
	width: 10px;
	height: 10px;
	_background-image: url(../../images/effects_slide_bullet.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	margin: 0px 0px 0px 5px;
	float: left;
	opacity: 0.5;
}
.indexSlide .pagination span:hover, .indexSlide .pagination .swiper-active-switch {
	background-position: 0px -20px;
	opacity: 0.8;
}



</pre></body></html>