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



.slider {
	-ms-touch-action: none; /* Prevent default touch actions on Windows 8 */
	overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */
	position: relative;
}

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
	
	margin: 0;
	padding: 0;
	width: 100%;
}

/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
	background: url(img/arrows.png) no-repeat;
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 40px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 95px;
	white-space: nowrap;
	width: 40px;
	z-index: 1;
}

.as-prev-arrow {
	left: 0;
}

.as-next-arrow {
	background-position: -40px 0;
	right: 0;
}

.slider:hover .as-arrows a {
	filter: alpha(opacity=1);
	opacity: 1;
}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
	bottom: 12px;
	right:  0;
	margin-left: -27px;
	position: absolute;
	text-align: right;
	width: 100px;
	
	z-index: 1;
	padding-right: 12px;
	opacity:0.8;
	filter:alpha(opacity=80); /
}

.as-nav a {
	background: url(/siteimg/bullets.png) no-repeat;
	height: 16px;
	display: inline-block;
	margin: 0 1px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 16px;
}

a.as-active, .as-nav a:hover {
	background: url(/siteimg/bullets.png) no-repeat;
	background-position: 0 -16px;
}

.slider {
	/*border-radius: 5px;*/
}

.slider a, .slider a:hover{
	text-decoration: none !important;
	color: #000 !important;
}

.slider img {
	width: 540px; 
	height: 320px; 
	/*border-top-left-radius: 5px; 
	border-top-right-radius: 5px;*/
	position:  relative;
}

.slider .aanbtext{
	width: 540px; 
	padding-left: 25px; height: 40px; background-color: #eceded; line-height: 40px;
	font-weight: 700;
	position:  absolute;
	bottom: 0;
	opacity:0.8;
	filter:alpha(opacity=80); /
}</pre></body></html>