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

#container {
	width:562px;
	padding:0px;
	position:relative;
	z-index:0;
	height: 231px;
	margin: 0px;
}

#example {
	width:562px;
	height:231px;
	position:relative;
	margin: 0px;
	padding: 0px;
}
#slides {
	position:absolute;
	top:0px;
	left:0px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:562px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container a {
	width:562px;
	height:231px;
	display:block;
}

.slides_container a img {
	display:block;
}

/*
	Pagination
*/

.pagination {
/* width:100px;
   margin-top: 2px;
   margin-right: 0px;
   margin-bottom: 0;
   margin-left: auto;
*/
    bottom: 8px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 7px;
    z-index: 99;
} 

.pagination li {
	float:left;
	list-style:none;
	margin-top: 0;
	margin-right: 3px;
	margin-bottom: 0;
	margin-left: 3px;
}

.pagination li a {
	display:block;
	width:17px;
	height:0;
	padding-top:16px;
	background-image:url(../img/pagination2.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -16px;
}
</pre></body></html>